21.99/9.91 YES 24.96/10.76 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 24.96/10.76 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 24.96/10.76 24.96/10.76 24.96/10.76 H-Termination with start terms of the given HASKELL could be proven: 24.96/10.76 24.96/10.76 (0) HASKELL 24.96/10.76 (1) LR [EQUIVALENT, 0 ms] 24.96/10.76 (2) HASKELL 24.96/10.76 (3) CR [EQUIVALENT, 0 ms] 24.96/10.76 (4) HASKELL 24.96/10.76 (5) IFR [EQUIVALENT, 0 ms] 24.96/10.76 (6) HASKELL 24.96/10.76 (7) BR [EQUIVALENT, 12 ms] 24.96/10.76 (8) HASKELL 24.96/10.76 (9) COR [EQUIVALENT, 0 ms] 24.96/10.76 (10) HASKELL 24.96/10.76 (11) LetRed [EQUIVALENT, 23 ms] 24.96/10.76 (12) HASKELL 24.96/10.76 (13) NumRed [SOUND, 0 ms] 24.96/10.76 (14) HASKELL 24.96/10.76 (15) Narrow [SOUND, 0 ms] 24.96/10.76 (16) AND 24.96/10.76 (17) QDP 24.96/10.76 (18) QDPSizeChangeProof [EQUIVALENT, 1 ms] 24.96/10.76 (19) YES 24.96/10.76 (20) QDP 24.96/10.76 (21) QDPSizeChangeProof [EQUIVALENT, 40 ms] 24.96/10.76 (22) YES 24.96/10.76 (23) QDP 24.96/10.76 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.96/10.76 (25) YES 24.96/10.76 (26) QDP 24.96/10.76 (27) QDPSizeChangeProof [EQUIVALENT, 2 ms] 24.96/10.76 (28) YES 24.96/10.76 (29) QDP 24.96/10.76 (30) DependencyGraphProof [EQUIVALENT, 0 ms] 24.96/10.76 (31) AND 24.96/10.76 (32) QDP 24.96/10.76 (33) TransformationProof [EQUIVALENT, 1461 ms] 24.96/10.76 (34) QDP 24.96/10.76 (35) DependencyGraphProof [EQUIVALENT, 0 ms] 24.96/10.76 (36) QDP 24.96/10.76 (37) TransformationProof [EQUIVALENT, 0 ms] 24.96/10.76 (38) QDP 24.96/10.76 (39) TransformationProof [EQUIVALENT, 0 ms] 24.96/10.76 (40) QDP 24.96/10.76 (41) TransformationProof [EQUIVALENT, 0 ms] 24.96/10.76 (42) QDP 24.96/10.76 (43) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.96/10.76 (44) YES 24.96/10.76 (45) QDP 24.96/10.76 (46) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.96/10.76 (47) YES 24.96/10.76 (48) QDP 24.96/10.76 (49) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.96/10.76 (50) YES 24.96/10.76 (51) QDP 24.96/10.76 (52) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.96/10.76 (53) YES 24.96/10.76 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (0) 24.96/10.76 Obligation: 24.96/10.76 mainModule Main 24.96/10.76 module FiniteMap where { 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.96/10.76 24.96/10.76 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.96/10.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.96/10.76 } 24.96/10.76 fmToList :: FiniteMap b a -> [(b,a)]; 24.96/10.76 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 24.96/10.76 24.96/10.76 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 24.96/10.76 foldFM k z EmptyFM = z; 24.96/10.76 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.96/10.76 24.96/10.76 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 24.96/10.76 lookupFM EmptyFM key = Nothing; 24.96/10.76 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.96/10.76 | key_to_find > key = lookupFM fm_r key_to_find 24.96/10.76 | otherwise = Just elt; 24.96/10.76 24.96/10.76 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 24.96/10.76 lookupWithDefaultFM fm deflt key = case lookupFM fm key of { 24.96/10.76 Nothing-> deflt; 24.96/10.76 Just elt-> elt; 24.96/10.76 } ; 24.96/10.76 24.96/10.76 sizeFM :: FiniteMap b a -> Int; 24.96/10.76 sizeFM EmptyFM = 0; 24.96/10.76 sizeFM (Branch _ _ size _ _) = size; 24.96/10.76 24.96/10.76 } 24.96/10.76 module Maybe where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 module Main where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (1) LR (EQUIVALENT) 24.96/10.76 Lambda Reductions: 24.96/10.76 The following Lambda expression 24.96/10.76 "\keyeltrest->(key,elt) : rest" 24.96/10.76 is transformed to 24.96/10.76 "fmToList0 key elt rest = (key,elt) : rest; 24.96/10.76 " 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (2) 24.96/10.76 Obligation: 24.96/10.76 mainModule Main 24.96/10.76 module FiniteMap where { 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.96/10.76 24.96/10.76 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.96/10.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.96/10.76 } 24.96/10.76 fmToList :: FiniteMap a b -> [(a,b)]; 24.96/10.76 fmToList fm = foldFM fmToList0 [] fm; 24.96/10.76 24.96/10.76 fmToList0 key elt rest = (key,elt) : rest; 24.96/10.76 24.96/10.76 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 24.96/10.76 foldFM k z EmptyFM = z; 24.96/10.76 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.96/10.76 24.96/10.76 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 24.96/10.76 lookupFM EmptyFM key = Nothing; 24.96/10.76 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.96/10.76 | key_to_find > key = lookupFM fm_r key_to_find 24.96/10.76 | otherwise = Just elt; 24.96/10.76 24.96/10.76 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 24.96/10.76 lookupWithDefaultFM fm deflt key = case lookupFM fm key of { 24.96/10.76 Nothing-> deflt; 24.96/10.76 Just elt-> elt; 24.96/10.76 } ; 24.96/10.76 24.96/10.76 sizeFM :: FiniteMap b a -> Int; 24.96/10.76 sizeFM EmptyFM = 0; 24.96/10.76 sizeFM (Branch _ _ size _ _) = size; 24.96/10.76 24.96/10.76 } 24.96/10.76 module Maybe where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 module Main where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (3) CR (EQUIVALENT) 24.96/10.76 Case Reductions: 24.96/10.76 The following Case expression 24.96/10.76 "case compare x y of { 24.96/10.76 EQ -> o; 24.96/10.76 LT -> LT; 24.96/10.76 GT -> GT} 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "primCompAux0 o EQ = o; 24.96/10.76 primCompAux0 o LT = LT; 24.96/10.76 primCompAux0 o GT = GT; 24.96/10.76 " 24.96/10.76 The following Case expression 24.96/10.76 "case lookupFM fm key of { 24.96/10.76 Nothing -> deflt; 24.96/10.76 Just elt -> elt} 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "lookupWithDefaultFM0 deflt Nothing = deflt; 24.96/10.76 lookupWithDefaultFM0 deflt (Just elt) = elt; 24.96/10.76 " 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (4) 24.96/10.76 Obligation: 24.96/10.76 mainModule Main 24.96/10.76 module FiniteMap where { 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.96/10.76 24.96/10.76 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.96/10.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.96/10.76 } 24.96/10.76 fmToList :: FiniteMap b a -> [(b,a)]; 24.96/10.76 fmToList fm = foldFM fmToList0 [] fm; 24.96/10.76 24.96/10.76 fmToList0 key elt rest = (key,elt) : rest; 24.96/10.76 24.96/10.76 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 24.96/10.76 foldFM k z EmptyFM = z; 24.96/10.76 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.96/10.76 24.96/10.76 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.96/10.76 lookupFM EmptyFM key = Nothing; 24.96/10.76 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.96/10.76 | key_to_find > key = lookupFM fm_r key_to_find 24.96/10.76 | otherwise = Just elt; 24.96/10.76 24.96/10.76 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 24.96/10.76 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 24.96/10.76 24.96/10.76 lookupWithDefaultFM0 deflt Nothing = deflt; 24.96/10.76 lookupWithDefaultFM0 deflt (Just elt) = elt; 24.96/10.76 24.96/10.76 sizeFM :: FiniteMap a b -> Int; 24.96/10.76 sizeFM EmptyFM = 0; 24.96/10.76 sizeFM (Branch _ _ size _ _) = size; 24.96/10.76 24.96/10.76 } 24.96/10.76 module Maybe where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 module Main where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (5) IFR (EQUIVALENT) 24.96/10.76 If Reductions: 24.96/10.76 The following If expression 24.96/10.76 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 24.96/10.76 is transformed to 24.96/10.76 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 24.96/10.76 primDivNatS0 x y False = Zero; 24.96/10.76 " 24.96/10.76 The following If expression 24.96/10.76 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 24.96/10.76 is transformed to 24.96/10.76 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 24.96/10.76 primModNatS0 x y False = Succ x; 24.96/10.76 " 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (6) 24.96/10.76 Obligation: 24.96/10.76 mainModule Main 24.96/10.76 module FiniteMap where { 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.96/10.76 24.96/10.76 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.96/10.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.96/10.76 } 24.96/10.76 fmToList :: FiniteMap a b -> [(a,b)]; 24.96/10.76 fmToList fm = foldFM fmToList0 [] fm; 24.96/10.76 24.96/10.76 fmToList0 key elt rest = (key,elt) : rest; 24.96/10.76 24.96/10.76 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 24.96/10.76 foldFM k z EmptyFM = z; 24.96/10.76 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.96/10.76 24.96/10.76 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.96/10.76 lookupFM EmptyFM key = Nothing; 24.96/10.76 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.96/10.76 | key_to_find > key = lookupFM fm_r key_to_find 24.96/10.76 | otherwise = Just elt; 24.96/10.76 24.96/10.76 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 24.96/10.76 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 24.96/10.76 24.96/10.76 lookupWithDefaultFM0 deflt Nothing = deflt; 24.96/10.76 lookupWithDefaultFM0 deflt (Just elt) = elt; 24.96/10.76 24.96/10.76 sizeFM :: FiniteMap a b -> Int; 24.96/10.76 sizeFM EmptyFM = 0; 24.96/10.76 sizeFM (Branch _ _ size _ _) = size; 24.96/10.76 24.96/10.76 } 24.96/10.76 module Maybe where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 module Main where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (7) BR (EQUIVALENT) 24.96/10.76 Replaced joker patterns by fresh variables and removed binding patterns. 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (8) 24.96/10.76 Obligation: 24.96/10.76 mainModule Main 24.96/10.76 module FiniteMap where { 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.96/10.76 24.96/10.76 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.96/10.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.96/10.76 } 24.96/10.76 fmToList :: FiniteMap a b -> [(a,b)]; 24.96/10.76 fmToList fm = foldFM fmToList0 [] fm; 24.96/10.76 24.96/10.76 fmToList0 key elt rest = (key,elt) : rest; 24.96/10.76 24.96/10.76 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 24.96/10.76 foldFM k z EmptyFM = z; 24.96/10.76 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.96/10.76 24.96/10.76 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 24.96/10.76 lookupFM EmptyFM key = Nothing; 24.96/10.76 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.96/10.76 | key_to_find > key = lookupFM fm_r key_to_find 24.96/10.76 | otherwise = Just elt; 24.96/10.76 24.96/10.76 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 24.96/10.76 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 24.96/10.76 24.96/10.76 lookupWithDefaultFM0 deflt Nothing = deflt; 24.96/10.76 lookupWithDefaultFM0 deflt (Just elt) = elt; 24.96/10.76 24.96/10.76 sizeFM :: FiniteMap b a -> Int; 24.96/10.76 sizeFM EmptyFM = 0; 24.96/10.76 sizeFM (Branch zz vuu size vuv vuw) = size; 24.96/10.76 24.96/10.76 } 24.96/10.76 module Maybe where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 module Main where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (9) COR (EQUIVALENT) 24.96/10.76 Cond Reductions: 24.96/10.76 The following Function with conditions 24.96/10.76 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "compare x y = compare3 x y; 24.96/10.76 " 24.96/10.76 "compare0 x y True = GT; 24.96/10.76 " 24.96/10.76 "compare1 x y True = LT; 24.96/10.76 compare1 x y False = compare0 x y otherwise; 24.96/10.76 " 24.96/10.76 "compare2 x y True = EQ; 24.96/10.76 compare2 x y False = compare1 x y (x <= y); 24.96/10.76 " 24.96/10.76 "compare3 x y = compare2 x y (x == y); 24.96/10.76 " 24.96/10.76 The following Function with conditions 24.96/10.76 "absReal x|x >= 0x|otherwise`negate` x; 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "absReal x = absReal2 x; 24.96/10.76 " 24.96/10.76 "absReal1 x True = x; 24.96/10.76 absReal1 x False = absReal0 x otherwise; 24.96/10.76 " 24.96/10.76 "absReal0 x True = `negate` x; 24.96/10.76 " 24.96/10.76 "absReal2 x = absReal1 x (x >= 0); 24.96/10.76 " 24.96/10.76 The following Function with conditions 24.96/10.76 "gcd' x 0 = x; 24.96/10.76 gcd' x y = gcd' y (x `rem` y); 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "gcd' x vuy = gcd'2 x vuy; 24.96/10.76 gcd' x y = gcd'0 x y; 24.96/10.76 " 24.96/10.76 "gcd'0 x y = gcd' y (x `rem` y); 24.96/10.76 " 24.96/10.76 "gcd'1 True x vuy = x; 24.96/10.76 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 24.96/10.76 " 24.96/10.76 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 24.96/10.76 gcd'2 vvw vvx = gcd'0 vvw vvx; 24.96/10.76 " 24.96/10.76 The following Function with conditions 24.96/10.76 "gcd 0 0 = error []; 24.96/10.76 gcd x y = gcd' (abs x) (abs y) where { 24.96/10.76 gcd' x 0 = x; 24.96/10.76 gcd' x y = gcd' y (x `rem` y); 24.96/10.76 } 24.96/10.76 ; 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "gcd vvy vvz = gcd3 vvy vvz; 24.96/10.76 gcd x y = gcd0 x y; 24.96/10.76 " 24.96/10.76 "gcd0 x y = gcd' (abs x) (abs y) where { 24.96/10.76 gcd' x vuy = gcd'2 x vuy; 24.96/10.76 gcd' x y = gcd'0 x y; 24.96/10.76 ; 24.96/10.76 gcd'0 x y = gcd' y (x `rem` y); 24.96/10.76 ; 24.96/10.76 gcd'1 True x vuy = x; 24.96/10.76 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 24.96/10.76 ; 24.96/10.76 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 24.96/10.76 gcd'2 vvw vvx = gcd'0 vvw vvx; 24.96/10.76 } 24.96/10.76 ; 24.96/10.76 " 24.96/10.76 "gcd1 True vvy vvz = error []; 24.96/10.76 gcd1 vwu vwv vww = gcd0 vwv vww; 24.96/10.76 " 24.96/10.76 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 24.96/10.76 gcd2 vwx vwy vwz = gcd0 vwy vwz; 24.96/10.76 " 24.96/10.76 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 24.96/10.76 gcd3 vxu vxv = gcd0 vxu vxv; 24.96/10.76 " 24.96/10.76 The following Function with conditions 24.96/10.76 "undefined |Falseundefined; 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "undefined = undefined1; 24.96/10.76 " 24.96/10.76 "undefined0 True = undefined; 24.96/10.76 " 24.96/10.76 "undefined1 = undefined0 False; 24.96/10.76 " 24.96/10.76 The following Function with conditions 24.96/10.76 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 24.96/10.76 d = gcd x y; 24.96/10.76 } 24.96/10.76 ; 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "reduce x y = reduce2 x y; 24.96/10.76 " 24.96/10.76 "reduce2 x y = reduce1 x y (y == 0) where { 24.96/10.76 d = gcd x y; 24.96/10.76 ; 24.96/10.76 reduce0 x y True = x `quot` d :% (y `quot` d); 24.96/10.76 ; 24.96/10.76 reduce1 x y True = error []; 24.96/10.76 reduce1 x y False = reduce0 x y otherwise; 24.96/10.76 } 24.96/10.76 ; 24.96/10.76 " 24.96/10.76 The following Function with conditions 24.96/10.76 "lookupFM EmptyFM key = Nothing; 24.96/10.76 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; 24.96/10.76 " 24.96/10.76 is transformed to 24.96/10.76 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 24.96/10.76 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 24.96/10.76 " 24.96/10.76 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 24.96/10.76 " 24.96/10.76 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 24.96/10.76 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 24.96/10.76 " 24.96/10.76 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 24.96/10.76 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); 24.96/10.76 " 24.96/10.76 "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); 24.96/10.76 " 24.96/10.76 "lookupFM4 EmptyFM key = Nothing; 24.96/10.76 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 24.96/10.76 " 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (10) 24.96/10.76 Obligation: 24.96/10.76 mainModule Main 24.96/10.76 module FiniteMap where { 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.96/10.76 24.96/10.76 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.96/10.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.96/10.76 } 24.96/10.76 fmToList :: FiniteMap b a -> [(b,a)]; 24.96/10.76 fmToList fm = foldFM fmToList0 [] fm; 24.96/10.76 24.96/10.76 fmToList0 key elt rest = (key,elt) : rest; 24.96/10.76 24.96/10.76 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 24.96/10.76 foldFM k z EmptyFM = z; 24.96/10.76 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.96/10.76 24.96/10.76 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.96/10.76 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 24.96/10.76 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 24.96/10.76 24.96/10.76 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 24.96/10.76 24.96/10.76 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 24.96/10.76 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 24.96/10.76 24.96/10.76 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 24.96/10.76 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); 24.96/10.76 24.96/10.76 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); 24.96/10.76 24.96/10.76 lookupFM4 EmptyFM key = Nothing; 24.96/10.76 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 24.96/10.76 24.96/10.76 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 24.96/10.76 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 24.96/10.76 24.96/10.76 lookupWithDefaultFM0 deflt Nothing = deflt; 24.96/10.76 lookupWithDefaultFM0 deflt (Just elt) = elt; 24.96/10.76 24.96/10.76 sizeFM :: FiniteMap b a -> Int; 24.96/10.76 sizeFM EmptyFM = 0; 24.96/10.76 sizeFM (Branch zz vuu size vuv vuw) = size; 24.96/10.76 24.96/10.76 } 24.96/10.76 module Maybe where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 module Main where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (11) LetRed (EQUIVALENT) 24.96/10.76 Let/Where Reductions: 24.96/10.76 The bindings of the following Let/Where expression 24.96/10.76 "gcd' (abs x) (abs y) where { 24.96/10.76 gcd' x vuy = gcd'2 x vuy; 24.96/10.76 gcd' x y = gcd'0 x y; 24.96/10.76 ; 24.96/10.76 gcd'0 x y = gcd' y (x `rem` y); 24.96/10.76 ; 24.96/10.76 gcd'1 True x vuy = x; 24.96/10.76 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 24.96/10.76 ; 24.96/10.76 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 24.96/10.76 gcd'2 vvw vvx = gcd'0 vvw vvx; 24.96/10.76 } 24.96/10.76 " 24.96/10.76 are unpacked to the following functions on top level 24.96/10.76 "gcd0Gcd'1 True x vuy = x; 24.96/10.76 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 24.96/10.76 " 24.96/10.76 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 24.96/10.76 " 24.96/10.76 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 24.96/10.76 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 24.96/10.76 " 24.96/10.76 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 24.96/10.76 gcd0Gcd' x y = gcd0Gcd'0 x y; 24.96/10.76 " 24.96/10.76 The bindings of the following Let/Where expression 24.96/10.76 "reduce1 x y (y == 0) where { 24.96/10.76 d = gcd x y; 24.96/10.76 ; 24.96/10.76 reduce0 x y True = x `quot` d :% (y `quot` d); 24.96/10.76 ; 24.96/10.76 reduce1 x y True = error []; 24.96/10.76 reduce1 x y False = reduce0 x y otherwise; 24.96/10.76 } 24.96/10.76 " 24.96/10.76 are unpacked to the following functions on top level 24.96/10.76 "reduce2D vyu vyv = gcd vyu vyv; 24.96/10.76 " 24.96/10.76 "reduce2Reduce1 vyu vyv x y True = error []; 24.96/10.76 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 24.96/10.76 " 24.96/10.76 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 24.96/10.76 " 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (12) 24.96/10.76 Obligation: 24.96/10.76 mainModule Main 24.96/10.76 module FiniteMap where { 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.96/10.76 24.96/10.76 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.96/10.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.96/10.76 } 24.96/10.76 fmToList :: FiniteMap a b -> [(a,b)]; 24.96/10.76 fmToList fm = foldFM fmToList0 [] fm; 24.96/10.76 24.96/10.76 fmToList0 key elt rest = (key,elt) : rest; 24.96/10.76 24.96/10.76 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 24.96/10.76 foldFM k z EmptyFM = z; 24.96/10.76 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.96/10.76 24.96/10.76 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 24.96/10.76 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 24.96/10.76 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 24.96/10.76 24.96/10.76 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 24.96/10.76 24.96/10.76 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 24.96/10.76 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 24.96/10.76 24.96/10.76 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 24.96/10.76 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); 24.96/10.76 24.96/10.76 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); 24.96/10.76 24.96/10.76 lookupFM4 EmptyFM key = Nothing; 24.96/10.76 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 24.96/10.76 24.96/10.76 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 24.96/10.76 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 24.96/10.76 24.96/10.76 lookupWithDefaultFM0 deflt Nothing = deflt; 24.96/10.76 lookupWithDefaultFM0 deflt (Just elt) = elt; 24.96/10.76 24.96/10.76 sizeFM :: FiniteMap a b -> Int; 24.96/10.76 sizeFM EmptyFM = 0; 24.96/10.76 sizeFM (Branch zz vuu size vuv vuw) = size; 24.96/10.76 24.96/10.76 } 24.96/10.76 module Maybe where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 module Main where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (13) NumRed (SOUND) 24.96/10.76 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (14) 24.96/10.76 Obligation: 24.96/10.76 mainModule Main 24.96/10.76 module FiniteMap where { 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.96/10.76 24.96/10.76 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.96/10.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.96/10.76 } 24.96/10.76 fmToList :: FiniteMap a b -> [(a,b)]; 24.96/10.76 fmToList fm = foldFM fmToList0 [] fm; 24.96/10.76 24.96/10.76 fmToList0 key elt rest = (key,elt) : rest; 24.96/10.76 24.96/10.76 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 24.96/10.76 foldFM k z EmptyFM = z; 24.96/10.76 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.96/10.76 24.96/10.76 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 24.96/10.76 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 24.96/10.76 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 24.96/10.76 24.96/10.76 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 24.96/10.76 24.96/10.76 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 24.96/10.76 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 24.96/10.76 24.96/10.76 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 24.96/10.76 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); 24.96/10.76 24.96/10.76 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); 24.96/10.76 24.96/10.76 lookupFM4 EmptyFM key = Nothing; 24.96/10.76 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 24.96/10.76 24.96/10.76 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 24.96/10.76 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 24.96/10.76 24.96/10.76 lookupWithDefaultFM0 deflt Nothing = deflt; 24.96/10.76 lookupWithDefaultFM0 deflt (Just elt) = elt; 24.96/10.76 24.96/10.76 sizeFM :: FiniteMap a b -> Int; 24.96/10.76 sizeFM EmptyFM = Pos Zero; 24.96/10.76 sizeFM (Branch zz vuu size vuv vuw) = size; 24.96/10.76 24.96/10.76 } 24.96/10.76 module Maybe where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Main; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 module Main where { 24.96/10.76 import qualified FiniteMap; 24.96/10.76 import qualified Maybe; 24.96/10.76 import qualified Prelude; 24.96/10.76 } 24.96/10.76 24.96/10.76 ---------------------------------------- 24.96/10.76 24.96/10.76 (15) Narrow (SOUND) 24.96/10.76 Haskell To QDPs 24.96/10.76 24.96/10.76 digraph dp_graph { 24.96/10.76 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupWithDefaultFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 24.96/10.76 3[label="FiniteMap.lookupWithDefaultFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 24.96/10.76 4[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 24.96/10.76 5[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4 vyw5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 24.96/10.76 6[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw3 vyw5)",fontsize=16,color="burlywood",shape="triangle"];3405[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 3405[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3405 -> 7[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3406[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];6 -> 3406[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3406 -> 8[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 7[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 24.96/10.76 8[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 24.96/10.76 9[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 24.96/10.76 10[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 24.96/10.76 11[label="FiniteMap.lookupWithDefaultFM0 vyw4 Nothing",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 24.96/10.76 12[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (vyw5 < vyw30))",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 24.96/10.76 13[label="vyw4",fontsize=16,color="green",shape="box"];14[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare vyw5 vyw30 == LT))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 24.96/10.76 15[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare3 vyw5 vyw30 == LT))",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 24.96/10.76 16[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare2 vyw5 vyw30 (vyw5 == vyw30) == LT))",fontsize=16,color="burlywood",shape="box"];3407[label="vyw5/Nothing",fontsize=10,color="white",style="solid",shape="box"];16 -> 3407[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3407 -> 17[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3408[label="vyw5/Just vyw50",fontsize=10,color="white",style="solid",shape="box"];16 -> 3408[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3408 -> 18[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 17[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing vyw30 (Nothing == vyw30) == LT))",fontsize=16,color="burlywood",shape="box"];3409[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];17 -> 3409[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3409 -> 19[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3410[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];17 -> 3410[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3410 -> 20[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 18[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (Just vyw50) (compare2 (Just vyw50) vyw30 (Just vyw50 == vyw30) == LT))",fontsize=16,color="burlywood",shape="box"];3411[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];18 -> 3411[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3411 -> 21[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3412[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];18 -> 3412[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3412 -> 22[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 19[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == LT))",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 24.96/10.76 20[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing (Just vyw300) (Nothing == Just vyw300) == LT))",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 24.96/10.76 21[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) (compare2 (Just vyw50) Nothing (Just vyw50 == Nothing) == LT))",fontsize=16,color="black",shape="box"];21 -> 25[label="",style="solid", color="black", weight=3]; 24.96/10.76 22[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 (Just vyw50) (compare2 (Just vyw50) (Just vyw300) (Just vyw50 == Just vyw300) == LT))",fontsize=16,color="black",shape="box"];22 -> 26[label="",style="solid", color="black", weight=3]; 24.96/10.76 23[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing Nothing True == LT))",fontsize=16,color="black",shape="box"];23 -> 27[label="",style="solid", color="black", weight=3]; 24.96/10.76 24 -> 84[label="",style="dashed", color="red", weight=0]; 24.96/10.76 24[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing (Just vyw300) False == LT))",fontsize=16,color="magenta"];24 -> 85[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 25 -> 93[label="",style="dashed", color="red", weight=0]; 24.96/10.76 25[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) (compare2 (Just vyw50) Nothing False == LT))",fontsize=16,color="magenta"];25 -> 94[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 26 -> 140[label="",style="dashed", color="red", weight=0]; 24.96/10.76 26[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 (Just vyw50) (compare2 (Just vyw50) (Just vyw300) (vyw50 == vyw300) == LT))",fontsize=16,color="magenta"];26 -> 141[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 26 -> 142[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 26 -> 143[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 26 -> 144[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 26 -> 145[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 26 -> 146[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 26 -> 147[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 26 -> 148[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 27[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 Nothing (EQ == LT))",fontsize=16,color="black",shape="box"];27 -> 39[label="",style="solid", color="black", weight=3]; 24.96/10.76 85 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 85[label="compare2 Nothing (Just vyw300) False == LT",fontsize=16,color="magenta"];85 -> 89[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 85 -> 90[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 84[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing vyw23)",fontsize=16,color="burlywood",shape="triangle"];3413[label="vyw23/False",fontsize=10,color="white",style="solid",shape="box"];84 -> 3413[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3413 -> 91[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3414[label="vyw23/True",fontsize=10,color="white",style="solid",shape="box"];84 -> 3414[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3414 -> 92[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 94 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 94[label="compare2 (Just vyw50) Nothing False == LT",fontsize=16,color="magenta"];94 -> 98[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 94 -> 99[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 93[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) vyw24)",fontsize=16,color="burlywood",shape="triangle"];3415[label="vyw24/False",fontsize=10,color="white",style="solid",shape="box"];93 -> 3415[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3415 -> 100[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3416[label="vyw24/True",fontsize=10,color="white",style="solid",shape="box"];93 -> 3416[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3416 -> 101[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 141[label="vyw34",fontsize=16,color="green",shape="box"];142[label="vyw50",fontsize=16,color="green",shape="box"];143[label="vyw4",fontsize=16,color="green",shape="box"];144[label="vyw32",fontsize=16,color="green",shape="box"];145 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 145[label="compare2 (Just vyw50) (Just vyw300) (vyw50 == vyw300) == LT",fontsize=16,color="magenta"];145 -> 152[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 145 -> 153[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 146[label="vyw300",fontsize=16,color="green",shape="box"];147[label="vyw31",fontsize=16,color="green",shape="box"];148[label="vyw33",fontsize=16,color="green",shape="box"];140[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) vyw25)",fontsize=16,color="burlywood",shape="triangle"];3417[label="vyw25/False",fontsize=10,color="white",style="solid",shape="box"];140 -> 3417[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3417 -> 154[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3418[label="vyw25/True",fontsize=10,color="white",style="solid",shape="box"];140 -> 3418[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3418 -> 155[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 39[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 Nothing False)",fontsize=16,color="black",shape="box"];39 -> 58[label="",style="solid", color="black", weight=3]; 24.96/10.76 89 -> 1687[label="",style="dashed", color="red", weight=0]; 24.96/10.76 89[label="compare2 Nothing (Just vyw300) False",fontsize=16,color="magenta"];89 -> 1688[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 89 -> 1689[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 89 -> 1690[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 90[label="LT",fontsize=16,color="green",shape="box"];43[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3419[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];43 -> 3419[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3419 -> 62[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3420[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];43 -> 3420[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3420 -> 63[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3421[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];43 -> 3421[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3421 -> 64[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 91[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing False)",fontsize=16,color="black",shape="box"];91 -> 103[label="",style="solid", color="black", weight=3]; 24.96/10.76 92[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing True)",fontsize=16,color="black",shape="box"];92 -> 104[label="",style="solid", color="black", weight=3]; 24.96/10.76 98 -> 1687[label="",style="dashed", color="red", weight=0]; 24.96/10.76 98[label="compare2 (Just vyw50) Nothing False",fontsize=16,color="magenta"];98 -> 1691[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 98 -> 1692[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 98 -> 1693[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 99[label="LT",fontsize=16,color="green",shape="box"];100[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) False)",fontsize=16,color="black",shape="box"];100 -> 157[label="",style="solid", color="black", weight=3]; 24.96/10.76 101[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) True)",fontsize=16,color="black",shape="box"];101 -> 158[label="",style="solid", color="black", weight=3]; 24.96/10.76 152 -> 1687[label="",style="dashed", color="red", weight=0]; 24.96/10.76 152[label="compare2 (Just vyw50) (Just vyw300) (vyw50 == vyw300)",fontsize=16,color="magenta"];152 -> 1694[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 152 -> 1695[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 152 -> 1696[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 153[label="LT",fontsize=16,color="green",shape="box"];154[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) False)",fontsize=16,color="black",shape="box"];154 -> 170[label="",style="solid", color="black", weight=3]; 24.96/10.76 155[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) True)",fontsize=16,color="black",shape="box"];155 -> 171[label="",style="solid", color="black", weight=3]; 24.96/10.76 58 -> 163[label="",style="dashed", color="red", weight=0]; 24.96/10.76 58[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 Nothing (Nothing > Nothing))",fontsize=16,color="magenta"];58 -> 164[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1688[label="False",fontsize=16,color="green",shape="box"];1689[label="Nothing",fontsize=16,color="green",shape="box"];1690[label="Just vyw300",fontsize=16,color="green",shape="box"];1687[label="compare2 vyw310 vyw320 vyw73",fontsize=16,color="burlywood",shape="triangle"];3422[label="vyw73/False",fontsize=10,color="white",style="solid",shape="box"];1687 -> 3422[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3422 -> 1722[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3423[label="vyw73/True",fontsize=10,color="white",style="solid",shape="box"];1687 -> 3423[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3423 -> 1723[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 62[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];3424[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];62 -> 3424[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3424 -> 105[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3425[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];62 -> 3425[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3425 -> 106[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3426[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];62 -> 3426[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3426 -> 107[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 63[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];3427[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];63 -> 3427[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3427 -> 108[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3428[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];63 -> 3428[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3428 -> 109[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3429[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];63 -> 3429[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3429 -> 110[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 64[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];3430[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];64 -> 3430[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3430 -> 111[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3431[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];64 -> 3431[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3431 -> 112[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3432[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];64 -> 3432[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3432 -> 113[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 103 -> 205[label="",style="dashed", color="red", weight=0]; 24.96/10.76 103[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing (Nothing > Just vyw300))",fontsize=16,color="magenta"];103 -> 206[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 104 -> 6[label="",style="dashed", color="red", weight=0]; 24.96/10.76 104[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw33 Nothing)",fontsize=16,color="magenta"];104 -> 161[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 104 -> 162[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1691[label="False",fontsize=16,color="green",shape="box"];1692[label="Just vyw50",fontsize=16,color="green",shape="box"];1693[label="Nothing",fontsize=16,color="green",shape="box"];157 -> 216[label="",style="dashed", color="red", weight=0]; 24.96/10.76 157[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) (Just vyw50 > Nothing))",fontsize=16,color="magenta"];157 -> 217[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 158 -> 6[label="",style="dashed", color="red", weight=0]; 24.96/10.76 158[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw33 (Just vyw50))",fontsize=16,color="magenta"];158 -> 174[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 158 -> 175[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1694[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3433[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3433[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3433 -> 1724[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3434[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3434[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3434 -> 1725[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3435[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3435[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3435 -> 1726[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3436[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3436[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3436 -> 1727[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3437[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3437[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3437 -> 1728[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3438[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3438[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3438 -> 1729[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3439[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3439[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3439 -> 1730[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3440[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3440[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3440 -> 1731[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3441[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3441[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3441 -> 1732[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3442[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3442[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3442 -> 1733[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3443[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3443[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3443 -> 1734[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3444[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3444[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3444 -> 1735[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3445[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3445[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3445 -> 1736[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3446[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3446[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3446 -> 1737[label="",style="solid", color="blue", weight=3]; 24.96/10.76 1695[label="Just vyw50",fontsize=16,color="green",shape="box"];1696[label="Just vyw300",fontsize=16,color="green",shape="box"];170 -> 241[label="",style="dashed", color="red", weight=0]; 24.96/10.76 170[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM1 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) (Just vyw21 > Just vyw16))",fontsize=16,color="magenta"];170 -> 242[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 171 -> 6[label="",style="dashed", color="red", weight=0]; 24.96/10.76 171[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM vyw19 (Just vyw21))",fontsize=16,color="magenta"];171 -> 209[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 171 -> 210[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 171 -> 211[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 164[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];164 -> 192[label="",style="solid", color="black", weight=3]; 24.96/10.76 163[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 Nothing vyw26)",fontsize=16,color="burlywood",shape="triangle"];3447[label="vyw26/False",fontsize=10,color="white",style="solid",shape="box"];163 -> 3447[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3447 -> 193[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3448[label="vyw26/True",fontsize=10,color="white",style="solid",shape="box"];163 -> 3448[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3448 -> 194[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1722[label="compare2 vyw310 vyw320 False",fontsize=16,color="black",shape="box"];1722 -> 1742[label="",style="solid", color="black", weight=3]; 24.96/10.76 1723[label="compare2 vyw310 vyw320 True",fontsize=16,color="black",shape="box"];1723 -> 1743[label="",style="solid", color="black", weight=3]; 24.96/10.76 105[label="LT == LT",fontsize=16,color="black",shape="box"];105 -> 196[label="",style="solid", color="black", weight=3]; 24.96/10.76 106[label="LT == EQ",fontsize=16,color="black",shape="box"];106 -> 197[label="",style="solid", color="black", weight=3]; 24.96/10.76 107[label="LT == GT",fontsize=16,color="black",shape="box"];107 -> 198[label="",style="solid", color="black", weight=3]; 24.96/10.76 108[label="EQ == LT",fontsize=16,color="black",shape="box"];108 -> 199[label="",style="solid", color="black", weight=3]; 24.96/10.76 109[label="EQ == EQ",fontsize=16,color="black",shape="box"];109 -> 200[label="",style="solid", color="black", weight=3]; 24.96/10.76 110[label="EQ == GT",fontsize=16,color="black",shape="box"];110 -> 201[label="",style="solid", color="black", weight=3]; 24.96/10.76 111[label="GT == LT",fontsize=16,color="black",shape="box"];111 -> 202[label="",style="solid", color="black", weight=3]; 24.96/10.76 112[label="GT == EQ",fontsize=16,color="black",shape="box"];112 -> 203[label="",style="solid", color="black", weight=3]; 24.96/10.76 113[label="GT == GT",fontsize=16,color="black",shape="box"];113 -> 204[label="",style="solid", color="black", weight=3]; 24.96/10.76 206[label="Nothing > Just vyw300",fontsize=16,color="black",shape="box"];206 -> 212[label="",style="solid", color="black", weight=3]; 24.96/10.76 205[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing vyw34)",fontsize=16,color="burlywood",shape="triangle"];3449[label="vyw34/False",fontsize=10,color="white",style="solid",shape="box"];205 -> 3449[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3449 -> 213[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3450[label="vyw34/True",fontsize=10,color="white",style="solid",shape="box"];205 -> 3450[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3450 -> 214[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 161[label="vyw33",fontsize=16,color="green",shape="box"];162[label="Nothing",fontsize=16,color="green",shape="box"];217[label="Just vyw50 > Nothing",fontsize=16,color="black",shape="box"];217 -> 219[label="",style="solid", color="black", weight=3]; 24.96/10.76 216[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) vyw35)",fontsize=16,color="burlywood",shape="triangle"];3451[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];216 -> 3451[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3451 -> 220[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3452[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];216 -> 3452[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3452 -> 221[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 174[label="vyw33",fontsize=16,color="green",shape="box"];175[label="Just vyw50",fontsize=16,color="green",shape="box"];1724[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];1724 -> 1744[label="",style="solid", color="black", weight=3]; 24.96/10.76 1725 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1725[label="vyw50 == vyw300",fontsize=16,color="magenta"];1726[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3453[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3453[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3453 -> 1745[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3454[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3454[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3454 -> 1746[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1727[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];1727 -> 1747[label="",style="solid", color="black", weight=3]; 24.96/10.76 1728[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3455[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];1728 -> 3455[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3455 -> 1748[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3456[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];1728 -> 3456[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3456 -> 1749[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1729[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3457[label="vyw50/()",fontsize=10,color="white",style="solid",shape="box"];1729 -> 3457[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3457 -> 1750[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1730[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3458[label="vyw50/vyw500 :% vyw501",fontsize=10,color="white",style="solid",shape="box"];1730 -> 3458[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3458 -> 1751[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1731[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3459[label="vyw50/(vyw500,vyw501)",fontsize=10,color="white",style="solid",shape="box"];1731 -> 3459[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3459 -> 1752[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1732[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3460[label="vyw50/Integer vyw500",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3460[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3460 -> 1753[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1733[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3461[label="vyw50/(vyw500,vyw501,vyw502)",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3461[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3461 -> 1754[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1734[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];1734 -> 1755[label="",style="solid", color="black", weight=3]; 24.96/10.76 1735[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];1735 -> 1756[label="",style="solid", color="black", weight=3]; 24.96/10.76 1736[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3462[label="vyw50/vyw500 : vyw501",fontsize=10,color="white",style="solid",shape="box"];1736 -> 3462[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3462 -> 1757[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3463[label="vyw50/[]",fontsize=10,color="white",style="solid",shape="box"];1736 -> 3463[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3463 -> 1758[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1737[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3464[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];1737 -> 3464[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3464 -> 1759[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3465[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];1737 -> 3465[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3465 -> 1760[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 242[label="Just vyw21 > Just vyw16",fontsize=16,color="black",shape="box"];242 -> 244[label="",style="solid", color="black", weight=3]; 24.96/10.76 241[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM1 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) vyw36)",fontsize=16,color="burlywood",shape="triangle"];3466[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];241 -> 3466[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3466 -> 245[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3467[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];241 -> 3467[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3467 -> 246[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 209[label="vyw15",fontsize=16,color="green",shape="box"];210[label="vyw19",fontsize=16,color="green",shape="box"];211[label="Just vyw21",fontsize=16,color="green",shape="box"];192 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 192[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];192 -> 247[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 192 -> 248[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 193[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 Nothing False)",fontsize=16,color="black",shape="box"];193 -> 249[label="",style="solid", color="black", weight=3]; 24.96/10.76 194[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 Nothing True)",fontsize=16,color="black",shape="box"];194 -> 250[label="",style="solid", color="black", weight=3]; 24.96/10.76 1742[label="compare1 vyw310 vyw320 (vyw310 <= vyw320)",fontsize=16,color="burlywood",shape="box"];3468[label="vyw310/Nothing",fontsize=10,color="white",style="solid",shape="box"];1742 -> 3468[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3468 -> 1775[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3469[label="vyw310/Just vyw3100",fontsize=10,color="white",style="solid",shape="box"];1742 -> 3469[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3469 -> 1776[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1743[label="EQ",fontsize=16,color="green",shape="box"];196[label="True",fontsize=16,color="green",shape="box"];197[label="False",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="True",fontsize=16,color="green",shape="box"];201[label="False",fontsize=16,color="green",shape="box"];202[label="False",fontsize=16,color="green",shape="box"];203[label="False",fontsize=16,color="green",shape="box"];204[label="True",fontsize=16,color="green",shape="box"];212 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 212[label="compare Nothing (Just vyw300) == GT",fontsize=16,color="magenta"];212 -> 251[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 212 -> 252[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 213[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing False)",fontsize=16,color="black",shape="box"];213 -> 253[label="",style="solid", color="black", weight=3]; 24.96/10.76 214[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing True)",fontsize=16,color="black",shape="box"];214 -> 254[label="",style="solid", color="black", weight=3]; 24.96/10.76 219 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 219[label="compare (Just vyw50) Nothing == GT",fontsize=16,color="magenta"];219 -> 256[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 219 -> 257[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 220[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) False)",fontsize=16,color="black",shape="box"];220 -> 258[label="",style="solid", color="black", weight=3]; 24.96/10.76 221[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) True)",fontsize=16,color="black",shape="box"];221 -> 259[label="",style="solid", color="black", weight=3]; 24.96/10.76 1744[label="primEqChar vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3470[label="vyw50/Char vyw500",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3470[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3470 -> 1777[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1745[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];3471[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3471[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3471 -> 1778[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3472[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3472[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3472 -> 1779[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1746[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];3473[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];1746 -> 3473[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3473 -> 1780[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3474[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];1746 -> 3474[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3474 -> 1781[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1747[label="primEqFloat vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3475[label="vyw50/Float vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3475[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3475 -> 1782[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1748[label="Left vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3476[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];1748 -> 3476[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3476 -> 1783[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3477[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];1748 -> 3477[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3477 -> 1784[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1749[label="Right vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3478[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3478[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3478 -> 1785[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3479[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3479[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3479 -> 1786[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1750[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];3480[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3480[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3480 -> 1787[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1751[label="vyw500 :% vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];3481[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];1751 -> 3481[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3481 -> 1788[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1752[label="(vyw500,vyw501) == vyw300",fontsize=16,color="burlywood",shape="box"];3482[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];1752 -> 3482[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3482 -> 1789[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1753[label="Integer vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3483[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3483[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3483 -> 1790[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1754[label="(vyw500,vyw501,vyw502) == vyw300",fontsize=16,color="burlywood",shape="box"];3484[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];1754 -> 3484[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3484 -> 1791[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1755[label="primEqDouble vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3485[label="vyw50/Double vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];1755 -> 3485[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3485 -> 1792[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1756[label="primEqInt vyw50 vyw300",fontsize=16,color="burlywood",shape="triangle"];3486[label="vyw50/Pos vyw500",fontsize=10,color="white",style="solid",shape="box"];1756 -> 3486[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3486 -> 1793[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3487[label="vyw50/Neg vyw500",fontsize=10,color="white",style="solid",shape="box"];1756 -> 3487[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3487 -> 1794[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1757[label="vyw500 : vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];3488[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];1757 -> 3488[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3488 -> 1795[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3489[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];1757 -> 3489[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3489 -> 1796[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1758[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];3490[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];1758 -> 3490[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3490 -> 1797[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3491[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];1758 -> 3491[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3491 -> 1798[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1759[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];3492[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1759 -> 3492[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3492 -> 1799[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3493[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];1759 -> 3493[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3493 -> 1800[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1760[label="Just vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3494[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3494[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3494 -> 1801[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3495[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3495[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3495 -> 1802[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 244 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 244[label="compare (Just vyw21) (Just vyw16) == GT",fontsize=16,color="magenta"];244 -> 287[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 244 -> 288[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 245[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM1 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) False)",fontsize=16,color="black",shape="box"];245 -> 289[label="",style="solid", color="black", weight=3]; 24.96/10.76 246[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM1 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) True)",fontsize=16,color="black",shape="box"];246 -> 290[label="",style="solid", color="black", weight=3]; 24.96/10.76 247[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];247 -> 291[label="",style="solid", color="black", weight=3]; 24.96/10.76 248[label="GT",fontsize=16,color="green",shape="box"];249[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM0 Nothing vyw31 vyw32 vyw33 vyw34 Nothing otherwise)",fontsize=16,color="black",shape="box"];249 -> 292[label="",style="solid", color="black", weight=3]; 24.96/10.76 250 -> 6[label="",style="dashed", color="red", weight=0]; 24.96/10.76 250[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw34 Nothing)",fontsize=16,color="magenta"];250 -> 293[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 250 -> 294[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1775[label="compare1 Nothing vyw320 (Nothing <= vyw320)",fontsize=16,color="burlywood",shape="box"];3496[label="vyw320/Nothing",fontsize=10,color="white",style="solid",shape="box"];1775 -> 3496[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3496 -> 1831[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3497[label="vyw320/Just vyw3200",fontsize=10,color="white",style="solid",shape="box"];1775 -> 3497[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3497 -> 1832[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1776[label="compare1 (Just vyw3100) vyw320 (Just vyw3100 <= vyw320)",fontsize=16,color="burlywood",shape="box"];3498[label="vyw320/Nothing",fontsize=10,color="white",style="solid",shape="box"];1776 -> 3498[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3498 -> 1833[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3499[label="vyw320/Just vyw3200",fontsize=10,color="white",style="solid",shape="box"];1776 -> 3499[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3499 -> 1834[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 251[label="compare Nothing (Just vyw300)",fontsize=16,color="black",shape="box"];251 -> 295[label="",style="solid", color="black", weight=3]; 24.96/10.76 252[label="GT",fontsize=16,color="green",shape="box"];253[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM0 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing otherwise)",fontsize=16,color="black",shape="box"];253 -> 296[label="",style="solid", color="black", weight=3]; 24.96/10.76 254 -> 6[label="",style="dashed", color="red", weight=0]; 24.96/10.76 254[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw34 Nothing)",fontsize=16,color="magenta"];254 -> 297[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 254 -> 298[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 256[label="compare (Just vyw50) Nothing",fontsize=16,color="black",shape="box"];256 -> 300[label="",style="solid", color="black", weight=3]; 24.96/10.76 257[label="GT",fontsize=16,color="green",shape="box"];258[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM0 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) otherwise)",fontsize=16,color="black",shape="box"];258 -> 301[label="",style="solid", color="black", weight=3]; 24.96/10.76 259 -> 6[label="",style="dashed", color="red", weight=0]; 24.96/10.76 259[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw34 (Just vyw50))",fontsize=16,color="magenta"];259 -> 302[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 259 -> 303[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1777[label="primEqChar (Char vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3500[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];1777 -> 3500[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3500 -> 1835[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1778[label="False == False",fontsize=16,color="black",shape="box"];1778 -> 1836[label="",style="solid", color="black", weight=3]; 24.96/10.76 1779[label="False == True",fontsize=16,color="black",shape="box"];1779 -> 1837[label="",style="solid", color="black", weight=3]; 24.96/10.76 1780[label="True == False",fontsize=16,color="black",shape="box"];1780 -> 1838[label="",style="solid", color="black", weight=3]; 24.96/10.76 1781[label="True == True",fontsize=16,color="black",shape="box"];1781 -> 1839[label="",style="solid", color="black", weight=3]; 24.96/10.76 1782[label="primEqFloat (Float vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];3501[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];1782 -> 3501[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3501 -> 1840[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1783[label="Left vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];1783 -> 1841[label="",style="solid", color="black", weight=3]; 24.96/10.76 1784[label="Left vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];1784 -> 1842[label="",style="solid", color="black", weight=3]; 24.96/10.76 1785[label="Right vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];1785 -> 1843[label="",style="solid", color="black", weight=3]; 24.96/10.76 1786[label="Right vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];1786 -> 1844[label="",style="solid", color="black", weight=3]; 24.96/10.76 1787[label="() == ()",fontsize=16,color="black",shape="box"];1787 -> 1845[label="",style="solid", color="black", weight=3]; 24.96/10.76 1788[label="vyw500 :% vyw501 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];1788 -> 1846[label="",style="solid", color="black", weight=3]; 24.96/10.76 1789[label="(vyw500,vyw501) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];1789 -> 1847[label="",style="solid", color="black", weight=3]; 24.96/10.76 1790[label="Integer vyw500 == Integer vyw3000",fontsize=16,color="black",shape="box"];1790 -> 1848[label="",style="solid", color="black", weight=3]; 24.96/10.76 1791[label="(vyw500,vyw501,vyw502) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];1791 -> 1849[label="",style="solid", color="black", weight=3]; 24.96/10.76 1792[label="primEqDouble (Double vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];3502[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];1792 -> 3502[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3502 -> 1850[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1793[label="primEqInt (Pos vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3503[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];1793 -> 3503[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3503 -> 1851[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3504[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];1793 -> 3504[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3504 -> 1852[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1794[label="primEqInt (Neg vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3505[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];1794 -> 3505[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3505 -> 1853[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3506[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];1794 -> 3506[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3506 -> 1854[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1795[label="vyw500 : vyw501 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];1795 -> 1855[label="",style="solid", color="black", weight=3]; 24.96/10.76 1796[label="vyw500 : vyw501 == []",fontsize=16,color="black",shape="box"];1796 -> 1856[label="",style="solid", color="black", weight=3]; 24.96/10.76 1797[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];1797 -> 1857[label="",style="solid", color="black", weight=3]; 24.96/10.76 1798[label="[] == []",fontsize=16,color="black",shape="box"];1798 -> 1858[label="",style="solid", color="black", weight=3]; 24.96/10.76 1799[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1799 -> 1859[label="",style="solid", color="black", weight=3]; 24.96/10.76 1800[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];1800 -> 1860[label="",style="solid", color="black", weight=3]; 24.96/10.76 1801[label="Just vyw500 == Nothing",fontsize=16,color="black",shape="box"];1801 -> 1861[label="",style="solid", color="black", weight=3]; 24.96/10.76 1802[label="Just vyw500 == Just vyw3000",fontsize=16,color="black",shape="box"];1802 -> 1862[label="",style="solid", color="black", weight=3]; 24.96/10.76 287[label="compare (Just vyw21) (Just vyw16)",fontsize=16,color="black",shape="box"];287 -> 342[label="",style="solid", color="black", weight=3]; 24.96/10.76 288[label="GT",fontsize=16,color="green",shape="box"];289[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM0 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) otherwise)",fontsize=16,color="black",shape="box"];289 -> 343[label="",style="solid", color="black", weight=3]; 24.96/10.76 290 -> 6[label="",style="dashed", color="red", weight=0]; 24.96/10.76 290[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM vyw20 (Just vyw21))",fontsize=16,color="magenta"];290 -> 344[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 290 -> 345[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 290 -> 346[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 291[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];291 -> 347[label="",style="solid", color="black", weight=3]; 24.96/10.76 292[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM0 Nothing vyw31 vyw32 vyw33 vyw34 Nothing True)",fontsize=16,color="black",shape="box"];292 -> 348[label="",style="solid", color="black", weight=3]; 24.96/10.76 293[label="vyw34",fontsize=16,color="green",shape="box"];294[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]; 24.96/10.76 1832[label="compare1 Nothing (Just vyw3200) (Nothing <= Just vyw3200)",fontsize=16,color="black",shape="box"];1832 -> 1864[label="",style="solid", color="black", weight=3]; 24.96/10.76 1833[label="compare1 (Just vyw3100) Nothing (Just vyw3100 <= Nothing)",fontsize=16,color="black",shape="box"];1833 -> 1865[label="",style="solid", color="black", weight=3]; 24.96/10.76 1834[label="compare1 (Just vyw3100) (Just vyw3200) (Just vyw3100 <= Just vyw3200)",fontsize=16,color="black",shape="box"];1834 -> 1866[label="",style="solid", color="black", weight=3]; 24.96/10.76 295[label="compare3 Nothing (Just vyw300)",fontsize=16,color="black",shape="box"];295 -> 349[label="",style="solid", color="black", weight=3]; 24.96/10.76 296[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM0 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing True)",fontsize=16,color="black",shape="box"];296 -> 350[label="",style="solid", color="black", weight=3]; 24.96/10.76 297[label="vyw34",fontsize=16,color="green",shape="box"];298[label="Nothing",fontsize=16,color="green",shape="box"];300[label="compare3 (Just vyw50) Nothing",fontsize=16,color="black",shape="box"];300 -> 351[label="",style="solid", color="black", weight=3]; 24.96/10.76 301[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM0 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw50) True)",fontsize=16,color="black",shape="box"];301 -> 352[label="",style="solid", color="black", weight=3]; 24.96/10.76 302[label="vyw34",fontsize=16,color="green",shape="box"];303[label="Just vyw50",fontsize=16,color="green",shape="box"];1835[label="primEqChar (Char vyw500) (Char vyw3000)",fontsize=16,color="black",shape="box"];1835 -> 1867[label="",style="solid", color="black", weight=3]; 24.96/10.76 1836[label="True",fontsize=16,color="green",shape="box"];1837[label="False",fontsize=16,color="green",shape="box"];1838[label="False",fontsize=16,color="green",shape="box"];1839[label="True",fontsize=16,color="green",shape="box"];1840[label="primEqFloat (Float vyw500 vyw501) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];1840 -> 1868[label="",style="solid", color="black", weight=3]; 24.96/10.76 1841[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3507[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3507[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3507 -> 1869[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3508[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3508[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3508 -> 1870[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3509[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3509[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3509 -> 1871[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3510[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3510[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3510 -> 1872[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3511[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3511[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3511 -> 1873[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3512[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3512[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3512 -> 1874[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3513[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3513[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3513 -> 1875[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3514[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3514[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3514 -> 1876[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3515[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3515[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3515 -> 1877[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3516[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3516[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3516 -> 1878[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3517[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3517[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3517 -> 1879[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3518[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3518[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3518 -> 1880[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3519[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3519[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3519 -> 1881[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3520[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3520[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3520 -> 1882[label="",style="solid", color="blue", weight=3]; 24.96/10.76 1842[label="False",fontsize=16,color="green",shape="box"];1843[label="False",fontsize=16,color="green",shape="box"];1844[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3521[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3521[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3521 -> 1883[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3522[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3522[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3522 -> 1884[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3523[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3523[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3523 -> 1885[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3524[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3524[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3524 -> 1886[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3525[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3525[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3525 -> 1887[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3526[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3526[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3526 -> 1888[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3527[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3527[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3527 -> 1889[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3528[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3528[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3528 -> 1890[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3529[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3529[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3529 -> 1891[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3530[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3530[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3530 -> 1892[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3531[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3531[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3531 -> 1893[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3532[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3532[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3532 -> 1894[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3533[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3533[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3533 -> 1895[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3534[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3534[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3534 -> 1896[label="",style="solid", color="blue", weight=3]; 24.96/10.76 1845[label="True",fontsize=16,color="green",shape="box"];1846 -> 2012[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1846[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];1846 -> 2013[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1846 -> 2014[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1847 -> 2012[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1847[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];1847 -> 2015[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1847 -> 2016[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1848 -> 1756[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1848[label="primEqInt vyw500 vyw3000",fontsize=16,color="magenta"];1848 -> 1907[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1848 -> 1908[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1849 -> 2012[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1849[label="vyw500 == vyw3000 && vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];1849 -> 2017[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1849 -> 2018[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1850[label="primEqDouble (Double vyw500 vyw501) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];1850 -> 1920[label="",style="solid", color="black", weight=3]; 24.96/10.76 1851[label="primEqInt (Pos (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];3535[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1851 -> 3535[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3535 -> 1921[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3536[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1851 -> 3536[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3536 -> 1922[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1852[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3537[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1852 -> 3537[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3537 -> 1923[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3538[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1852 -> 3538[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3538 -> 1924[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1853[label="primEqInt (Neg (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];3539[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3539[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3539 -> 1925[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3540[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3540[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3540 -> 1926[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1854[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3541[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1854 -> 3541[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3541 -> 1927[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3542[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1854 -> 3542[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3542 -> 1928[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1855 -> 2012[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1855[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];1855 -> 2019[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1855 -> 2020[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1856[label="False",fontsize=16,color="green",shape="box"];1857[label="False",fontsize=16,color="green",shape="box"];1858[label="True",fontsize=16,color="green",shape="box"];1859[label="True",fontsize=16,color="green",shape="box"];1860[label="False",fontsize=16,color="green",shape="box"];1861[label="False",fontsize=16,color="green",shape="box"];1862[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3543[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3543[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3543 -> 1929[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3544[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3544[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3544 -> 1930[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3545[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3545[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3545 -> 1931[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3546[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3546[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3546 -> 1932[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3547[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3547[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3547 -> 1933[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3548[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3548[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3548 -> 1934[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3549[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3549[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3549 -> 1935[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3550[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3550[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3550 -> 1936[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3551[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3551[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3551 -> 1937[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3552[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3552[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3552 -> 1938[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3553[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3553[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3553 -> 1939[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3554[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3554[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3554 -> 1940[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3555[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3555[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3555 -> 1941[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3556[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3556[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3556 -> 1942[label="",style="solid", color="blue", weight=3]; 24.96/10.76 342[label="compare3 (Just vyw21) (Just vyw16)",fontsize=16,color="black",shape="box"];342 -> 445[label="",style="solid", color="black", weight=3]; 24.96/10.76 343[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM0 (Just vyw16) vyw17 vyw18 vyw19 vyw20 (Just vyw21) True)",fontsize=16,color="black",shape="box"];343 -> 446[label="",style="solid", color="black", weight=3]; 24.96/10.76 344[label="vyw15",fontsize=16,color="green",shape="box"];345[label="vyw20",fontsize=16,color="green",shape="box"];346[label="Just vyw21",fontsize=16,color="green",shape="box"];347 -> 1687[label="",style="dashed", color="red", weight=0]; 24.96/10.76 347[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];347 -> 1706[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 347 -> 1707[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 347 -> 1708[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 348[label="FiniteMap.lookupWithDefaultFM0 vyw4 (Just vyw31)",fontsize=16,color="black",shape="triangle"];348 -> 449[label="",style="solid", color="black", weight=3]; 24.96/10.76 1863[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];1863 -> 1943[label="",style="solid", color="black", weight=3]; 24.96/10.76 1864[label="compare1 Nothing (Just vyw3200) True",fontsize=16,color="black",shape="box"];1864 -> 1944[label="",style="solid", color="black", weight=3]; 24.96/10.76 1865[label="compare1 (Just vyw3100) Nothing False",fontsize=16,color="black",shape="box"];1865 -> 1945[label="",style="solid", color="black", weight=3]; 24.96/10.76 1866 -> 1946[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1866[label="compare1 (Just vyw3100) (Just vyw3200) (vyw3100 <= vyw3200)",fontsize=16,color="magenta"];1866 -> 1947[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1866 -> 1948[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1866 -> 1949[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 349 -> 1687[label="",style="dashed", color="red", weight=0]; 24.96/10.76 349[label="compare2 Nothing (Just vyw300) (Nothing == Just vyw300)",fontsize=16,color="magenta"];349 -> 1709[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 349 -> 1710[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 349 -> 1711[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 350 -> 348[label="",style="dashed", color="red", weight=0]; 24.96/10.76 350[label="FiniteMap.lookupWithDefaultFM0 vyw4 (Just vyw31)",fontsize=16,color="magenta"];351 -> 1687[label="",style="dashed", color="red", weight=0]; 24.96/10.76 351[label="compare2 (Just vyw50) Nothing (Just vyw50 == Nothing)",fontsize=16,color="magenta"];351 -> 1712[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 351 -> 1713[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 351 -> 1714[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 352 -> 348[label="",style="dashed", color="red", weight=0]; 24.96/10.76 352[label="FiniteMap.lookupWithDefaultFM0 vyw4 (Just vyw31)",fontsize=16,color="magenta"];1867[label="primEqNat vyw500 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3557[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3557[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3557 -> 1950[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3558[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3558[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3558 -> 1951[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 1868 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1868[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];1868 -> 1952[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1868 -> 1953[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1869 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1869[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1869 -> 1954[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1869 -> 1955[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1870 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1870[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1870 -> 1956[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1870 -> 1957[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1871 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1871[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1871 -> 1958[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1871 -> 1959[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1872 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1872[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1872 -> 1960[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1872 -> 1961[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1873 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1873[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1873 -> 1962[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1873 -> 1963[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1874 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1874[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1874 -> 1964[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1874 -> 1965[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1875 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1875[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1875 -> 1966[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1875 -> 1967[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1876 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1876[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1876 -> 1968[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1876 -> 1969[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1877 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1877[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1877 -> 1970[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1877 -> 1971[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1878 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1878[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1878 -> 1972[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1878 -> 1973[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1879 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1879[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1879 -> 1974[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1879 -> 1975[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1880 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1880[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1880 -> 1976[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1880 -> 1977[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1881 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1881[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1881 -> 1978[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1881 -> 1979[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1882 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1882[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1882 -> 1980[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1882 -> 1981[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1883 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1883[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1883 -> 1982[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1883 -> 1983[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1884 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1884[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1884 -> 1984[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1884 -> 1985[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1885 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1885[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1885 -> 1986[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1885 -> 1987[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1886 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1886[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1886 -> 1988[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1886 -> 1989[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1887 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1887[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1887 -> 1990[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1887 -> 1991[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1888 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1888[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1888 -> 1992[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1888 -> 1993[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1889 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1889[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1889 -> 1994[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1889 -> 1995[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1890 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1890[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1890 -> 1996[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1890 -> 1997[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1891 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1891[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1891 -> 1998[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1891 -> 1999[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1892 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1892[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1892 -> 2000[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1892 -> 2001[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1893 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1893[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1893 -> 2002[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1893 -> 2003[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1894 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1894[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1894 -> 2004[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1894 -> 2005[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1895 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1895[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1895 -> 2006[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1895 -> 2007[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1896 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.76 1896[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1896 -> 2008[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 1896 -> 2009[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 2013[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3559[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2013 -> 3559[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3559 -> 2025[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3560[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2013 -> 3560[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3560 -> 2026[label="",style="solid", color="blue", weight=3]; 24.96/10.76 2014[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3561[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2014 -> 3561[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3561 -> 2027[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3562[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2014 -> 3562[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3562 -> 2028[label="",style="solid", color="blue", weight=3]; 24.96/10.76 2012[label="vyw92 && vyw93",fontsize=16,color="burlywood",shape="triangle"];3563[label="vyw92/False",fontsize=10,color="white",style="solid",shape="box"];2012 -> 3563[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3563 -> 2029[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 3564[label="vyw92/True",fontsize=10,color="white",style="solid",shape="box"];2012 -> 3564[label="",style="solid", color="burlywood", weight=9]; 24.96/10.76 3564 -> 2030[label="",style="solid", color="burlywood", weight=3]; 24.96/10.76 2015[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3565[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3565[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3565 -> 2031[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3566[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3566[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3566 -> 2032[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3567[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3567[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3567 -> 2033[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3568[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3568[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3568 -> 2034[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3569[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3569[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3569 -> 2035[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3570[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3570[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3570 -> 2036[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3571[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3571[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3571 -> 2037[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3572[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3572[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3572 -> 2038[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3573[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3573[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3573 -> 2039[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3574[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3574[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3574 -> 2040[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3575[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3575[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3575 -> 2041[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3576[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3576[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3576 -> 2042[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3577[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3577[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3577 -> 2043[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3578[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3578[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3578 -> 2044[label="",style="solid", color="blue", weight=3]; 24.96/10.76 2016[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3579[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3579[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3579 -> 2045[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3580[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3580[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3580 -> 2046[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3581[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3581[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3581 -> 2047[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3582[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3582[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3582 -> 2048[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3583[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3583[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3583 -> 2049[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3584[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3584[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3584 -> 2050[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3585[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3585[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3585 -> 2051[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3586[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3586[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3586 -> 2052[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3587[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3587[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3587 -> 2053[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3588[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3588[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3588 -> 2054[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3589[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3589[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3589 -> 2055[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3590[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3590[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3590 -> 2056[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3591[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3591[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3591 -> 2057[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3592[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3592[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3592 -> 2058[label="",style="solid", color="blue", weight=3]; 24.96/10.76 1907[label="vyw500",fontsize=16,color="green",shape="box"];1908[label="vyw3000",fontsize=16,color="green",shape="box"];2017 -> 2012[label="",style="dashed", color="red", weight=0]; 24.96/10.76 2017[label="vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];2017 -> 2059[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 2017 -> 2060[label="",style="dashed", color="magenta", weight=3]; 24.96/10.76 2018[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3593[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3593[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3593 -> 2061[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3594[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3594[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3594 -> 2062[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3595[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3595[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3595 -> 2063[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3596[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3596[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3596 -> 2064[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3597[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3597[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3597 -> 2065[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3598[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3598[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3598 -> 2066[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3599[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3599[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3599 -> 2067[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3600[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3600[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3600 -> 2068[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3601[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3601[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3601 -> 2069[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3602[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3602[label="",style="solid", color="blue", weight=9]; 24.96/10.76 3602 -> 2070[label="",style="solid", color="blue", weight=3]; 24.96/10.76 3603[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3603[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3603 -> 2071[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3604[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3604[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3604 -> 2072[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3605[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3605[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3605 -> 2073[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3606[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3606[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3606 -> 2074[label="",style="solid", color="blue", weight=3]; 24.96/10.77 1920 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1920[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];1920 -> 2075[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1920 -> 2076[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1921[label="primEqInt (Pos (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3607[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1921 -> 3607[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3607 -> 2077[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3608[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1921 -> 3608[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3608 -> 2078[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 1922[label="primEqInt (Pos (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];1922 -> 2079[label="",style="solid", color="black", weight=3]; 24.96/10.77 1923[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3609[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1923 -> 3609[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3609 -> 2080[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3610[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1923 -> 3610[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3610 -> 2081[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 1924[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3611[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1924 -> 3611[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3611 -> 2082[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3612[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1924 -> 3612[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3612 -> 2083[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 1925[label="primEqInt (Neg (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];1925 -> 2084[label="",style="solid", color="black", weight=3]; 24.96/10.77 1926[label="primEqInt (Neg (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3613[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1926 -> 3613[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3613 -> 2085[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3614[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1926 -> 3614[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3614 -> 2086[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 1927[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3615[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1927 -> 3615[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3615 -> 2087[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3616[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1927 -> 3616[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3616 -> 2088[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 1928[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3617[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3617[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3617 -> 2089[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3618[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3618[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3618 -> 2090[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2019 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2019[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2019 -> 2091[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2019 -> 2092[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2020[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3619[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3619[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3619 -> 2093[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3620[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3620[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3620 -> 2094[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3621[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3621[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3621 -> 2095[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3622[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3622[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3622 -> 2096[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3623[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3623[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3623 -> 2097[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3624[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3624[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3624 -> 2098[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3625[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3625[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3625 -> 2099[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3626[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3626[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3626 -> 2100[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3627[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3627[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3627 -> 2101[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3628[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3628[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3628 -> 2102[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3629[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3629[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3629 -> 2103[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3630[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3630[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3630 -> 2104[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3631[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3631[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3631 -> 2105[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3632[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3632[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3632 -> 2106[label="",style="solid", color="blue", weight=3]; 24.96/10.77 1929 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1929[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1929 -> 2107[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1929 -> 2108[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1930 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1930[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1930 -> 2109[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1930 -> 2110[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1931 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1931[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1931 -> 2111[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1931 -> 2112[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1932 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1932[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1932 -> 2113[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1932 -> 2114[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1933 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1933[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1933 -> 2115[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1933 -> 2116[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1934 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1934[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1934 -> 2117[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1934 -> 2118[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1935 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1935[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1935 -> 2119[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1935 -> 2120[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1936 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1936[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1936 -> 2121[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1936 -> 2122[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1937 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1937[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1937 -> 2123[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1937 -> 2124[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1938 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1938[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1938 -> 2125[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1938 -> 2126[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1939 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1939[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1939 -> 2127[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1939 -> 2128[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1940 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1940[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1940 -> 2129[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1940 -> 2130[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1941 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1941[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1941 -> 2131[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1941 -> 2132[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1942 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1942[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1942 -> 2133[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1942 -> 2134[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 445 -> 1687[label="",style="dashed", color="red", weight=0]; 24.96/10.77 445[label="compare2 (Just vyw21) (Just vyw16) (Just vyw21 == Just vyw16)",fontsize=16,color="magenta"];445 -> 1715[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 445 -> 1716[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 445 -> 1717[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 446 -> 348[label="",style="dashed", color="red", weight=0]; 24.96/10.77 446[label="FiniteMap.lookupWithDefaultFM0 vyw15 (Just vyw17)",fontsize=16,color="magenta"];446 -> 673[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 446 -> 674[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1706[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1706 -> 1738[label="",style="solid", color="black", weight=3]; 24.96/10.77 1707[label="Nothing",fontsize=16,color="green",shape="box"];1708[label="Nothing",fontsize=16,color="green",shape="box"];449[label="vyw31",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 vyw3100) Nothing otherwise",fontsize=16,color="black",shape="box"];1945 -> 2135[label="",style="solid", color="black", weight=3]; 24.96/10.77 1947[label="vyw3100 <= vyw3200",fontsize=16,color="blue",shape="box"];3633[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3633[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3633 -> 2136[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3634[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3634[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3634 -> 2137[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3635[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3635[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3635 -> 2138[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3636[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3636[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3636 -> 2139[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3637[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3637[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3637 -> 2140[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3638[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3638[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3638 -> 2141[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3639[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3639[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3639 -> 2142[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3640[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3640[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3640 -> 2143[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3641[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3641[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3641 -> 2144[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3642[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3642[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3642 -> 2145[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3643[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3643[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3643 -> 2146[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3644[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3644[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3644 -> 2147[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3645[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3645[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3645 -> 2148[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3646[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1947 -> 3646[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3646 -> 2149[label="",style="solid", color="blue", weight=3]; 24.96/10.77 1948[label="vyw3200",fontsize=16,color="green",shape="box"];1949[label="vyw3100",fontsize=16,color="green",shape="box"];1946[label="compare1 (Just vyw86) (Just vyw87) vyw88",fontsize=16,color="burlywood",shape="triangle"];3647[label="vyw88/False",fontsize=10,color="white",style="solid",shape="box"];1946 -> 3647[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3647 -> 2150[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3648[label="vyw88/True",fontsize=10,color="white",style="solid",shape="box"];1946 -> 3648[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3648 -> 2151[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 1709[label="Nothing == Just vyw300",fontsize=16,color="black",shape="box"];1709 -> 1739[label="",style="solid", color="black", weight=3]; 24.96/10.77 1710[label="Nothing",fontsize=16,color="green",shape="box"];1711[label="Just vyw300",fontsize=16,color="green",shape="box"];1712[label="Just vyw50 == Nothing",fontsize=16,color="black",shape="box"];1712 -> 1740[label="",style="solid", color="black", weight=3]; 24.96/10.77 1713[label="Just vyw50",fontsize=16,color="green",shape="box"];1714[label="Nothing",fontsize=16,color="green",shape="box"];1950[label="primEqNat (Succ vyw5000) vyw3000",fontsize=16,color="burlywood",shape="box"];3649[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3649[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3649 -> 2152[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3650[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3650[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3650 -> 2153[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 1951[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];3651[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1951 -> 3651[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3651 -> 2154[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3652[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1951 -> 3652[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3652 -> 2155[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 1952[label="vyw500 * vyw3001",fontsize=16,color="black",shape="triangle"];1952 -> 2156[label="",style="solid", color="black", weight=3]; 24.96/10.77 1953 -> 1952[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1953[label="vyw501 * vyw3000",fontsize=16,color="magenta"];1953 -> 2157[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1953 -> 2158[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1954[label="vyw500",fontsize=16,color="green",shape="box"];1955[label="vyw3000",fontsize=16,color="green",shape="box"];1956[label="vyw500",fontsize=16,color="green",shape="box"];1957[label="vyw3000",fontsize=16,color="green",shape="box"];1958[label="vyw500",fontsize=16,color="green",shape="box"];1959[label="vyw3000",fontsize=16,color="green",shape="box"];1960[label="vyw500",fontsize=16,color="green",shape="box"];1961[label="vyw3000",fontsize=16,color="green",shape="box"];1962[label="vyw500",fontsize=16,color="green",shape="box"];1963[label="vyw3000",fontsize=16,color="green",shape="box"];1964[label="vyw500",fontsize=16,color="green",shape="box"];1965[label="vyw3000",fontsize=16,color="green",shape="box"];1966[label="vyw500",fontsize=16,color="green",shape="box"];1967[label="vyw3000",fontsize=16,color="green",shape="box"];1968[label="vyw500",fontsize=16,color="green",shape="box"];1969[label="vyw3000",fontsize=16,color="green",shape="box"];1970[label="vyw500",fontsize=16,color="green",shape="box"];1971[label="vyw3000",fontsize=16,color="green",shape="box"];1972[label="vyw500",fontsize=16,color="green",shape="box"];1973[label="vyw3000",fontsize=16,color="green",shape="box"];1974[label="vyw500",fontsize=16,color="green",shape="box"];1975[label="vyw3000",fontsize=16,color="green",shape="box"];1976[label="vyw500",fontsize=16,color="green",shape="box"];1977[label="vyw3000",fontsize=16,color="green",shape="box"];1978[label="vyw500",fontsize=16,color="green",shape="box"];1979[label="vyw3000",fontsize=16,color="green",shape="box"];1980[label="vyw500",fontsize=16,color="green",shape="box"];1981[label="vyw3000",fontsize=16,color="green",shape="box"];1982[label="vyw500",fontsize=16,color="green",shape="box"];1983[label="vyw3000",fontsize=16,color="green",shape="box"];1984[label="vyw500",fontsize=16,color="green",shape="box"];1985[label="vyw3000",fontsize=16,color="green",shape="box"];1986[label="vyw500",fontsize=16,color="green",shape="box"];1987[label="vyw3000",fontsize=16,color="green",shape="box"];1988[label="vyw500",fontsize=16,color="green",shape="box"];1989[label="vyw3000",fontsize=16,color="green",shape="box"];1990[label="vyw500",fontsize=16,color="green",shape="box"];1991[label="vyw3000",fontsize=16,color="green",shape="box"];1992[label="vyw500",fontsize=16,color="green",shape="box"];1993[label="vyw3000",fontsize=16,color="green",shape="box"];1994[label="vyw500",fontsize=16,color="green",shape="box"];1995[label="vyw3000",fontsize=16,color="green",shape="box"];1996[label="vyw500",fontsize=16,color="green",shape="box"];1997[label="vyw3000",fontsize=16,color="green",shape="box"];1998[label="vyw500",fontsize=16,color="green",shape="box"];1999[label="vyw3000",fontsize=16,color="green",shape="box"];2000[label="vyw500",fontsize=16,color="green",shape="box"];2001[label="vyw3000",fontsize=16,color="green",shape="box"];2002[label="vyw500",fontsize=16,color="green",shape="box"];2003[label="vyw3000",fontsize=16,color="green",shape="box"];2004[label="vyw500",fontsize=16,color="green",shape="box"];2005[label="vyw3000",fontsize=16,color="green",shape="box"];2006[label="vyw500",fontsize=16,color="green",shape="box"];2007[label="vyw3000",fontsize=16,color="green",shape="box"];2008[label="vyw500",fontsize=16,color="green",shape="box"];2009[label="vyw3000",fontsize=16,color="green",shape="box"];2025 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2025[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2025 -> 2159[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2025 -> 2160[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2026 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2026[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2026 -> 2161[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2026 -> 2162[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2027 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2027[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2027 -> 2163[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2027 -> 2164[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2028 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2028[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2028 -> 2165[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2028 -> 2166[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2029[label="False && vyw93",fontsize=16,color="black",shape="box"];2029 -> 2167[label="",style="solid", color="black", weight=3]; 24.96/10.77 2030[label="True && vyw93",fontsize=16,color="black",shape="box"];2030 -> 2168[label="",style="solid", color="black", weight=3]; 24.96/10.77 2031 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2031[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2031 -> 2169[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2031 -> 2170[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2032 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2032[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2032 -> 2171[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2032 -> 2172[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2033 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2033[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2033 -> 2173[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2033 -> 2174[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2034 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2034[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2034 -> 2175[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2034 -> 2176[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2035 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2035[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2035 -> 2177[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2035 -> 2178[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2036 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2036[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2036 -> 2179[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2036 -> 2180[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2037 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2037[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2037 -> 2181[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2037 -> 2182[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2038 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2038[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2038 -> 2183[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2038 -> 2184[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2039 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2039[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2039 -> 2185[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2039 -> 2186[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2040 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2040[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2040 -> 2187[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2040 -> 2188[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2041 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2041[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2041 -> 2189[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2041 -> 2190[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2042 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2042[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2042 -> 2191[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2042 -> 2192[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2043 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2043[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2043 -> 2193[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2043 -> 2194[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2044 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2044[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2044 -> 2195[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2044 -> 2196[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2045 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2045[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2045 -> 2197[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2045 -> 2198[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2046 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2046[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2046 -> 2199[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2046 -> 2200[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2047 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2047[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2047 -> 2201[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2047 -> 2202[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2048 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2048[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2048 -> 2203[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2048 -> 2204[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2049 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2049[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2049 -> 2205[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2049 -> 2206[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2050 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2050[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2050 -> 2207[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2050 -> 2208[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2051 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2051[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2051 -> 2209[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2051 -> 2210[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2052 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2052[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2052 -> 2211[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2052 -> 2212[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2053 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2053[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2053 -> 2213[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2053 -> 2214[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2054 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2054[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2054 -> 2215[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2054 -> 2216[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2055 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2055[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2055 -> 2217[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2055 -> 2218[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2056 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2056[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2056 -> 2219[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2056 -> 2220[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2057 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2057[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2057 -> 2221[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2057 -> 2222[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2058 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2058[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2058 -> 2223[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2058 -> 2224[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2059[label="vyw502 == vyw3002",fontsize=16,color="blue",shape="box"];3653[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3653[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3653 -> 2225[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3654[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3654[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3654 -> 2226[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3655[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3655[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3655 -> 2227[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3656[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3656[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3656 -> 2228[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3657[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3657[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3657 -> 2229[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3658[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3658[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3658 -> 2230[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3659[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3659[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3659 -> 2231[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3660[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3660[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3660 -> 2232[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3661[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3661[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3661 -> 2233[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3662[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3662[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3662 -> 2234[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3663[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3663[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3663 -> 2235[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3664[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3664[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3664 -> 2236[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3665[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3665[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3665 -> 2237[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3666[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 3666[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3666 -> 2238[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2060[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3667[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3667[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3667 -> 2239[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3668[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3668[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3668 -> 2240[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3669[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3669[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3669 -> 2241[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3670[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3670[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3670 -> 2242[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3671[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3671[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3671 -> 2243[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3672[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3672[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3672 -> 2244[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3673[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3673[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3673 -> 2245[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3674[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3674[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3674 -> 2246[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3675[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3675[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3675 -> 2247[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3676[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3676[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3676 -> 2248[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3677[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3677[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3677 -> 2249[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3678[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3678[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3678 -> 2250[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3679[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3679[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3679 -> 2251[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3680[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2060 -> 3680[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3680 -> 2252[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2061 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2061[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2061 -> 2253[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2061 -> 2254[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2062 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2062[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2062 -> 2255[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2062 -> 2256[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2063 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2063[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2063 -> 2257[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2063 -> 2258[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2064 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2064[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2064 -> 2259[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2064 -> 2260[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2065 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2065[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2065 -> 2261[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2065 -> 2262[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2066 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2066[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2066 -> 2263[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2066 -> 2264[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2067 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2067[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2067 -> 2265[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2067 -> 2266[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2068 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2068[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2068 -> 2267[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2068 -> 2268[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2069 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2069[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2069 -> 2269[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2069 -> 2270[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2070 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2070[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2070 -> 2271[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2070 -> 2272[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2071 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2071[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2071 -> 2273[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2071 -> 2274[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2072 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2072[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2072 -> 2275[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2072 -> 2276[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2073 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2073[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2073 -> 2277[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2073 -> 2278[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2074 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2074[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2074 -> 2279[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2074 -> 2280[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2075 -> 1952[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2075[label="vyw500 * vyw3001",fontsize=16,color="magenta"];2075 -> 2281[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2075 -> 2282[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2076 -> 1952[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2076[label="vyw501 * vyw3000",fontsize=16,color="magenta"];2076 -> 2283[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2076 -> 2284[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2077[label="primEqInt (Pos (Succ vyw5000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2077 -> 2285[label="",style="solid", color="black", weight=3]; 24.96/10.77 2078[label="primEqInt (Pos (Succ vyw5000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2078 -> 2286[label="",style="solid", color="black", weight=3]; 24.96/10.77 2079[label="False",fontsize=16,color="green",shape="box"];2080[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2080 -> 2287[label="",style="solid", color="black", weight=3]; 24.96/10.77 2081[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2081 -> 2288[label="",style="solid", color="black", weight=3]; 24.96/10.77 2082[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2082 -> 2289[label="",style="solid", color="black", weight=3]; 24.96/10.77 2083[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2083 -> 2290[label="",style="solid", color="black", weight=3]; 24.96/10.77 2084[label="False",fontsize=16,color="green",shape="box"];2085[label="primEqInt (Neg (Succ vyw5000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2085 -> 2291[label="",style="solid", color="black", weight=3]; 24.96/10.77 2086[label="primEqInt (Neg (Succ vyw5000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2086 -> 2292[label="",style="solid", color="black", weight=3]; 24.96/10.77 2087[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2087 -> 2293[label="",style="solid", color="black", weight=3]; 24.96/10.77 2088[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2088 -> 2294[label="",style="solid", color="black", weight=3]; 24.96/10.77 2089[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2089 -> 2295[label="",style="solid", color="black", weight=3]; 24.96/10.77 2090[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2090 -> 2296[label="",style="solid", color="black", weight=3]; 24.96/10.77 2091[label="vyw501",fontsize=16,color="green",shape="box"];2092[label="vyw3001",fontsize=16,color="green",shape="box"];2093 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2093[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2093 -> 2297[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2093 -> 2298[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2094 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2094[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2094 -> 2299[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2094 -> 2300[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2095 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2095[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2095 -> 2301[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2095 -> 2302[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2096 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2096[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2096 -> 2303[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2096 -> 2304[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2097 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2097[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2097 -> 2305[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2097 -> 2306[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2098 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2098[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2098 -> 2307[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2098 -> 2308[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2099 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2099[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2099 -> 2309[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2099 -> 2310[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2100 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2100[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2100 -> 2311[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2100 -> 2312[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2101 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2101[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2101 -> 2313[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2101 -> 2314[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2102 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2102[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2102 -> 2315[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2102 -> 2316[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2103 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2103[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2103 -> 2317[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2103 -> 2318[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2104 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2104[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2104 -> 2319[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2104 -> 2320[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2105 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2105[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2105 -> 2321[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2105 -> 2322[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2106 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2106[label="vyw500 == vyw3000",fontsize=16,color="magenta"];2106 -> 2323[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2106 -> 2324[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2107[label="vyw500",fontsize=16,color="green",shape="box"];2108[label="vyw3000",fontsize=16,color="green",shape="box"];2109[label="vyw500",fontsize=16,color="green",shape="box"];2110[label="vyw3000",fontsize=16,color="green",shape="box"];2111[label="vyw500",fontsize=16,color="green",shape="box"];2112[label="vyw3000",fontsize=16,color="green",shape="box"];2113[label="vyw500",fontsize=16,color="green",shape="box"];2114[label="vyw3000",fontsize=16,color="green",shape="box"];2115[label="vyw500",fontsize=16,color="green",shape="box"];2116[label="vyw3000",fontsize=16,color="green",shape="box"];2117[label="vyw500",fontsize=16,color="green",shape="box"];2118[label="vyw3000",fontsize=16,color="green",shape="box"];2119[label="vyw500",fontsize=16,color="green",shape="box"];2120[label="vyw3000",fontsize=16,color="green",shape="box"];2121[label="vyw500",fontsize=16,color="green",shape="box"];2122[label="vyw3000",fontsize=16,color="green",shape="box"];2123[label="vyw500",fontsize=16,color="green",shape="box"];2124[label="vyw3000",fontsize=16,color="green",shape="box"];2125[label="vyw500",fontsize=16,color="green",shape="box"];2126[label="vyw3000",fontsize=16,color="green",shape="box"];2127[label="vyw500",fontsize=16,color="green",shape="box"];2128[label="vyw3000",fontsize=16,color="green",shape="box"];2129[label="vyw500",fontsize=16,color="green",shape="box"];2130[label="vyw3000",fontsize=16,color="green",shape="box"];2131[label="vyw500",fontsize=16,color="green",shape="box"];2132[label="vyw3000",fontsize=16,color="green",shape="box"];2133[label="vyw500",fontsize=16,color="green",shape="box"];2134[label="vyw3000",fontsize=16,color="green",shape="box"];1715[label="Just vyw21 == Just vyw16",fontsize=16,color="black",shape="box"];1715 -> 1741[label="",style="solid", color="black", weight=3]; 24.96/10.77 1716[label="Just vyw21",fontsize=16,color="green",shape="box"];1717[label="Just vyw16",fontsize=16,color="green",shape="box"];673[label="vyw15",fontsize=16,color="green",shape="box"];674[label="vyw17",fontsize=16,color="green",shape="box"];1738[label="True",fontsize=16,color="green",shape="box"];2135[label="compare0 (Just vyw3100) Nothing True",fontsize=16,color="black",shape="box"];2135 -> 2325[label="",style="solid", color="black", weight=3]; 24.96/10.77 2136[label="vyw3100 <= vyw3200",fontsize=16,color="burlywood",shape="triangle"];3681[label="vyw3100/False",fontsize=10,color="white",style="solid",shape="box"];2136 -> 3681[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3681 -> 2326[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3682[label="vyw3100/True",fontsize=10,color="white",style="solid",shape="box"];2136 -> 3682[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3682 -> 2327[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2137[label="vyw3100 <= vyw3200",fontsize=16,color="black",shape="triangle"];2137 -> 2328[label="",style="solid", color="black", weight=3]; 24.96/10.77 2138[label="vyw3100 <= vyw3200",fontsize=16,color="black",shape="triangle"];2138 -> 2329[label="",style="solid", color="black", weight=3]; 24.96/10.77 2139[label="vyw3100 <= vyw3200",fontsize=16,color="burlywood",shape="triangle"];3683[label="vyw3100/Nothing",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3683[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3683 -> 2330[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3684[label="vyw3100/Just vyw31000",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3684[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3684 -> 2331[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2140[label="vyw3100 <= vyw3200",fontsize=16,color="black",shape="triangle"];2140 -> 2332[label="",style="solid", color="black", weight=3]; 24.96/10.77 2141[label="vyw3100 <= vyw3200",fontsize=16,color="burlywood",shape="triangle"];3685[label="vyw3100/(vyw31000,vyw31001,vyw31002)",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3685[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3685 -> 2333[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2142[label="vyw3100 <= vyw3200",fontsize=16,color="burlywood",shape="triangle"];3686[label="vyw3100/Left vyw31000",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3686[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3686 -> 2334[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3687[label="vyw3100/Right vyw31000",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3687[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3687 -> 2335[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2143[label="vyw3100 <= vyw3200",fontsize=16,color="black",shape="triangle"];2143 -> 2336[label="",style="solid", color="black", weight=3]; 24.96/10.77 2144[label="vyw3100 <= vyw3200",fontsize=16,color="black",shape="triangle"];2144 -> 2337[label="",style="solid", color="black", weight=3]; 24.96/10.77 2145[label="vyw3100 <= vyw3200",fontsize=16,color="black",shape="triangle"];2145 -> 2338[label="",style="solid", color="black", weight=3]; 24.96/10.77 2146[label="vyw3100 <= vyw3200",fontsize=16,color="burlywood",shape="triangle"];3688[label="vyw3100/LT",fontsize=10,color="white",style="solid",shape="box"];2146 -> 3688[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3688 -> 2339[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3689[label="vyw3100/EQ",fontsize=10,color="white",style="solid",shape="box"];2146 -> 3689[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3689 -> 2340[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3690[label="vyw3100/GT",fontsize=10,color="white",style="solid",shape="box"];2146 -> 3690[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3690 -> 2341[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2147[label="vyw3100 <= vyw3200",fontsize=16,color="black",shape="triangle"];2147 -> 2342[label="",style="solid", color="black", weight=3]; 24.96/10.77 2148[label="vyw3100 <= vyw3200",fontsize=16,color="black",shape="triangle"];2148 -> 2343[label="",style="solid", color="black", weight=3]; 24.96/10.77 2149[label="vyw3100 <= vyw3200",fontsize=16,color="burlywood",shape="triangle"];3691[label="vyw3100/(vyw31000,vyw31001)",fontsize=10,color="white",style="solid",shape="box"];2149 -> 3691[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3691 -> 2344[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2150[label="compare1 (Just vyw86) (Just vyw87) False",fontsize=16,color="black",shape="box"];2150 -> 2345[label="",style="solid", color="black", weight=3]; 24.96/10.77 2151[label="compare1 (Just vyw86) (Just vyw87) True",fontsize=16,color="black",shape="box"];2151 -> 2346[label="",style="solid", color="black", weight=3]; 24.96/10.77 1739[label="False",fontsize=16,color="green",shape="box"];1740[label="False",fontsize=16,color="green",shape="box"];2152[label="primEqNat (Succ vyw5000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];2152 -> 2347[label="",style="solid", color="black", weight=3]; 24.96/10.77 2153[label="primEqNat (Succ vyw5000) Zero",fontsize=16,color="black",shape="box"];2153 -> 2348[label="",style="solid", color="black", weight=3]; 24.96/10.77 2154[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];2154 -> 2349[label="",style="solid", color="black", weight=3]; 24.96/10.77 2155[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2155 -> 2350[label="",style="solid", color="black", weight=3]; 24.96/10.77 2156[label="primMulInt vyw500 vyw3001",fontsize=16,color="burlywood",shape="triangle"];3692[label="vyw500/Pos vyw5000",fontsize=10,color="white",style="solid",shape="box"];2156 -> 3692[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3692 -> 2351[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3693[label="vyw500/Neg vyw5000",fontsize=10,color="white",style="solid",shape="box"];2156 -> 3693[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3693 -> 2352[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2157[label="vyw501",fontsize=16,color="green",shape="box"];2158[label="vyw3000",fontsize=16,color="green",shape="box"];2159[label="vyw501",fontsize=16,color="green",shape="box"];2160[label="vyw3001",fontsize=16,color="green",shape="box"];2161[label="vyw501",fontsize=16,color="green",shape="box"];2162[label="vyw3001",fontsize=16,color="green",shape="box"];2163[label="vyw500",fontsize=16,color="green",shape="box"];2164[label="vyw3000",fontsize=16,color="green",shape="box"];2165[label="vyw500",fontsize=16,color="green",shape="box"];2166[label="vyw3000",fontsize=16,color="green",shape="box"];2167[label="False",fontsize=16,color="green",shape="box"];2168[label="vyw93",fontsize=16,color="green",shape="box"];2169[label="vyw501",fontsize=16,color="green",shape="box"];2170[label="vyw3001",fontsize=16,color="green",shape="box"];2171[label="vyw501",fontsize=16,color="green",shape="box"];2172[label="vyw3001",fontsize=16,color="green",shape="box"];2173[label="vyw501",fontsize=16,color="green",shape="box"];2174[label="vyw3001",fontsize=16,color="green",shape="box"];2175[label="vyw501",fontsize=16,color="green",shape="box"];2176[label="vyw3001",fontsize=16,color="green",shape="box"];2177[label="vyw501",fontsize=16,color="green",shape="box"];2178[label="vyw3001",fontsize=16,color="green",shape="box"];2179[label="vyw501",fontsize=16,color="green",shape="box"];2180[label="vyw3001",fontsize=16,color="green",shape="box"];2181[label="vyw501",fontsize=16,color="green",shape="box"];2182[label="vyw3001",fontsize=16,color="green",shape="box"];2183[label="vyw501",fontsize=16,color="green",shape="box"];2184[label="vyw3001",fontsize=16,color="green",shape="box"];2185[label="vyw501",fontsize=16,color="green",shape="box"];2186[label="vyw3001",fontsize=16,color="green",shape="box"];2187[label="vyw501",fontsize=16,color="green",shape="box"];2188[label="vyw3001",fontsize=16,color="green",shape="box"];2189[label="vyw501",fontsize=16,color="green",shape="box"];2190[label="vyw3001",fontsize=16,color="green",shape="box"];2191[label="vyw501",fontsize=16,color="green",shape="box"];2192[label="vyw3001",fontsize=16,color="green",shape="box"];2193[label="vyw501",fontsize=16,color="green",shape="box"];2194[label="vyw3001",fontsize=16,color="green",shape="box"];2195[label="vyw501",fontsize=16,color="green",shape="box"];2196[label="vyw3001",fontsize=16,color="green",shape="box"];2197[label="vyw500",fontsize=16,color="green",shape="box"];2198[label="vyw3000",fontsize=16,color="green",shape="box"];2199[label="vyw500",fontsize=16,color="green",shape="box"];2200[label="vyw3000",fontsize=16,color="green",shape="box"];2201[label="vyw500",fontsize=16,color="green",shape="box"];2202[label="vyw3000",fontsize=16,color="green",shape="box"];2203[label="vyw500",fontsize=16,color="green",shape="box"];2204[label="vyw3000",fontsize=16,color="green",shape="box"];2205[label="vyw500",fontsize=16,color="green",shape="box"];2206[label="vyw3000",fontsize=16,color="green",shape="box"];2207[label="vyw500",fontsize=16,color="green",shape="box"];2208[label="vyw3000",fontsize=16,color="green",shape="box"];2209[label="vyw500",fontsize=16,color="green",shape="box"];2210[label="vyw3000",fontsize=16,color="green",shape="box"];2211[label="vyw500",fontsize=16,color="green",shape="box"];2212[label="vyw3000",fontsize=16,color="green",shape="box"];2213[label="vyw500",fontsize=16,color="green",shape="box"];2214[label="vyw3000",fontsize=16,color="green",shape="box"];2215[label="vyw500",fontsize=16,color="green",shape="box"];2216[label="vyw3000",fontsize=16,color="green",shape="box"];2217[label="vyw500",fontsize=16,color="green",shape="box"];2218[label="vyw3000",fontsize=16,color="green",shape="box"];2219[label="vyw500",fontsize=16,color="green",shape="box"];2220[label="vyw3000",fontsize=16,color="green",shape="box"];2221[label="vyw500",fontsize=16,color="green",shape="box"];2222[label="vyw3000",fontsize=16,color="green",shape="box"];2223[label="vyw500",fontsize=16,color="green",shape="box"];2224[label="vyw3000",fontsize=16,color="green",shape="box"];2225 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2225[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2225 -> 2353[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2225 -> 2354[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2226 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2226[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2226 -> 2355[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2226 -> 2356[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2227 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2227[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2227 -> 2357[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2227 -> 2358[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2228 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2228[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2228 -> 2359[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2228 -> 2360[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2229 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2229[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2229 -> 2361[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2229 -> 2362[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2230 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2230[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2230 -> 2363[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2230 -> 2364[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2231 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2231[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2231 -> 2365[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2231 -> 2366[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2232 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2232[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2232 -> 2367[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2232 -> 2368[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2233 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2233[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2233 -> 2369[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2233 -> 2370[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2234 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2234[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2234 -> 2371[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2234 -> 2372[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2235 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2235[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2235 -> 2373[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2235 -> 2374[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2236 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2236[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2236 -> 2375[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2236 -> 2376[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2237 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2237[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2237 -> 2377[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2237 -> 2378[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2238 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2238[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2238 -> 2379[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2238 -> 2380[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2239 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2239[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2239 -> 2381[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2239 -> 2382[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2240 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2240[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2240 -> 2383[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2240 -> 2384[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2241 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2241[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2241 -> 2385[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2241 -> 2386[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2242 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2242[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2242 -> 2387[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2242 -> 2388[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2243 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2243[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2243 -> 2389[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2243 -> 2390[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2244 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2244[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2244 -> 2391[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2244 -> 2392[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2245 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2245[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2245 -> 2393[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2245 -> 2394[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2246 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2246[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2246 -> 2395[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2246 -> 2396[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2247 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2247[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2247 -> 2397[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2247 -> 2398[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2248 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2248[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2248 -> 2399[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2248 -> 2400[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2249 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2249[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2249 -> 2401[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2249 -> 2402[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2250 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2250[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2250 -> 2403[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2250 -> 2404[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2251 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2251[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2251 -> 2405[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2251 -> 2406[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2252 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2252[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2252 -> 2407[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2252 -> 2408[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2253[label="vyw500",fontsize=16,color="green",shape="box"];2254[label="vyw3000",fontsize=16,color="green",shape="box"];2255[label="vyw500",fontsize=16,color="green",shape="box"];2256[label="vyw3000",fontsize=16,color="green",shape="box"];2257[label="vyw500",fontsize=16,color="green",shape="box"];2258[label="vyw3000",fontsize=16,color="green",shape="box"];2259[label="vyw500",fontsize=16,color="green",shape="box"];2260[label="vyw3000",fontsize=16,color="green",shape="box"];2261[label="vyw500",fontsize=16,color="green",shape="box"];2262[label="vyw3000",fontsize=16,color="green",shape="box"];2263[label="vyw500",fontsize=16,color="green",shape="box"];2264[label="vyw3000",fontsize=16,color="green",shape="box"];2265[label="vyw500",fontsize=16,color="green",shape="box"];2266[label="vyw3000",fontsize=16,color="green",shape="box"];2267[label="vyw500",fontsize=16,color="green",shape="box"];2268[label="vyw3000",fontsize=16,color="green",shape="box"];2269[label="vyw500",fontsize=16,color="green",shape="box"];2270[label="vyw3000",fontsize=16,color="green",shape="box"];2271[label="vyw500",fontsize=16,color="green",shape="box"];2272[label="vyw3000",fontsize=16,color="green",shape="box"];2273[label="vyw500",fontsize=16,color="green",shape="box"];2274[label="vyw3000",fontsize=16,color="green",shape="box"];2275[label="vyw500",fontsize=16,color="green",shape="box"];2276[label="vyw3000",fontsize=16,color="green",shape="box"];2277[label="vyw500",fontsize=16,color="green",shape="box"];2278[label="vyw3000",fontsize=16,color="green",shape="box"];2279[label="vyw500",fontsize=16,color="green",shape="box"];2280[label="vyw3000",fontsize=16,color="green",shape="box"];2281[label="vyw500",fontsize=16,color="green",shape="box"];2282[label="vyw3001",fontsize=16,color="green",shape="box"];2283[label="vyw501",fontsize=16,color="green",shape="box"];2284[label="vyw3000",fontsize=16,color="green",shape="box"];2285 -> 1867[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2285[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];2285 -> 2409[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2285 -> 2410[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2286[label="False",fontsize=16,color="green",shape="box"];2287[label="False",fontsize=16,color="green",shape="box"];2288[label="True",fontsize=16,color="green",shape="box"];2289[label="False",fontsize=16,color="green",shape="box"];2290[label="True",fontsize=16,color="green",shape="box"];2291 -> 1867[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2291[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];2291 -> 2411[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2291 -> 2412[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2292[label="False",fontsize=16,color="green",shape="box"];2293[label="False",fontsize=16,color="green",shape="box"];2294[label="True",fontsize=16,color="green",shape="box"];2295[label="False",fontsize=16,color="green",shape="box"];2296[label="True",fontsize=16,color="green",shape="box"];2297[label="vyw500",fontsize=16,color="green",shape="box"];2298[label="vyw3000",fontsize=16,color="green",shape="box"];2299[label="vyw500",fontsize=16,color="green",shape="box"];2300[label="vyw3000",fontsize=16,color="green",shape="box"];2301[label="vyw500",fontsize=16,color="green",shape="box"];2302[label="vyw3000",fontsize=16,color="green",shape="box"];2303[label="vyw500",fontsize=16,color="green",shape="box"];2304[label="vyw3000",fontsize=16,color="green",shape="box"];2305[label="vyw500",fontsize=16,color="green",shape="box"];2306[label="vyw3000",fontsize=16,color="green",shape="box"];2307[label="vyw500",fontsize=16,color="green",shape="box"];2308[label="vyw3000",fontsize=16,color="green",shape="box"];2309[label="vyw500",fontsize=16,color="green",shape="box"];2310[label="vyw3000",fontsize=16,color="green",shape="box"];2311[label="vyw500",fontsize=16,color="green",shape="box"];2312[label="vyw3000",fontsize=16,color="green",shape="box"];2313[label="vyw500",fontsize=16,color="green",shape="box"];2314[label="vyw3000",fontsize=16,color="green",shape="box"];2315[label="vyw500",fontsize=16,color="green",shape="box"];2316[label="vyw3000",fontsize=16,color="green",shape="box"];2317[label="vyw500",fontsize=16,color="green",shape="box"];2318[label="vyw3000",fontsize=16,color="green",shape="box"];2319[label="vyw500",fontsize=16,color="green",shape="box"];2320[label="vyw3000",fontsize=16,color="green",shape="box"];2321[label="vyw500",fontsize=16,color="green",shape="box"];2322[label="vyw3000",fontsize=16,color="green",shape="box"];2323[label="vyw500",fontsize=16,color="green",shape="box"];2324[label="vyw3000",fontsize=16,color="green",shape="box"];1741[label="vyw21 == vyw16",fontsize=16,color="blue",shape="box"];3694[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3694[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3694 -> 1761[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3695[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3695[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3695 -> 1762[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3696[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3696[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3696 -> 1763[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3697[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3697[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3697 -> 1764[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3698[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3698[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3698 -> 1765[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3699[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3699[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3699 -> 1766[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3700[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3700[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3700 -> 1767[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3701[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3701[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3701 -> 1768[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3702[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3702[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3702 -> 1769[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3703[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3703[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3703 -> 1770[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3704[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3704[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3704 -> 1771[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3705[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3705[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3705 -> 1772[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3706[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3706[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3706 -> 1773[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3707[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3707[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3707 -> 1774[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2325[label="GT",fontsize=16,color="green",shape="box"];2326[label="False <= vyw3200",fontsize=16,color="burlywood",shape="box"];3708[label="vyw3200/False",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3708[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3708 -> 2413[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3709[label="vyw3200/True",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3709[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3709 -> 2414[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2327[label="True <= vyw3200",fontsize=16,color="burlywood",shape="box"];3710[label="vyw3200/False",fontsize=10,color="white",style="solid",shape="box"];2327 -> 3710[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3710 -> 2415[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3711[label="vyw3200/True",fontsize=10,color="white",style="solid",shape="box"];2327 -> 3711[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3711 -> 2416[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2328[label="compare vyw3100 vyw3200 /= GT",fontsize=16,color="black",shape="box"];2328 -> 2417[label="",style="solid", color="black", weight=3]; 24.96/10.77 2329[label="compare vyw3100 vyw3200 /= GT",fontsize=16,color="black",shape="box"];2329 -> 2418[label="",style="solid", color="black", weight=3]; 24.96/10.77 2330[label="Nothing <= vyw3200",fontsize=16,color="burlywood",shape="box"];3712[label="vyw3200/Nothing",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3712[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3712 -> 2419[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3713[label="vyw3200/Just vyw32000",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3713[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3713 -> 2420[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2331[label="Just vyw31000 <= vyw3200",fontsize=16,color="burlywood",shape="box"];3714[label="vyw3200/Nothing",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3714[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3714 -> 2421[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3715[label="vyw3200/Just vyw32000",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3715[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3715 -> 2422[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2332[label="compare vyw3100 vyw3200 /= GT",fontsize=16,color="black",shape="box"];2332 -> 2423[label="",style="solid", color="black", weight=3]; 24.96/10.77 2333[label="(vyw31000,vyw31001,vyw31002) <= vyw3200",fontsize=16,color="burlywood",shape="box"];3716[label="vyw3200/(vyw32000,vyw32001,vyw32002)",fontsize=10,color="white",style="solid",shape="box"];2333 -> 3716[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3716 -> 2424[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2334[label="Left vyw31000 <= vyw3200",fontsize=16,color="burlywood",shape="box"];3717[label="vyw3200/Left vyw32000",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3717[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3717 -> 2425[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3718[label="vyw3200/Right vyw32000",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3718[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3718 -> 2426[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2335[label="Right vyw31000 <= vyw3200",fontsize=16,color="burlywood",shape="box"];3719[label="vyw3200/Left vyw32000",fontsize=10,color="white",style="solid",shape="box"];2335 -> 3719[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3719 -> 2427[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3720[label="vyw3200/Right vyw32000",fontsize=10,color="white",style="solid",shape="box"];2335 -> 3720[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3720 -> 2428[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2336[label="compare vyw3100 vyw3200 /= GT",fontsize=16,color="black",shape="box"];2336 -> 2429[label="",style="solid", color="black", weight=3]; 24.96/10.77 2337[label="compare vyw3100 vyw3200 /= GT",fontsize=16,color="black",shape="box"];2337 -> 2430[label="",style="solid", color="black", weight=3]; 24.96/10.77 2338[label="compare vyw3100 vyw3200 /= GT",fontsize=16,color="black",shape="box"];2338 -> 2431[label="",style="solid", color="black", weight=3]; 24.96/10.77 2339[label="LT <= vyw3200",fontsize=16,color="burlywood",shape="box"];3721[label="vyw3200/LT",fontsize=10,color="white",style="solid",shape="box"];2339 -> 3721[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3721 -> 2432[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3722[label="vyw3200/EQ",fontsize=10,color="white",style="solid",shape="box"];2339 -> 3722[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3722 -> 2433[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3723[label="vyw3200/GT",fontsize=10,color="white",style="solid",shape="box"];2339 -> 3723[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3723 -> 2434[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2340[label="EQ <= vyw3200",fontsize=16,color="burlywood",shape="box"];3724[label="vyw3200/LT",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3724[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3724 -> 2435[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3725[label="vyw3200/EQ",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3725[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3725 -> 2436[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3726[label="vyw3200/GT",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3726[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3726 -> 2437[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2341[label="GT <= vyw3200",fontsize=16,color="burlywood",shape="box"];3727[label="vyw3200/LT",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3727[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3727 -> 2438[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3728[label="vyw3200/EQ",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3728[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3728 -> 2439[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3729[label="vyw3200/GT",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3729[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3729 -> 2440[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2342[label="compare vyw3100 vyw3200 /= GT",fontsize=16,color="black",shape="box"];2342 -> 2441[label="",style="solid", color="black", weight=3]; 24.96/10.77 2343[label="compare vyw3100 vyw3200 /= GT",fontsize=16,color="black",shape="box"];2343 -> 2442[label="",style="solid", color="black", weight=3]; 24.96/10.77 2344[label="(vyw31000,vyw31001) <= vyw3200",fontsize=16,color="burlywood",shape="box"];3730[label="vyw3200/(vyw32000,vyw32001)",fontsize=10,color="white",style="solid",shape="box"];2344 -> 3730[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3730 -> 2443[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2345[label="compare0 (Just vyw86) (Just vyw87) otherwise",fontsize=16,color="black",shape="box"];2345 -> 2444[label="",style="solid", color="black", weight=3]; 24.96/10.77 2346[label="LT",fontsize=16,color="green",shape="box"];2347 -> 1867[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2347[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];2347 -> 2445[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2347 -> 2446[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 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="primMulInt (Pos vyw5000) vyw3001",fontsize=16,color="burlywood",shape="box"];3731[label="vyw3001/Pos vyw30010",fontsize=10,color="white",style="solid",shape="box"];2351 -> 3731[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3731 -> 2447[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3732[label="vyw3001/Neg vyw30010",fontsize=10,color="white",style="solid",shape="box"];2351 -> 3732[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3732 -> 2448[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2352[label="primMulInt (Neg vyw5000) vyw3001",fontsize=16,color="burlywood",shape="box"];3733[label="vyw3001/Pos vyw30010",fontsize=10,color="white",style="solid",shape="box"];2352 -> 3733[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3733 -> 2449[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3734[label="vyw3001/Neg vyw30010",fontsize=10,color="white",style="solid",shape="box"];2352 -> 3734[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3734 -> 2450[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2353[label="vyw502",fontsize=16,color="green",shape="box"];2354[label="vyw3002",fontsize=16,color="green",shape="box"];2355[label="vyw502",fontsize=16,color="green",shape="box"];2356[label="vyw3002",fontsize=16,color="green",shape="box"];2357[label="vyw502",fontsize=16,color="green",shape="box"];2358[label="vyw3002",fontsize=16,color="green",shape="box"];2359[label="vyw502",fontsize=16,color="green",shape="box"];2360[label="vyw3002",fontsize=16,color="green",shape="box"];2361[label="vyw502",fontsize=16,color="green",shape="box"];2362[label="vyw3002",fontsize=16,color="green",shape="box"];2363[label="vyw502",fontsize=16,color="green",shape="box"];2364[label="vyw3002",fontsize=16,color="green",shape="box"];2365[label="vyw502",fontsize=16,color="green",shape="box"];2366[label="vyw3002",fontsize=16,color="green",shape="box"];2367[label="vyw502",fontsize=16,color="green",shape="box"];2368[label="vyw3002",fontsize=16,color="green",shape="box"];2369[label="vyw502",fontsize=16,color="green",shape="box"];2370[label="vyw3002",fontsize=16,color="green",shape="box"];2371[label="vyw502",fontsize=16,color="green",shape="box"];2372[label="vyw3002",fontsize=16,color="green",shape="box"];2373[label="vyw502",fontsize=16,color="green",shape="box"];2374[label="vyw3002",fontsize=16,color="green",shape="box"];2375[label="vyw502",fontsize=16,color="green",shape="box"];2376[label="vyw3002",fontsize=16,color="green",shape="box"];2377[label="vyw502",fontsize=16,color="green",shape="box"];2378[label="vyw3002",fontsize=16,color="green",shape="box"];2379[label="vyw502",fontsize=16,color="green",shape="box"];2380[label="vyw3002",fontsize=16,color="green",shape="box"];2381[label="vyw501",fontsize=16,color="green",shape="box"];2382[label="vyw3001",fontsize=16,color="green",shape="box"];2383[label="vyw501",fontsize=16,color="green",shape="box"];2384[label="vyw3001",fontsize=16,color="green",shape="box"];2385[label="vyw501",fontsize=16,color="green",shape="box"];2386[label="vyw3001",fontsize=16,color="green",shape="box"];2387[label="vyw501",fontsize=16,color="green",shape="box"];2388[label="vyw3001",fontsize=16,color="green",shape="box"];2389[label="vyw501",fontsize=16,color="green",shape="box"];2390[label="vyw3001",fontsize=16,color="green",shape="box"];2391[label="vyw501",fontsize=16,color="green",shape="box"];2392[label="vyw3001",fontsize=16,color="green",shape="box"];2393[label="vyw501",fontsize=16,color="green",shape="box"];2394[label="vyw3001",fontsize=16,color="green",shape="box"];2395[label="vyw501",fontsize=16,color="green",shape="box"];2396[label="vyw3001",fontsize=16,color="green",shape="box"];2397[label="vyw501",fontsize=16,color="green",shape="box"];2398[label="vyw3001",fontsize=16,color="green",shape="box"];2399[label="vyw501",fontsize=16,color="green",shape="box"];2400[label="vyw3001",fontsize=16,color="green",shape="box"];2401[label="vyw501",fontsize=16,color="green",shape="box"];2402[label="vyw3001",fontsize=16,color="green",shape="box"];2403[label="vyw501",fontsize=16,color="green",shape="box"];2404[label="vyw3001",fontsize=16,color="green",shape="box"];2405[label="vyw501",fontsize=16,color="green",shape="box"];2406[label="vyw3001",fontsize=16,color="green",shape="box"];2407[label="vyw501",fontsize=16,color="green",shape="box"];2408[label="vyw3001",fontsize=16,color="green",shape="box"];2409[label="vyw30000",fontsize=16,color="green",shape="box"];2410[label="vyw5000",fontsize=16,color="green",shape="box"];2411[label="vyw30000",fontsize=16,color="green",shape="box"];2412[label="vyw5000",fontsize=16,color="green",shape="box"];1761 -> 1724[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1761[label="vyw21 == vyw16",fontsize=16,color="magenta"];1761 -> 1803[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1761 -> 1804[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1762 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1762[label="vyw21 == vyw16",fontsize=16,color="magenta"];1762 -> 1805[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1762 -> 1806[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1763 -> 1726[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1763[label="vyw21 == vyw16",fontsize=16,color="magenta"];1763 -> 1807[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1763 -> 1808[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1764 -> 1727[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1764[label="vyw21 == vyw16",fontsize=16,color="magenta"];1764 -> 1809[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1764 -> 1810[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1765 -> 1728[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1765[label="vyw21 == vyw16",fontsize=16,color="magenta"];1765 -> 1811[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1765 -> 1812[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1766 -> 1729[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1766[label="vyw21 == vyw16",fontsize=16,color="magenta"];1766 -> 1813[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1766 -> 1814[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1767 -> 1730[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1767[label="vyw21 == vyw16",fontsize=16,color="magenta"];1767 -> 1815[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1767 -> 1816[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1768 -> 1731[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1768[label="vyw21 == vyw16",fontsize=16,color="magenta"];1768 -> 1817[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1768 -> 1818[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1769 -> 1732[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1769[label="vyw21 == vyw16",fontsize=16,color="magenta"];1769 -> 1819[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1769 -> 1820[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1770 -> 1733[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1770[label="vyw21 == vyw16",fontsize=16,color="magenta"];1770 -> 1821[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1770 -> 1822[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1771 -> 1734[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1771[label="vyw21 == vyw16",fontsize=16,color="magenta"];1771 -> 1823[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1771 -> 1824[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1772 -> 1735[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1772[label="vyw21 == vyw16",fontsize=16,color="magenta"];1772 -> 1825[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1772 -> 1826[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1773 -> 1736[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1773[label="vyw21 == vyw16",fontsize=16,color="magenta"];1773 -> 1827[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1773 -> 1828[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1774 -> 1737[label="",style="dashed", color="red", weight=0]; 24.96/10.77 1774[label="vyw21 == vyw16",fontsize=16,color="magenta"];1774 -> 1829[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 1774 -> 1830[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2413[label="False <= False",fontsize=16,color="black",shape="box"];2413 -> 2451[label="",style="solid", color="black", weight=3]; 24.96/10.77 2414[label="False <= True",fontsize=16,color="black",shape="box"];2414 -> 2452[label="",style="solid", color="black", weight=3]; 24.96/10.77 2415[label="True <= False",fontsize=16,color="black",shape="box"];2415 -> 2453[label="",style="solid", color="black", weight=3]; 24.96/10.77 2416[label="True <= True",fontsize=16,color="black",shape="box"];2416 -> 2454[label="",style="solid", color="black", weight=3]; 24.96/10.77 2417 -> 2455[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2417[label="not (compare vyw3100 vyw3200 == GT)",fontsize=16,color="magenta"];2417 -> 2456[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2418 -> 2455[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2418[label="not (compare vyw3100 vyw3200 == GT)",fontsize=16,color="magenta"];2418 -> 2457[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2419[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2419 -> 2464[label="",style="solid", color="black", weight=3]; 24.96/10.77 2420[label="Nothing <= Just vyw32000",fontsize=16,color="black",shape="box"];2420 -> 2465[label="",style="solid", color="black", weight=3]; 24.96/10.77 2421[label="Just vyw31000 <= Nothing",fontsize=16,color="black",shape="box"];2421 -> 2466[label="",style="solid", color="black", weight=3]; 24.96/10.77 2422[label="Just vyw31000 <= Just vyw32000",fontsize=16,color="black",shape="box"];2422 -> 2467[label="",style="solid", color="black", weight=3]; 24.96/10.77 2423 -> 2455[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2423[label="not (compare vyw3100 vyw3200 == GT)",fontsize=16,color="magenta"];2423 -> 2458[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2424[label="(vyw31000,vyw31001,vyw31002) <= (vyw32000,vyw32001,vyw32002)",fontsize=16,color="black",shape="box"];2424 -> 2468[label="",style="solid", color="black", weight=3]; 24.96/10.77 2425[label="Left vyw31000 <= Left vyw32000",fontsize=16,color="black",shape="box"];2425 -> 2469[label="",style="solid", color="black", weight=3]; 24.96/10.77 2426[label="Left vyw31000 <= Right vyw32000",fontsize=16,color="black",shape="box"];2426 -> 2470[label="",style="solid", color="black", weight=3]; 24.96/10.77 2427[label="Right vyw31000 <= Left vyw32000",fontsize=16,color="black",shape="box"];2427 -> 2471[label="",style="solid", color="black", weight=3]; 24.96/10.77 2428[label="Right vyw31000 <= Right vyw32000",fontsize=16,color="black",shape="box"];2428 -> 2472[label="",style="solid", color="black", weight=3]; 24.96/10.77 2429 -> 2455[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2429[label="not (compare vyw3100 vyw3200 == GT)",fontsize=16,color="magenta"];2429 -> 2459[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2430 -> 2455[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2430[label="not (compare vyw3100 vyw3200 == GT)",fontsize=16,color="magenta"];2430 -> 2460[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2431 -> 2455[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2431[label="not (compare vyw3100 vyw3200 == GT)",fontsize=16,color="magenta"];2431 -> 2461[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2432[label="LT <= LT",fontsize=16,color="black",shape="box"];2432 -> 2473[label="",style="solid", color="black", weight=3]; 24.96/10.77 2433[label="LT <= EQ",fontsize=16,color="black",shape="box"];2433 -> 2474[label="",style="solid", color="black", weight=3]; 24.96/10.77 2434[label="LT <= GT",fontsize=16,color="black",shape="box"];2434 -> 2475[label="",style="solid", color="black", weight=3]; 24.96/10.77 2435[label="EQ <= LT",fontsize=16,color="black",shape="box"];2435 -> 2476[label="",style="solid", color="black", weight=3]; 24.96/10.77 2436[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2436 -> 2477[label="",style="solid", color="black", weight=3]; 24.96/10.77 2437[label="EQ <= GT",fontsize=16,color="black",shape="box"];2437 -> 2478[label="",style="solid", color="black", weight=3]; 24.96/10.77 2438[label="GT <= LT",fontsize=16,color="black",shape="box"];2438 -> 2479[label="",style="solid", color="black", weight=3]; 24.96/10.77 2439[label="GT <= EQ",fontsize=16,color="black",shape="box"];2439 -> 2480[label="",style="solid", color="black", weight=3]; 24.96/10.77 2440[label="GT <= GT",fontsize=16,color="black",shape="box"];2440 -> 2481[label="",style="solid", color="black", weight=3]; 24.96/10.77 2441 -> 2455[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2441[label="not (compare vyw3100 vyw3200 == GT)",fontsize=16,color="magenta"];2441 -> 2462[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2442 -> 2455[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2442[label="not (compare vyw3100 vyw3200 == GT)",fontsize=16,color="magenta"];2442 -> 2463[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2443[label="(vyw31000,vyw31001) <= (vyw32000,vyw32001)",fontsize=16,color="black",shape="box"];2443 -> 2482[label="",style="solid", color="black", weight=3]; 24.96/10.77 2444[label="compare0 (Just vyw86) (Just vyw87) True",fontsize=16,color="black",shape="box"];2444 -> 2483[label="",style="solid", color="black", weight=3]; 24.96/10.77 2445[label="vyw30000",fontsize=16,color="green",shape="box"];2446[label="vyw5000",fontsize=16,color="green",shape="box"];2447[label="primMulInt (Pos vyw5000) (Pos vyw30010)",fontsize=16,color="black",shape="box"];2447 -> 2484[label="",style="solid", color="black", weight=3]; 24.96/10.77 2448[label="primMulInt (Pos vyw5000) (Neg vyw30010)",fontsize=16,color="black",shape="box"];2448 -> 2485[label="",style="solid", color="black", weight=3]; 24.96/10.77 2449[label="primMulInt (Neg vyw5000) (Pos vyw30010)",fontsize=16,color="black",shape="box"];2449 -> 2486[label="",style="solid", color="black", weight=3]; 24.96/10.77 2450[label="primMulInt (Neg vyw5000) (Neg vyw30010)",fontsize=16,color="black",shape="box"];2450 -> 2487[label="",style="solid", color="black", weight=3]; 24.96/10.77 1803[label="vyw21",fontsize=16,color="green",shape="box"];1804[label="vyw16",fontsize=16,color="green",shape="box"];1805[label="vyw21",fontsize=16,color="green",shape="box"];1806[label="vyw16",fontsize=16,color="green",shape="box"];1807[label="vyw21",fontsize=16,color="green",shape="box"];1808[label="vyw16",fontsize=16,color="green",shape="box"];1809[label="vyw21",fontsize=16,color="green",shape="box"];1810[label="vyw16",fontsize=16,color="green",shape="box"];1811[label="vyw21",fontsize=16,color="green",shape="box"];1812[label="vyw16",fontsize=16,color="green",shape="box"];1813[label="vyw21",fontsize=16,color="green",shape="box"];1814[label="vyw16",fontsize=16,color="green",shape="box"];1815[label="vyw21",fontsize=16,color="green",shape="box"];1816[label="vyw16",fontsize=16,color="green",shape="box"];1817[label="vyw21",fontsize=16,color="green",shape="box"];1818[label="vyw16",fontsize=16,color="green",shape="box"];1819[label="vyw21",fontsize=16,color="green",shape="box"];1820[label="vyw16",fontsize=16,color="green",shape="box"];1821[label="vyw21",fontsize=16,color="green",shape="box"];1822[label="vyw16",fontsize=16,color="green",shape="box"];1823[label="vyw21",fontsize=16,color="green",shape="box"];1824[label="vyw16",fontsize=16,color="green",shape="box"];1825[label="vyw21",fontsize=16,color="green",shape="box"];1826[label="vyw16",fontsize=16,color="green",shape="box"];1827[label="vyw21",fontsize=16,color="green",shape="box"];1828[label="vyw16",fontsize=16,color="green",shape="box"];1829[label="vyw21",fontsize=16,color="green",shape="box"];1830[label="vyw16",fontsize=16,color="green",shape="box"];2451[label="True",fontsize=16,color="green",shape="box"];2452[label="True",fontsize=16,color="green",shape="box"];2453[label="False",fontsize=16,color="green",shape="box"];2454[label="True",fontsize=16,color="green",shape="box"];2456 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2456[label="compare vyw3100 vyw3200 == GT",fontsize=16,color="magenta"];2456 -> 2488[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2456 -> 2489[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2455[label="not vyw94",fontsize=16,color="burlywood",shape="triangle"];3735[label="vyw94/False",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3735[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3735 -> 2490[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3736[label="vyw94/True",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3736[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3736 -> 2491[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2457 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2457[label="compare vyw3100 vyw3200 == GT",fontsize=16,color="magenta"];2457 -> 2492[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2457 -> 2493[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 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="vyw31000 <= vyw32000",fontsize=16,color="blue",shape="box"];3737[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3737[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3737 -> 2506[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3738[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3738[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3738 -> 2507[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3739[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3739[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3739 -> 2508[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3740[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3740[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3740 -> 2509[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3741[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3741[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3741 -> 2510[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3742[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3742[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3742 -> 2511[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3743[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3743[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3743 -> 2512[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3744[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3744[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3744 -> 2513[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3745[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3745[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3745 -> 2514[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3746[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3746[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3746 -> 2515[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3747[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3747[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3747 -> 2516[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3748[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3748[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3748 -> 2517[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3749[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3749[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3749 -> 2518[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3750[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3750[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3750 -> 2519[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2458 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2458[label="compare vyw3100 vyw3200 == GT",fontsize=16,color="magenta"];2458 -> 2494[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2458 -> 2495[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2468 -> 2592[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2468[label="vyw31000 < vyw32000 || vyw31000 == vyw32000 && (vyw31001 < vyw32001 || vyw31001 == vyw32001 && vyw31002 <= vyw32002)",fontsize=16,color="magenta"];2468 -> 2593[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2468 -> 2594[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2469[label="vyw31000 <= vyw32000",fontsize=16,color="blue",shape="box"];3751[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3751[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3751 -> 2525[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3752[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3752[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3752 -> 2526[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3753[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3753[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3753 -> 2527[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3754[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3754[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3754 -> 2528[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3755[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3755[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3755 -> 2529[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3756[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3756[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3756 -> 2530[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3757[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3757[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3757 -> 2531[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3758[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3758[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3758 -> 2532[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3759[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3759[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3759 -> 2533[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3760[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3760[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3760 -> 2534[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3761[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3761[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3761 -> 2535[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3762[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3762[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3762 -> 2536[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3763[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3763[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3763 -> 2537[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3764[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2469 -> 3764[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3764 -> 2538[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2470[label="True",fontsize=16,color="green",shape="box"];2471[label="False",fontsize=16,color="green",shape="box"];2472[label="vyw31000 <= vyw32000",fontsize=16,color="blue",shape="box"];3765[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3765[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3765 -> 2539[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3766[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3766[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3766 -> 2540[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3767[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3767[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3767 -> 2541[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3768[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3768[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3768 -> 2542[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3769[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3769[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3769 -> 2543[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3770[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3770[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3770 -> 2544[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3771[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3771[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3771 -> 2545[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3772[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3772[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3772 -> 2546[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3773[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3773[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3773 -> 2547[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3774[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3774[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3774 -> 2548[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3775[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3775[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3775 -> 2549[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3776[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3776[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3776 -> 2550[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3777[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3777[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3777 -> 2551[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3778[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3778[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3778 -> 2552[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2459 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2459[label="compare vyw3100 vyw3200 == GT",fontsize=16,color="magenta"];2459 -> 2496[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2459 -> 2497[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2460 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2460[label="compare vyw3100 vyw3200 == GT",fontsize=16,color="magenta"];2460 -> 2498[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2460 -> 2499[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2461 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2461[label="compare vyw3100 vyw3200 == GT",fontsize=16,color="magenta"];2461 -> 2500[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2461 -> 2501[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2473[label="True",fontsize=16,color="green",shape="box"];2474[label="True",fontsize=16,color="green",shape="box"];2475[label="True",fontsize=16,color="green",shape="box"];2476[label="False",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="False",fontsize=16,color="green",shape="box"];2481[label="True",fontsize=16,color="green",shape="box"];2462 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2462[label="compare vyw3100 vyw3200 == GT",fontsize=16,color="magenta"];2462 -> 2502[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2462 -> 2503[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2463 -> 43[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2463[label="compare vyw3100 vyw3200 == GT",fontsize=16,color="magenta"];2463 -> 2504[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2463 -> 2505[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2482 -> 2592[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2482[label="vyw31000 < vyw32000 || vyw31000 == vyw32000 && vyw31001 <= vyw32001",fontsize=16,color="magenta"];2482 -> 2595[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2482 -> 2596[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2483[label="GT",fontsize=16,color="green",shape="box"];2484[label="Pos (primMulNat vyw5000 vyw30010)",fontsize=16,color="green",shape="box"];2484 -> 2553[label="",style="dashed", color="green", weight=3]; 24.96/10.77 2485[label="Neg (primMulNat vyw5000 vyw30010)",fontsize=16,color="green",shape="box"];2485 -> 2554[label="",style="dashed", color="green", weight=3]; 24.96/10.77 2486[label="Neg (primMulNat vyw5000 vyw30010)",fontsize=16,color="green",shape="box"];2486 -> 2555[label="",style="dashed", color="green", weight=3]; 24.96/10.77 2487[label="Pos (primMulNat vyw5000 vyw30010)",fontsize=16,color="green",shape="box"];2487 -> 2556[label="",style="dashed", color="green", weight=3]; 24.96/10.77 2488[label="compare vyw3100 vyw3200",fontsize=16,color="burlywood",shape="triangle"];3779[label="vyw3100/Integer vyw31000",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3779[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3779 -> 2557[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 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]; 24.96/10.77 2491[label="not True",fontsize=16,color="black",shape="box"];2491 -> 2559[label="",style="solid", color="black", weight=3]; 24.96/10.77 2492[label="compare vyw3100 vyw3200",fontsize=16,color="burlywood",shape="triangle"];3780[label="vyw3100/vyw31000 :% vyw31001",fontsize=10,color="white",style="solid",shape="box"];2492 -> 3780[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3780 -> 2560[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2493[label="GT",fontsize=16,color="green",shape="box"];2506 -> 2136[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2506[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2506 -> 2561[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2506 -> 2562[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2507 -> 2137[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2507[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2507 -> 2563[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2507 -> 2564[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2508 -> 2138[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2508[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2508 -> 2565[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2508 -> 2566[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2509 -> 2139[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2509[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2509 -> 2567[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2509 -> 2568[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2510 -> 2140[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2510[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2510 -> 2569[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2510 -> 2570[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2511 -> 2141[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2511[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2511 -> 2571[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2511 -> 2572[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2512 -> 2142[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2512[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2512 -> 2573[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2512 -> 2574[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2513 -> 2143[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2513[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2513 -> 2575[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2513 -> 2576[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2514 -> 2144[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2514[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2514 -> 2577[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2514 -> 2578[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2515 -> 2145[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2515[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2515 -> 2579[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2515 -> 2580[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2516 -> 2146[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2516[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2516 -> 2581[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2516 -> 2582[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2517 -> 2147[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2517[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2517 -> 2583[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2517 -> 2584[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2518 -> 2148[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2518[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2518 -> 2585[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2518 -> 2586[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2519 -> 2149[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2519[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2519 -> 2587[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2519 -> 2588[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2494[label="compare vyw3100 vyw3200",fontsize=16,color="burlywood",shape="triangle"];3781[label="vyw3100/()",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3781[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3781 -> 2589[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2495[label="GT",fontsize=16,color="green",shape="box"];2593 -> 2012[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2593[label="vyw31000 == vyw32000 && (vyw31001 < vyw32001 || vyw31001 == vyw32001 && vyw31002 <= vyw32002)",fontsize=16,color="magenta"];2593 -> 2601[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2593 -> 2602[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2594[label="vyw31000 < vyw32000",fontsize=16,color="blue",shape="box"];3782[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3782[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3782 -> 2603[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3783[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3783[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3783 -> 2604[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3784[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3784[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3784 -> 2605[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3785[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3785[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3785 -> 2606[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3786[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3786[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3786 -> 2607[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3787[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3787[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3787 -> 2608[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3788[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3788[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3788 -> 2609[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3789[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3789[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3789 -> 2610[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3790[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3790[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3790 -> 2611[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3791[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3791[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3791 -> 2612[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3792[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3792[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3792 -> 2613[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3793[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3793[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3793 -> 2614[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3794[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3794[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3794 -> 2615[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3795[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3795[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3795 -> 2616[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2592[label="vyw100 || vyw101",fontsize=16,color="burlywood",shape="triangle"];3796[label="vyw100/False",fontsize=10,color="white",style="solid",shape="box"];2592 -> 3796[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3796 -> 2617[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3797[label="vyw100/True",fontsize=10,color="white",style="solid",shape="box"];2592 -> 3797[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3797 -> 2618[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2525 -> 2136[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2525[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2525 -> 2619[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2525 -> 2620[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2526 -> 2137[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2526[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2526 -> 2621[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2526 -> 2622[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2527 -> 2138[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2527[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2527 -> 2623[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2527 -> 2624[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2528 -> 2139[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2528[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2528 -> 2625[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2528 -> 2626[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2529 -> 2140[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2529[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2529 -> 2627[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2529 -> 2628[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2530 -> 2141[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2530[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2530 -> 2629[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2530 -> 2630[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2531 -> 2142[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2531[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2531 -> 2631[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2531 -> 2632[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2532 -> 2143[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2532[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2532 -> 2633[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2532 -> 2634[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2533 -> 2144[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2533[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2533 -> 2635[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2533 -> 2636[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2534 -> 2145[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2534[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2534 -> 2637[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2534 -> 2638[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2535 -> 2146[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2535[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2535 -> 2639[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2535 -> 2640[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2536 -> 2147[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2536[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2536 -> 2641[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2536 -> 2642[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2537 -> 2148[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2537[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2537 -> 2643[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2537 -> 2644[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2538 -> 2149[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2538[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2538 -> 2645[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2538 -> 2646[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2539 -> 2136[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2539[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2539 -> 2647[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2539 -> 2648[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2540 -> 2137[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2540[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2540 -> 2649[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2540 -> 2650[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2541 -> 2138[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2541[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2541 -> 2651[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2541 -> 2652[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2542 -> 2139[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2542[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2542 -> 2653[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2542 -> 2654[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2543 -> 2140[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2543[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2543 -> 2655[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2543 -> 2656[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2544 -> 2141[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2544[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2544 -> 2657[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2544 -> 2658[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2545 -> 2142[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2545[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2545 -> 2659[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2545 -> 2660[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2546 -> 2143[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2546[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2546 -> 2661[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2546 -> 2662[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2547 -> 2144[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2547[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2547 -> 2663[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2547 -> 2664[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2548 -> 2145[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2548[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2548 -> 2665[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2548 -> 2666[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2549 -> 2146[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2549[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2549 -> 2667[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2549 -> 2668[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2550 -> 2147[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2550[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2550 -> 2669[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2550 -> 2670[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2551 -> 2148[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2551[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2551 -> 2671[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2551 -> 2672[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2552 -> 2149[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2552[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];2552 -> 2673[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2552 -> 2674[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2496[label="compare vyw3100 vyw3200",fontsize=16,color="black",shape="triangle"];2496 -> 2675[label="",style="solid", color="black", weight=3]; 24.96/10.77 2497[label="GT",fontsize=16,color="green",shape="box"];2498[label="compare vyw3100 vyw3200",fontsize=16,color="black",shape="triangle"];2498 -> 2676[label="",style="solid", color="black", weight=3]; 24.96/10.77 2499[label="GT",fontsize=16,color="green",shape="box"];2500[label="compare vyw3100 vyw3200",fontsize=16,color="burlywood",shape="triangle"];3798[label="vyw3100/vyw31000 : vyw31001",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3798[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3798 -> 2677[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3799[label="vyw3100/[]",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3799[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3799 -> 2678[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2501[label="GT",fontsize=16,color="green",shape="box"];2502[label="compare vyw3100 vyw3200",fontsize=16,color="black",shape="triangle"];2502 -> 2679[label="",style="solid", color="black", weight=3]; 24.96/10.77 2503[label="GT",fontsize=16,color="green",shape="box"];2504[label="compare vyw3100 vyw3200",fontsize=16,color="black",shape="triangle"];2504 -> 2680[label="",style="solid", color="black", weight=3]; 24.96/10.77 2505[label="GT",fontsize=16,color="green",shape="box"];2595 -> 2012[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2595[label="vyw31000 == vyw32000 && vyw31001 <= vyw32001",fontsize=16,color="magenta"];2595 -> 2681[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2595 -> 2682[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2596[label="vyw31000 < vyw32000",fontsize=16,color="blue",shape="box"];3800[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3800[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3800 -> 2683[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3801[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3801[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3801 -> 2684[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3802[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3802[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3802 -> 2685[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3803[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3803[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3803 -> 2686[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3804[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3804[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3804 -> 2687[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3805[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3805[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3805 -> 2688[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3806[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3806[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3806 -> 2689[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3807[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3807[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3807 -> 2690[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3808[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3808[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3808 -> 2691[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3809[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3809[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3809 -> 2692[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3810[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3810[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3810 -> 2693[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3811[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3811[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3811 -> 2694[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3812[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3812[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3812 -> 2695[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3813[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 3813[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3813 -> 2696[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2553[label="primMulNat vyw5000 vyw30010",fontsize=16,color="burlywood",shape="triangle"];3814[label="vyw5000/Succ vyw50000",fontsize=10,color="white",style="solid",shape="box"];2553 -> 3814[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3814 -> 2697[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3815[label="vyw5000/Zero",fontsize=10,color="white",style="solid",shape="box"];2553 -> 3815[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3815 -> 2698[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2554 -> 2553[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2554[label="primMulNat vyw5000 vyw30010",fontsize=16,color="magenta"];2554 -> 2699[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2555 -> 2553[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2555[label="primMulNat vyw5000 vyw30010",fontsize=16,color="magenta"];2555 -> 2700[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2556 -> 2553[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2556[label="primMulNat vyw5000 vyw30010",fontsize=16,color="magenta"];2556 -> 2701[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2556 -> 2702[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2557[label="compare (Integer vyw31000) vyw3200",fontsize=16,color="burlywood",shape="box"];3816[label="vyw3200/Integer vyw32000",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3816[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3816 -> 2703[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2558[label="True",fontsize=16,color="green",shape="box"];2559[label="False",fontsize=16,color="green",shape="box"];2560[label="compare (vyw31000 :% vyw31001) vyw3200",fontsize=16,color="burlywood",shape="box"];3817[label="vyw3200/vyw32000 :% vyw32001",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3817[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3817 -> 2704[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2561[label="vyw31000",fontsize=16,color="green",shape="box"];2562[label="vyw32000",fontsize=16,color="green",shape="box"];2563[label="vyw31000",fontsize=16,color="green",shape="box"];2564[label="vyw32000",fontsize=16,color="green",shape="box"];2565[label="vyw31000",fontsize=16,color="green",shape="box"];2566[label="vyw32000",fontsize=16,color="green",shape="box"];2567[label="vyw31000",fontsize=16,color="green",shape="box"];2568[label="vyw32000",fontsize=16,color="green",shape="box"];2569[label="vyw31000",fontsize=16,color="green",shape="box"];2570[label="vyw32000",fontsize=16,color="green",shape="box"];2571[label="vyw31000",fontsize=16,color="green",shape="box"];2572[label="vyw32000",fontsize=16,color="green",shape="box"];2573[label="vyw31000",fontsize=16,color="green",shape="box"];2574[label="vyw32000",fontsize=16,color="green",shape="box"];2575[label="vyw31000",fontsize=16,color="green",shape="box"];2576[label="vyw32000",fontsize=16,color="green",shape="box"];2577[label="vyw31000",fontsize=16,color="green",shape="box"];2578[label="vyw32000",fontsize=16,color="green",shape="box"];2579[label="vyw31000",fontsize=16,color="green",shape="box"];2580[label="vyw32000",fontsize=16,color="green",shape="box"];2581[label="vyw31000",fontsize=16,color="green",shape="box"];2582[label="vyw32000",fontsize=16,color="green",shape="box"];2583[label="vyw31000",fontsize=16,color="green",shape="box"];2584[label="vyw32000",fontsize=16,color="green",shape="box"];2585[label="vyw31000",fontsize=16,color="green",shape="box"];2586[label="vyw32000",fontsize=16,color="green",shape="box"];2587[label="vyw31000",fontsize=16,color="green",shape="box"];2588[label="vyw32000",fontsize=16,color="green",shape="box"];2589[label="compare () vyw3200",fontsize=16,color="burlywood",shape="box"];3818[label="vyw3200/()",fontsize=10,color="white",style="solid",shape="box"];2589 -> 3818[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3818 -> 2705[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2601 -> 2592[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2601[label="vyw31001 < vyw32001 || vyw31001 == vyw32001 && vyw31002 <= vyw32002",fontsize=16,color="magenta"];2601 -> 2706[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2601 -> 2707[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2602[label="vyw31000 == vyw32000",fontsize=16,color="blue",shape="box"];3819[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3819[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3819 -> 2708[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3820[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3820[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3820 -> 2709[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3821[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3821[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3821 -> 2710[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3822[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3822[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3822 -> 2711[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3823[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3823[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3823 -> 2712[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3824[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3824[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3824 -> 2713[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3825[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3825[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3825 -> 2714[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3826[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3826[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3826 -> 2715[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3827[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3827[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3827 -> 2716[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3828[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3828[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3828 -> 2717[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3829[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3829[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3829 -> 2718[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3830[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3830[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3830 -> 2719[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3831[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3831[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3831 -> 2720[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3832[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3832[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3832 -> 2721[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2603[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2603 -> 2722[label="",style="solid", color="black", weight=3]; 24.96/10.77 2604[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2604 -> 2723[label="",style="solid", color="black", weight=3]; 24.96/10.77 2605[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2605 -> 2724[label="",style="solid", color="black", weight=3]; 24.96/10.77 2606[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2606 -> 2725[label="",style="solid", color="black", weight=3]; 24.96/10.77 2607[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2607 -> 2726[label="",style="solid", color="black", weight=3]; 24.96/10.77 2608[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2608 -> 2727[label="",style="solid", color="black", weight=3]; 24.96/10.77 2609[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2609 -> 2728[label="",style="solid", color="black", weight=3]; 24.96/10.77 2610[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2610 -> 2729[label="",style="solid", color="black", weight=3]; 24.96/10.77 2611[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2611 -> 2730[label="",style="solid", color="black", weight=3]; 24.96/10.77 2612[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2612 -> 2731[label="",style="solid", color="black", weight=3]; 24.96/10.77 2613[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2613 -> 2732[label="",style="solid", color="black", weight=3]; 24.96/10.77 2614[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2614 -> 2733[label="",style="solid", color="black", weight=3]; 24.96/10.77 2615[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2615 -> 2734[label="",style="solid", color="black", weight=3]; 24.96/10.77 2616[label="vyw31000 < vyw32000",fontsize=16,color="black",shape="triangle"];2616 -> 2735[label="",style="solid", color="black", weight=3]; 24.96/10.77 2617[label="False || vyw101",fontsize=16,color="black",shape="box"];2617 -> 2736[label="",style="solid", color="black", weight=3]; 24.96/10.77 2618[label="True || vyw101",fontsize=16,color="black",shape="box"];2618 -> 2737[label="",style="solid", color="black", weight=3]; 24.96/10.77 2619[label="vyw31000",fontsize=16,color="green",shape="box"];2620[label="vyw32000",fontsize=16,color="green",shape="box"];2621[label="vyw31000",fontsize=16,color="green",shape="box"];2622[label="vyw32000",fontsize=16,color="green",shape="box"];2623[label="vyw31000",fontsize=16,color="green",shape="box"];2624[label="vyw32000",fontsize=16,color="green",shape="box"];2625[label="vyw31000",fontsize=16,color="green",shape="box"];2626[label="vyw32000",fontsize=16,color="green",shape="box"];2627[label="vyw31000",fontsize=16,color="green",shape="box"];2628[label="vyw32000",fontsize=16,color="green",shape="box"];2629[label="vyw31000",fontsize=16,color="green",shape="box"];2630[label="vyw32000",fontsize=16,color="green",shape="box"];2631[label="vyw31000",fontsize=16,color="green",shape="box"];2632[label="vyw32000",fontsize=16,color="green",shape="box"];2633[label="vyw31000",fontsize=16,color="green",shape="box"];2634[label="vyw32000",fontsize=16,color="green",shape="box"];2635[label="vyw31000",fontsize=16,color="green",shape="box"];2636[label="vyw32000",fontsize=16,color="green",shape="box"];2637[label="vyw31000",fontsize=16,color="green",shape="box"];2638[label="vyw32000",fontsize=16,color="green",shape="box"];2639[label="vyw31000",fontsize=16,color="green",shape="box"];2640[label="vyw32000",fontsize=16,color="green",shape="box"];2641[label="vyw31000",fontsize=16,color="green",shape="box"];2642[label="vyw32000",fontsize=16,color="green",shape="box"];2643[label="vyw31000",fontsize=16,color="green",shape="box"];2644[label="vyw32000",fontsize=16,color="green",shape="box"];2645[label="vyw31000",fontsize=16,color="green",shape="box"];2646[label="vyw32000",fontsize=16,color="green",shape="box"];2647[label="vyw31000",fontsize=16,color="green",shape="box"];2648[label="vyw32000",fontsize=16,color="green",shape="box"];2649[label="vyw31000",fontsize=16,color="green",shape="box"];2650[label="vyw32000",fontsize=16,color="green",shape="box"];2651[label="vyw31000",fontsize=16,color="green",shape="box"];2652[label="vyw32000",fontsize=16,color="green",shape="box"];2653[label="vyw31000",fontsize=16,color="green",shape="box"];2654[label="vyw32000",fontsize=16,color="green",shape="box"];2655[label="vyw31000",fontsize=16,color="green",shape="box"];2656[label="vyw32000",fontsize=16,color="green",shape="box"];2657[label="vyw31000",fontsize=16,color="green",shape="box"];2658[label="vyw32000",fontsize=16,color="green",shape="box"];2659[label="vyw31000",fontsize=16,color="green",shape="box"];2660[label="vyw32000",fontsize=16,color="green",shape="box"];2661[label="vyw31000",fontsize=16,color="green",shape="box"];2662[label="vyw32000",fontsize=16,color="green",shape="box"];2663[label="vyw31000",fontsize=16,color="green",shape="box"];2664[label="vyw32000",fontsize=16,color="green",shape="box"];2665[label="vyw31000",fontsize=16,color="green",shape="box"];2666[label="vyw32000",fontsize=16,color="green",shape="box"];2667[label="vyw31000",fontsize=16,color="green",shape="box"];2668[label="vyw32000",fontsize=16,color="green",shape="box"];2669[label="vyw31000",fontsize=16,color="green",shape="box"];2670[label="vyw32000",fontsize=16,color="green",shape="box"];2671[label="vyw31000",fontsize=16,color="green",shape="box"];2672[label="vyw32000",fontsize=16,color="green",shape="box"];2673[label="vyw31000",fontsize=16,color="green",shape="box"];2674[label="vyw32000",fontsize=16,color="green",shape="box"];2675[label="primCmpDouble vyw3100 vyw3200",fontsize=16,color="burlywood",shape="box"];3833[label="vyw3100/Double vyw31000 vyw31001",fontsize=10,color="white",style="solid",shape="box"];2675 -> 3833[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3833 -> 2738[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2676[label="primCmpInt vyw3100 vyw3200",fontsize=16,color="burlywood",shape="triangle"];3834[label="vyw3100/Pos vyw31000",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3834[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3834 -> 2739[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3835[label="vyw3100/Neg vyw31000",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3835[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3835 -> 2740[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2677[label="compare (vyw31000 : vyw31001) vyw3200",fontsize=16,color="burlywood",shape="box"];3836[label="vyw3200/vyw32000 : vyw32001",fontsize=10,color="white",style="solid",shape="box"];2677 -> 3836[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3836 -> 2741[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3837[label="vyw3200/[]",fontsize=10,color="white",style="solid",shape="box"];2677 -> 3837[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3837 -> 2742[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2678[label="compare [] vyw3200",fontsize=16,color="burlywood",shape="box"];3838[label="vyw3200/vyw32000 : vyw32001",fontsize=10,color="white",style="solid",shape="box"];2678 -> 3838[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3838 -> 2743[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 3839[label="vyw3200/[]",fontsize=10,color="white",style="solid",shape="box"];2678 -> 3839[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3839 -> 2744[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2679[label="primCmpChar vyw3100 vyw3200",fontsize=16,color="burlywood",shape="box"];3840[label="vyw3100/Char vyw31000",fontsize=10,color="white",style="solid",shape="box"];2679 -> 3840[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3840 -> 2745[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2680[label="primCmpFloat vyw3100 vyw3200",fontsize=16,color="burlywood",shape="box"];3841[label="vyw3100/Float vyw31000 vyw31001",fontsize=10,color="white",style="solid",shape="box"];2680 -> 3841[label="",style="solid", color="burlywood", weight=9]; 24.96/10.77 3841 -> 2746[label="",style="solid", color="burlywood", weight=3]; 24.96/10.77 2681[label="vyw31001 <= vyw32001",fontsize=16,color="blue",shape="box"];3842[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3842[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3842 -> 2747[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3843[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3843[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3843 -> 2748[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3844[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3844[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3844 -> 2749[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3845[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3845[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3845 -> 2750[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3846[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3846[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3846 -> 2751[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3847[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3847[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3847 -> 2752[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3848[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3848[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3848 -> 2753[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3849[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3849[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3849 -> 2754[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3850[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3850[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3850 -> 2755[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3851[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3851[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3851 -> 2756[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3852[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3852[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3852 -> 2757[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3853[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3853[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3853 -> 2758[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3854[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3854[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3854 -> 2759[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3855[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2681 -> 3855[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3855 -> 2760[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2682[label="vyw31000 == vyw32000",fontsize=16,color="blue",shape="box"];3856[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3856[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3856 -> 2761[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3857[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3857[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3857 -> 2762[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3858[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3858[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3858 -> 2763[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3859[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3859[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3859 -> 2764[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3860[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3860[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3860 -> 2765[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3861[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3861[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3861 -> 2766[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3862[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3862[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3862 -> 2767[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3863[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3863[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3863 -> 2768[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3864[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3864[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3864 -> 2769[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3865[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3865[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3865 -> 2770[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3866[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3866[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3866 -> 2771[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3867[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3867[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3867 -> 2772[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3868[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3868[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3868 -> 2773[label="",style="solid", color="blue", weight=3]; 24.96/10.77 3869[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2682 -> 3869[label="",style="solid", color="blue", weight=9]; 24.96/10.77 3869 -> 2774[label="",style="solid", color="blue", weight=3]; 24.96/10.77 2683 -> 2603[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2683[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2683 -> 2775[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2683 -> 2776[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2684 -> 2604[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2684[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2684 -> 2777[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2684 -> 2778[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2685 -> 2605[label="",style="dashed", color="red", weight=0]; 24.96/10.77 2685[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2685 -> 2779[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2685 -> 2780[label="",style="dashed", color="magenta", weight=3]; 24.96/10.77 2686 -> 2606[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2686[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2686 -> 2781[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2686 -> 2782[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2687 -> 2607[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2687[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2687 -> 2783[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2687 -> 2784[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2688 -> 2608[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2688[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2688 -> 2785[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2688 -> 2786[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2689 -> 2609[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2689[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2689 -> 2787[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2689 -> 2788[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2690 -> 2610[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2690[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2690 -> 2789[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2690 -> 2790[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2691 -> 2611[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2691[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2691 -> 2791[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2691 -> 2792[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2692 -> 2612[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2692[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2692 -> 2793[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2692 -> 2794[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2693 -> 2613[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2693[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2693 -> 2795[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2693 -> 2796[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2694 -> 2614[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2694[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2694 -> 2797[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2694 -> 2798[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2695 -> 2615[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2695[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2695 -> 2799[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2695 -> 2800[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2696 -> 2616[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2696[label="vyw31000 < vyw32000",fontsize=16,color="magenta"];2696 -> 2801[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2696 -> 2802[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2697[label="primMulNat (Succ vyw50000) vyw30010",fontsize=16,color="burlywood",shape="box"];3870[label="vyw30010/Succ vyw300100",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3870[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3870 -> 2803[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 3871[label="vyw30010/Zero",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3871[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3871 -> 2804[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 2698[label="primMulNat Zero vyw30010",fontsize=16,color="burlywood",shape="box"];3872[label="vyw30010/Succ vyw300100",fontsize=10,color="white",style="solid",shape="box"];2698 -> 3872[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3872 -> 2805[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 3873[label="vyw30010/Zero",fontsize=10,color="white",style="solid",shape="box"];2698 -> 3873[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3873 -> 2806[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 2699[label="vyw30010",fontsize=16,color="green",shape="box"];2700[label="vyw5000",fontsize=16,color="green",shape="box"];2701[label="vyw30010",fontsize=16,color="green",shape="box"];2702[label="vyw5000",fontsize=16,color="green",shape="box"];2703[label="compare (Integer vyw31000) (Integer vyw32000)",fontsize=16,color="black",shape="box"];2703 -> 2807[label="",style="solid", color="black", weight=3]; 25.27/10.77 2704[label="compare (vyw31000 :% vyw31001) (vyw32000 :% vyw32001)",fontsize=16,color="black",shape="box"];2704 -> 2808[label="",style="solid", color="black", weight=3]; 25.27/10.77 2705[label="compare () ()",fontsize=16,color="black",shape="box"];2705 -> 2809[label="",style="solid", color="black", weight=3]; 25.27/10.77 2706 -> 2012[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2706[label="vyw31001 == vyw32001 && vyw31002 <= vyw32002",fontsize=16,color="magenta"];2706 -> 2810[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2706 -> 2811[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2707[label="vyw31001 < vyw32001",fontsize=16,color="blue",shape="box"];3874[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3874[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3874 -> 2812[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3875[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3875[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3875 -> 2813[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3876[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3876[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3876 -> 2814[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3877[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3877[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3877 -> 2815[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3878[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3878[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3878 -> 2816[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3879[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3879[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3879 -> 2817[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3880[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3880[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3880 -> 2818[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3881[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3881[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3881 -> 2819[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3882[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3882[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3882 -> 2820[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3883[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3883[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3883 -> 2821[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3884[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3884[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3884 -> 2822[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3885[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3885[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3885 -> 2823[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3886[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3886[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3886 -> 2824[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3887[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2707 -> 3887[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3887 -> 2825[label="",style="solid", color="blue", weight=3]; 25.27/10.77 2708 -> 1726[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2708[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2708 -> 2826[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2708 -> 2827[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2709 -> 1732[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2709[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2709 -> 2828[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2709 -> 2829[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2710 -> 1730[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2710[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2710 -> 2830[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2710 -> 2831[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2711 -> 1737[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2711[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2711 -> 2832[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2711 -> 2833[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2712 -> 1729[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2712[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2712 -> 2834[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2712 -> 2835[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2713 -> 1733[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2713[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2713 -> 2836[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2713 -> 2837[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2714 -> 1728[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2714[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2714 -> 2838[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2714 -> 2839[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2715 -> 1734[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2715[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2715 -> 2840[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2715 -> 2841[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2716 -> 1735[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2716[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2716 -> 2842[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2716 -> 2843[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2717 -> 1736[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2717[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2717 -> 2844[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2717 -> 2845[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2718 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2718[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2718 -> 2846[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2718 -> 2847[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2719 -> 1724[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2719[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2719 -> 2848[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2719 -> 2849[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2720 -> 1727[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2720[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2720 -> 2850[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2720 -> 2851[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2721 -> 1731[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2721[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2721 -> 2852[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2721 -> 2853[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2722 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2722[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2722 -> 2854[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2722 -> 2855[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2723 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2723[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2723 -> 2856[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2723 -> 2857[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2724 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2724[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2724 -> 2858[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2724 -> 2859[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2725 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2725[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2725 -> 2860[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2725 -> 2861[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2726 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2726[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2726 -> 2862[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2726 -> 2863[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2727 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2727[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2727 -> 2864[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2727 -> 2865[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2728 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2728[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2728 -> 2866[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2728 -> 2867[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2729 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2729[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2729 -> 2868[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2729 -> 2869[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2730 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2730[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2730 -> 2870[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2730 -> 2871[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2731 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2731[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2731 -> 2872[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2731 -> 2873[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2732 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2732[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2732 -> 2874[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2732 -> 2875[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2733 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2733[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2733 -> 2876[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2733 -> 2877[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2734 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2734[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2734 -> 2878[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2734 -> 2879[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2735 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2735[label="compare vyw31000 vyw32000 == LT",fontsize=16,color="magenta"];2735 -> 2880[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2735 -> 2881[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2736[label="vyw101",fontsize=16,color="green",shape="box"];2737[label="True",fontsize=16,color="green",shape="box"];2738[label="primCmpDouble (Double vyw31000 vyw31001) vyw3200",fontsize=16,color="burlywood",shape="box"];3888[label="vyw31001/Pos vyw310010",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3888[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3888 -> 2882[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 3889[label="vyw31001/Neg vyw310010",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3889[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3889 -> 2883[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 2739[label="primCmpInt (Pos vyw31000) vyw3200",fontsize=16,color="burlywood",shape="box"];3890[label="vyw31000/Succ vyw310000",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3890[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3890 -> 2884[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 3891[label="vyw31000/Zero",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3891[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3891 -> 2885[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 2740[label="primCmpInt (Neg vyw31000) vyw3200",fontsize=16,color="burlywood",shape="box"];3892[label="vyw31000/Succ vyw310000",fontsize=10,color="white",style="solid",shape="box"];2740 -> 3892[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3892 -> 2886[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 3893[label="vyw31000/Zero",fontsize=10,color="white",style="solid",shape="box"];2740 -> 3893[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3893 -> 2887[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 2741[label="compare (vyw31000 : vyw31001) (vyw32000 : vyw32001)",fontsize=16,color="black",shape="box"];2741 -> 2888[label="",style="solid", color="black", weight=3]; 25.27/10.77 2742[label="compare (vyw31000 : vyw31001) []",fontsize=16,color="black",shape="box"];2742 -> 2889[label="",style="solid", color="black", weight=3]; 25.27/10.77 2743[label="compare [] (vyw32000 : vyw32001)",fontsize=16,color="black",shape="box"];2743 -> 2890[label="",style="solid", color="black", weight=3]; 25.27/10.77 2744[label="compare [] []",fontsize=16,color="black",shape="box"];2744 -> 2891[label="",style="solid", color="black", weight=3]; 25.27/10.77 2745[label="primCmpChar (Char vyw31000) vyw3200",fontsize=16,color="burlywood",shape="box"];3894[label="vyw3200/Char vyw32000",fontsize=10,color="white",style="solid",shape="box"];2745 -> 3894[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3894 -> 2892[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 2746[label="primCmpFloat (Float vyw31000 vyw31001) vyw3200",fontsize=16,color="burlywood",shape="box"];3895[label="vyw31001/Pos vyw310010",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3895[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3895 -> 2893[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 3896[label="vyw31001/Neg vyw310010",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3896[label="",style="solid", color="burlywood", weight=9]; 25.27/10.77 3896 -> 2894[label="",style="solid", color="burlywood", weight=3]; 25.27/10.77 2747 -> 2136[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2747[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2747 -> 2895[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2747 -> 2896[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2748 -> 2137[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2748[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2748 -> 2897[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2748 -> 2898[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2749 -> 2138[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2749[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2749 -> 2899[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2749 -> 2900[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2750 -> 2139[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2750[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2750 -> 2901[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2750 -> 2902[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2751 -> 2140[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2751[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2751 -> 2903[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2751 -> 2904[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2752 -> 2141[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2752[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2752 -> 2905[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2752 -> 2906[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2753 -> 2142[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2753[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2753 -> 2907[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2753 -> 2908[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2754 -> 2143[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2754[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2754 -> 2909[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2754 -> 2910[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2755 -> 2144[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2755[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2755 -> 2911[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2755 -> 2912[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2756 -> 2145[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2756[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2756 -> 2913[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2756 -> 2914[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2757 -> 2146[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2757[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2757 -> 2915[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2757 -> 2916[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2758 -> 2147[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2758[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2758 -> 2917[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2758 -> 2918[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2759 -> 2148[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2759[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2759 -> 2919[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2759 -> 2920[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2760 -> 2149[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2760[label="vyw31001 <= vyw32001",fontsize=16,color="magenta"];2760 -> 2921[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2760 -> 2922[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2761 -> 1726[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2761[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2761 -> 2923[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2761 -> 2924[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2762 -> 1732[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2762[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2762 -> 2925[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2762 -> 2926[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2763 -> 1730[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2763[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2763 -> 2927[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2763 -> 2928[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2764 -> 1737[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2764[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2764 -> 2929[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2764 -> 2930[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2765 -> 1729[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2765[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2765 -> 2931[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2765 -> 2932[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2766 -> 1733[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2766[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2766 -> 2933[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2766 -> 2934[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2767 -> 1728[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2767[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2767 -> 2935[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2767 -> 2936[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2768 -> 1734[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2768[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2768 -> 2937[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2768 -> 2938[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2769 -> 1735[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2769[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2769 -> 2939[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2769 -> 2940[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2770 -> 1736[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2770[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2770 -> 2941[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2770 -> 2942[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2771 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2771[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2771 -> 2943[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2771 -> 2944[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2772 -> 1724[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2772[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2772 -> 2945[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2772 -> 2946[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2773 -> 1727[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2773[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2773 -> 2947[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2773 -> 2948[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2774 -> 1731[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2774[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];2774 -> 2949[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2774 -> 2950[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2775[label="vyw32000",fontsize=16,color="green",shape="box"];2776[label="vyw31000",fontsize=16,color="green",shape="box"];2777[label="vyw32000",fontsize=16,color="green",shape="box"];2778[label="vyw31000",fontsize=16,color="green",shape="box"];2779[label="vyw32000",fontsize=16,color="green",shape="box"];2780[label="vyw31000",fontsize=16,color="green",shape="box"];2781[label="vyw32000",fontsize=16,color="green",shape="box"];2782[label="vyw31000",fontsize=16,color="green",shape="box"];2783[label="vyw32000",fontsize=16,color="green",shape="box"];2784[label="vyw31000",fontsize=16,color="green",shape="box"];2785[label="vyw32000",fontsize=16,color="green",shape="box"];2786[label="vyw31000",fontsize=16,color="green",shape="box"];2787[label="vyw32000",fontsize=16,color="green",shape="box"];2788[label="vyw31000",fontsize=16,color="green",shape="box"];2789[label="vyw32000",fontsize=16,color="green",shape="box"];2790[label="vyw31000",fontsize=16,color="green",shape="box"];2791[label="vyw32000",fontsize=16,color="green",shape="box"];2792[label="vyw31000",fontsize=16,color="green",shape="box"];2793[label="vyw32000",fontsize=16,color="green",shape="box"];2794[label="vyw31000",fontsize=16,color="green",shape="box"];2795[label="vyw32000",fontsize=16,color="green",shape="box"];2796[label="vyw31000",fontsize=16,color="green",shape="box"];2797[label="vyw32000",fontsize=16,color="green",shape="box"];2798[label="vyw31000",fontsize=16,color="green",shape="box"];2799[label="vyw32000",fontsize=16,color="green",shape="box"];2800[label="vyw31000",fontsize=16,color="green",shape="box"];2801[label="vyw32000",fontsize=16,color="green",shape="box"];2802[label="vyw31000",fontsize=16,color="green",shape="box"];2803[label="primMulNat (Succ vyw50000) (Succ vyw300100)",fontsize=16,color="black",shape="box"];2803 -> 2951[label="",style="solid", color="black", weight=3]; 25.27/10.77 2804[label="primMulNat (Succ vyw50000) Zero",fontsize=16,color="black",shape="box"];2804 -> 2952[label="",style="solid", color="black", weight=3]; 25.27/10.77 2805[label="primMulNat Zero (Succ vyw300100)",fontsize=16,color="black",shape="box"];2805 -> 2953[label="",style="solid", color="black", weight=3]; 25.27/10.77 2806[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2806 -> 2954[label="",style="solid", color="black", weight=3]; 25.27/10.77 2807 -> 2676[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2807[label="primCmpInt vyw31000 vyw32000",fontsize=16,color="magenta"];2807 -> 2955[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2807 -> 2956[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2808[label="compare (vyw31000 * vyw32001) (vyw32000 * vyw31001)",fontsize=16,color="blue",shape="box"];3897[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2808 -> 3897[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3897 -> 2957[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3898[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2808 -> 3898[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3898 -> 2958[label="",style="solid", color="blue", weight=3]; 25.27/10.77 2809[label="EQ",fontsize=16,color="green",shape="box"];2810[label="vyw31002 <= vyw32002",fontsize=16,color="blue",shape="box"];3899[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3899[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3899 -> 2959[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3900[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3900[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3900 -> 2960[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3901[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3901[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3901 -> 2961[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3902[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3902[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3902 -> 2962[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3903[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3903[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3903 -> 2963[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3904[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3904[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3904 -> 2964[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3905[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3905[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3905 -> 2965[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3906[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3906[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3906 -> 2966[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3907[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3907[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3907 -> 2967[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3908[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3908[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3908 -> 2968[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3909[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3909[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3909 -> 2969[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3910[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3910[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3910 -> 2970[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3911[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3911[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3911 -> 2971[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3912[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2810 -> 3912[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3912 -> 2972[label="",style="solid", color="blue", weight=3]; 25.27/10.77 2811[label="vyw31001 == vyw32001",fontsize=16,color="blue",shape="box"];3913[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3913[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3913 -> 2973[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3914[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3914[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3914 -> 2974[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3915[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3915[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3915 -> 2975[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3916[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3916[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3916 -> 2976[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3917[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3917[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3917 -> 2977[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3918[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3918[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3918 -> 2978[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3919[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3919[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3919 -> 2979[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3920[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3920[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3920 -> 2980[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3921[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3921 -> 2981[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3922[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3922[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3922 -> 2982[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3923[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3923[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3923 -> 2983[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3924[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3924[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3924 -> 2984[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3925[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3925[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3925 -> 2985[label="",style="solid", color="blue", weight=3]; 25.27/10.77 3926[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 3926[label="",style="solid", color="blue", weight=9]; 25.27/10.77 3926 -> 2986[label="",style="solid", color="blue", weight=3]; 25.27/10.77 2812 -> 2603[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2812[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2812 -> 2987[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2812 -> 2988[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2813 -> 2604[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2813[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2813 -> 2989[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2813 -> 2990[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2814 -> 2605[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2814[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2814 -> 2991[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2814 -> 2992[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2815 -> 2606[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2815[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2815 -> 2993[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2815 -> 2994[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2816 -> 2607[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2816[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2816 -> 2995[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2816 -> 2996[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2817 -> 2608[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2817[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2817 -> 2997[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2817 -> 2998[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2818 -> 2609[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2818[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2818 -> 2999[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2818 -> 3000[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2819 -> 2610[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2819[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2819 -> 3001[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2819 -> 3002[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2820 -> 2611[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2820[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2820 -> 3003[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2820 -> 3004[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2821 -> 2612[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2821[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2821 -> 3005[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2821 -> 3006[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2822 -> 2613[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2822[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2822 -> 3007[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2822 -> 3008[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2823 -> 2614[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2823[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2823 -> 3009[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2823 -> 3010[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2824 -> 2615[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2824[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2824 -> 3011[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2824 -> 3012[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2825 -> 2616[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2825[label="vyw31001 < vyw32001",fontsize=16,color="magenta"];2825 -> 3013[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2825 -> 3014[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2826[label="vyw31000",fontsize=16,color="green",shape="box"];2827[label="vyw32000",fontsize=16,color="green",shape="box"];2828[label="vyw31000",fontsize=16,color="green",shape="box"];2829[label="vyw32000",fontsize=16,color="green",shape="box"];2830[label="vyw31000",fontsize=16,color="green",shape="box"];2831[label="vyw32000",fontsize=16,color="green",shape="box"];2832[label="vyw31000",fontsize=16,color="green",shape="box"];2833[label="vyw32000",fontsize=16,color="green",shape="box"];2834[label="vyw31000",fontsize=16,color="green",shape="box"];2835[label="vyw32000",fontsize=16,color="green",shape="box"];2836[label="vyw31000",fontsize=16,color="green",shape="box"];2837[label="vyw32000",fontsize=16,color="green",shape="box"];2838[label="vyw31000",fontsize=16,color="green",shape="box"];2839[label="vyw32000",fontsize=16,color="green",shape="box"];2840[label="vyw31000",fontsize=16,color="green",shape="box"];2841[label="vyw32000",fontsize=16,color="green",shape="box"];2842[label="vyw31000",fontsize=16,color="green",shape="box"];2843[label="vyw32000",fontsize=16,color="green",shape="box"];2844[label="vyw31000",fontsize=16,color="green",shape="box"];2845[label="vyw32000",fontsize=16,color="green",shape="box"];2846[label="vyw31000",fontsize=16,color="green",shape="box"];2847[label="vyw32000",fontsize=16,color="green",shape="box"];2848[label="vyw31000",fontsize=16,color="green",shape="box"];2849[label="vyw32000",fontsize=16,color="green",shape="box"];2850[label="vyw31000",fontsize=16,color="green",shape="box"];2851[label="vyw32000",fontsize=16,color="green",shape="box"];2852[label="vyw31000",fontsize=16,color="green",shape="box"];2853[label="vyw32000",fontsize=16,color="green",shape="box"];2854[label="compare vyw31000 vyw32000",fontsize=16,color="black",shape="triangle"];2854 -> 3015[label="",style="solid", color="black", weight=3]; 25.27/10.77 2855[label="LT",fontsize=16,color="green",shape="box"];2856 -> 2488[label="",style="dashed", color="red", weight=0]; 25.27/10.77 2856[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];2856 -> 3016[label="",style="dashed", color="magenta", weight=3]; 25.27/10.77 2856 -> 3017[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2857[label="LT",fontsize=16,color="green",shape="box"];2858 -> 2492[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2858[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];2858 -> 3018[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2858 -> 3019[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2859[label="LT",fontsize=16,color="green",shape="box"];2860[label="compare vyw31000 vyw32000",fontsize=16,color="black",shape="triangle"];2860 -> 3020[label="",style="solid", color="black", weight=3]; 25.27/10.78 2861[label="LT",fontsize=16,color="green",shape="box"];2862 -> 2494[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2862[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];2862 -> 3021[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2862 -> 3022[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2863[label="LT",fontsize=16,color="green",shape="box"];2864[label="compare vyw31000 vyw32000",fontsize=16,color="black",shape="triangle"];2864 -> 3023[label="",style="solid", color="black", weight=3]; 25.27/10.78 2865[label="LT",fontsize=16,color="green",shape="box"];2866[label="compare vyw31000 vyw32000",fontsize=16,color="black",shape="triangle"];2866 -> 3024[label="",style="solid", color="black", weight=3]; 25.27/10.78 2867[label="LT",fontsize=16,color="green",shape="box"];2868 -> 2496[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2868[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];2868 -> 3025[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2868 -> 3026[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2869[label="LT",fontsize=16,color="green",shape="box"];2870 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2870[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];2870 -> 3027[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2870 -> 3028[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2871[label="LT",fontsize=16,color="green",shape="box"];2872 -> 2500[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2872[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];2872 -> 3029[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2872 -> 3030[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2873[label="LT",fontsize=16,color="green",shape="box"];2874[label="compare vyw31000 vyw32000",fontsize=16,color="black",shape="triangle"];2874 -> 3031[label="",style="solid", color="black", weight=3]; 25.27/10.78 2875[label="LT",fontsize=16,color="green",shape="box"];2876 -> 2502[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2876[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];2876 -> 3032[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2876 -> 3033[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2877[label="LT",fontsize=16,color="green",shape="box"];2878 -> 2504[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2878[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];2878 -> 3034[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2878 -> 3035[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2879[label="LT",fontsize=16,color="green",shape="box"];2880[label="compare vyw31000 vyw32000",fontsize=16,color="black",shape="triangle"];2880 -> 3036[label="",style="solid", color="black", weight=3]; 25.27/10.78 2881[label="LT",fontsize=16,color="green",shape="box"];2882[label="primCmpDouble (Double vyw31000 (Pos vyw310010)) vyw3200",fontsize=16,color="burlywood",shape="box"];3927[label="vyw3200/Double vyw32000 vyw32001",fontsize=10,color="white",style="solid",shape="box"];2882 -> 3927[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3927 -> 3037[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 2883[label="primCmpDouble (Double vyw31000 (Neg vyw310010)) vyw3200",fontsize=16,color="burlywood",shape="box"];3928[label="vyw3200/Double vyw32000 vyw32001",fontsize=10,color="white",style="solid",shape="box"];2883 -> 3928[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3928 -> 3038[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 2884[label="primCmpInt (Pos (Succ vyw310000)) vyw3200",fontsize=16,color="burlywood",shape="box"];3929[label="vyw3200/Pos vyw32000",fontsize=10,color="white",style="solid",shape="box"];2884 -> 3929[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3929 -> 3039[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3930[label="vyw3200/Neg vyw32000",fontsize=10,color="white",style="solid",shape="box"];2884 -> 3930[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3930 -> 3040[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 2885[label="primCmpInt (Pos Zero) vyw3200",fontsize=16,color="burlywood",shape="box"];3931[label="vyw3200/Pos vyw32000",fontsize=10,color="white",style="solid",shape="box"];2885 -> 3931[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3931 -> 3041[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3932[label="vyw3200/Neg vyw32000",fontsize=10,color="white",style="solid",shape="box"];2885 -> 3932[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3932 -> 3042[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 2886[label="primCmpInt (Neg (Succ vyw310000)) vyw3200",fontsize=16,color="burlywood",shape="box"];3933[label="vyw3200/Pos vyw32000",fontsize=10,color="white",style="solid",shape="box"];2886 -> 3933[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3933 -> 3043[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3934[label="vyw3200/Neg vyw32000",fontsize=10,color="white",style="solid",shape="box"];2886 -> 3934[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3934 -> 3044[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 2887[label="primCmpInt (Neg Zero) vyw3200",fontsize=16,color="burlywood",shape="box"];3935[label="vyw3200/Pos vyw32000",fontsize=10,color="white",style="solid",shape="box"];2887 -> 3935[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3935 -> 3045[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3936[label="vyw3200/Neg vyw32000",fontsize=10,color="white",style="solid",shape="box"];2887 -> 3936[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3936 -> 3046[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 2888 -> 3047[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2888[label="primCompAux vyw31000 vyw32000 (compare vyw31001 vyw32001)",fontsize=16,color="magenta"];2888 -> 3048[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2889[label="GT",fontsize=16,color="green",shape="box"];2890[label="LT",fontsize=16,color="green",shape="box"];2891[label="EQ",fontsize=16,color="green",shape="box"];2892[label="primCmpChar (Char vyw31000) (Char vyw32000)",fontsize=16,color="black",shape="box"];2892 -> 3049[label="",style="solid", color="black", weight=3]; 25.27/10.78 2893[label="primCmpFloat (Float vyw31000 (Pos vyw310010)) vyw3200",fontsize=16,color="burlywood",shape="box"];3937[label="vyw3200/Float vyw32000 vyw32001",fontsize=10,color="white",style="solid",shape="box"];2893 -> 3937[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3937 -> 3050[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 2894[label="primCmpFloat (Float vyw31000 (Neg vyw310010)) vyw3200",fontsize=16,color="burlywood",shape="box"];3938[label="vyw3200/Float vyw32000 vyw32001",fontsize=10,color="white",style="solid",shape="box"];2894 -> 3938[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3938 -> 3051[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 2895[label="vyw31001",fontsize=16,color="green",shape="box"];2896[label="vyw32001",fontsize=16,color="green",shape="box"];2897[label="vyw31001",fontsize=16,color="green",shape="box"];2898[label="vyw32001",fontsize=16,color="green",shape="box"];2899[label="vyw31001",fontsize=16,color="green",shape="box"];2900[label="vyw32001",fontsize=16,color="green",shape="box"];2901[label="vyw31001",fontsize=16,color="green",shape="box"];2902[label="vyw32001",fontsize=16,color="green",shape="box"];2903[label="vyw31001",fontsize=16,color="green",shape="box"];2904[label="vyw32001",fontsize=16,color="green",shape="box"];2905[label="vyw31001",fontsize=16,color="green",shape="box"];2906[label="vyw32001",fontsize=16,color="green",shape="box"];2907[label="vyw31001",fontsize=16,color="green",shape="box"];2908[label="vyw32001",fontsize=16,color="green",shape="box"];2909[label="vyw31001",fontsize=16,color="green",shape="box"];2910[label="vyw32001",fontsize=16,color="green",shape="box"];2911[label="vyw31001",fontsize=16,color="green",shape="box"];2912[label="vyw32001",fontsize=16,color="green",shape="box"];2913[label="vyw31001",fontsize=16,color="green",shape="box"];2914[label="vyw32001",fontsize=16,color="green",shape="box"];2915[label="vyw31001",fontsize=16,color="green",shape="box"];2916[label="vyw32001",fontsize=16,color="green",shape="box"];2917[label="vyw31001",fontsize=16,color="green",shape="box"];2918[label="vyw32001",fontsize=16,color="green",shape="box"];2919[label="vyw31001",fontsize=16,color="green",shape="box"];2920[label="vyw32001",fontsize=16,color="green",shape="box"];2921[label="vyw31001",fontsize=16,color="green",shape="box"];2922[label="vyw32001",fontsize=16,color="green",shape="box"];2923[label="vyw31000",fontsize=16,color="green",shape="box"];2924[label="vyw32000",fontsize=16,color="green",shape="box"];2925[label="vyw31000",fontsize=16,color="green",shape="box"];2926[label="vyw32000",fontsize=16,color="green",shape="box"];2927[label="vyw31000",fontsize=16,color="green",shape="box"];2928[label="vyw32000",fontsize=16,color="green",shape="box"];2929[label="vyw31000",fontsize=16,color="green",shape="box"];2930[label="vyw32000",fontsize=16,color="green",shape="box"];2931[label="vyw31000",fontsize=16,color="green",shape="box"];2932[label="vyw32000",fontsize=16,color="green",shape="box"];2933[label="vyw31000",fontsize=16,color="green",shape="box"];2934[label="vyw32000",fontsize=16,color="green",shape="box"];2935[label="vyw31000",fontsize=16,color="green",shape="box"];2936[label="vyw32000",fontsize=16,color="green",shape="box"];2937[label="vyw31000",fontsize=16,color="green",shape="box"];2938[label="vyw32000",fontsize=16,color="green",shape="box"];2939[label="vyw31000",fontsize=16,color="green",shape="box"];2940[label="vyw32000",fontsize=16,color="green",shape="box"];2941[label="vyw31000",fontsize=16,color="green",shape="box"];2942[label="vyw32000",fontsize=16,color="green",shape="box"];2943[label="vyw31000",fontsize=16,color="green",shape="box"];2944[label="vyw32000",fontsize=16,color="green",shape="box"];2945[label="vyw31000",fontsize=16,color="green",shape="box"];2946[label="vyw32000",fontsize=16,color="green",shape="box"];2947[label="vyw31000",fontsize=16,color="green",shape="box"];2948[label="vyw32000",fontsize=16,color="green",shape="box"];2949[label="vyw31000",fontsize=16,color="green",shape="box"];2950[label="vyw32000",fontsize=16,color="green",shape="box"];2951 -> 3052[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2951[label="primPlusNat (primMulNat vyw50000 (Succ vyw300100)) (Succ vyw300100)",fontsize=16,color="magenta"];2951 -> 3053[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2952[label="Zero",fontsize=16,color="green",shape="box"];2953[label="Zero",fontsize=16,color="green",shape="box"];2954[label="Zero",fontsize=16,color="green",shape="box"];2955[label="vyw31000",fontsize=16,color="green",shape="box"];2956[label="vyw32000",fontsize=16,color="green",shape="box"];2957 -> 2488[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2957[label="compare (vyw31000 * vyw32001) (vyw32000 * vyw31001)",fontsize=16,color="magenta"];2957 -> 3054[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2957 -> 3055[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2958 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2958[label="compare (vyw31000 * vyw32001) (vyw32000 * vyw31001)",fontsize=16,color="magenta"];2958 -> 3056[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2958 -> 3057[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2959 -> 2136[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2959[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2959 -> 3058[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2959 -> 3059[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2960 -> 2137[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2960[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2960 -> 3060[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2960 -> 3061[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2961 -> 2138[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2961[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2961 -> 3062[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2961 -> 3063[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2962 -> 2139[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2962[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2962 -> 3064[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2962 -> 3065[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2963 -> 2140[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2963[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2963 -> 3066[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2963 -> 3067[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2964 -> 2141[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2964[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2964 -> 3068[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2964 -> 3069[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2965 -> 2142[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2965[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2965 -> 3070[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2965 -> 3071[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2966 -> 2143[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2966[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2966 -> 3072[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2966 -> 3073[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2967 -> 2144[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2967[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2967 -> 3074[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2967 -> 3075[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2968 -> 2145[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2968[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2968 -> 3076[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2968 -> 3077[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2969 -> 2146[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2969[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2969 -> 3078[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2969 -> 3079[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2970 -> 2147[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2970[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2970 -> 3080[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2970 -> 3081[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2971 -> 2148[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2971[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2971 -> 3082[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2971 -> 3083[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2972 -> 2149[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2972[label="vyw31002 <= vyw32002",fontsize=16,color="magenta"];2972 -> 3084[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2972 -> 3085[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2973 -> 1726[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2973[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2973 -> 3086[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2973 -> 3087[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2974 -> 1732[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2974[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2974 -> 3088[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2974 -> 3089[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2975 -> 1730[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2975[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2975 -> 3090[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2975 -> 3091[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2976 -> 1737[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2976[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2976 -> 3092[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2976 -> 3093[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2977 -> 1729[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2977[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2977 -> 3094[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2977 -> 3095[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2978 -> 1733[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2978[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2978 -> 3096[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2978 -> 3097[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2979 -> 1728[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2979[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2979 -> 3098[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2979 -> 3099[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2980 -> 1734[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2980[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2980 -> 3100[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2980 -> 3101[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2981 -> 1735[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2981[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2981 -> 3102[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2981 -> 3103[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2982 -> 1736[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2982[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2982 -> 3104[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2982 -> 3105[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2983 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2983[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2983 -> 3106[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2983 -> 3107[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2984 -> 1724[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2984[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2984 -> 3108[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2984 -> 3109[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2985 -> 1727[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2985[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2985 -> 3110[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2985 -> 3111[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2986 -> 1731[label="",style="dashed", color="red", weight=0]; 25.27/10.78 2986[label="vyw31001 == vyw32001",fontsize=16,color="magenta"];2986 -> 3112[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2986 -> 3113[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 2987[label="vyw32001",fontsize=16,color="green",shape="box"];2988[label="vyw31001",fontsize=16,color="green",shape="box"];2989[label="vyw32001",fontsize=16,color="green",shape="box"];2990[label="vyw31001",fontsize=16,color="green",shape="box"];2991[label="vyw32001",fontsize=16,color="green",shape="box"];2992[label="vyw31001",fontsize=16,color="green",shape="box"];2993[label="vyw32001",fontsize=16,color="green",shape="box"];2994[label="vyw31001",fontsize=16,color="green",shape="box"];2995[label="vyw32001",fontsize=16,color="green",shape="box"];2996[label="vyw31001",fontsize=16,color="green",shape="box"];2997[label="vyw32001",fontsize=16,color="green",shape="box"];2998[label="vyw31001",fontsize=16,color="green",shape="box"];2999[label="vyw32001",fontsize=16,color="green",shape="box"];3000[label="vyw31001",fontsize=16,color="green",shape="box"];3001[label="vyw32001",fontsize=16,color="green",shape="box"];3002[label="vyw31001",fontsize=16,color="green",shape="box"];3003[label="vyw32001",fontsize=16,color="green",shape="box"];3004[label="vyw31001",fontsize=16,color="green",shape="box"];3005[label="vyw32001",fontsize=16,color="green",shape="box"];3006[label="vyw31001",fontsize=16,color="green",shape="box"];3007[label="vyw32001",fontsize=16,color="green",shape="box"];3008[label="vyw31001",fontsize=16,color="green",shape="box"];3009[label="vyw32001",fontsize=16,color="green",shape="box"];3010[label="vyw31001",fontsize=16,color="green",shape="box"];3011[label="vyw32001",fontsize=16,color="green",shape="box"];3012[label="vyw31001",fontsize=16,color="green",shape="box"];3013[label="vyw32001",fontsize=16,color="green",shape="box"];3014[label="vyw31001",fontsize=16,color="green",shape="box"];3015[label="compare3 vyw31000 vyw32000",fontsize=16,color="black",shape="box"];3015 -> 3114[label="",style="solid", color="black", weight=3]; 25.27/10.78 3016[label="vyw31000",fontsize=16,color="green",shape="box"];3017[label="vyw32000",fontsize=16,color="green",shape="box"];3018[label="vyw31000",fontsize=16,color="green",shape="box"];3019[label="vyw32000",fontsize=16,color="green",shape="box"];3020[label="compare3 vyw31000 vyw32000",fontsize=16,color="black",shape="box"];3020 -> 3115[label="",style="solid", color="black", weight=3]; 25.27/10.78 3021[label="vyw31000",fontsize=16,color="green",shape="box"];3022[label="vyw32000",fontsize=16,color="green",shape="box"];3023[label="compare3 vyw31000 vyw32000",fontsize=16,color="black",shape="box"];3023 -> 3116[label="",style="solid", color="black", weight=3]; 25.27/10.78 3024[label="compare3 vyw31000 vyw32000",fontsize=16,color="black",shape="box"];3024 -> 3117[label="",style="solid", color="black", weight=3]; 25.27/10.78 3025[label="vyw31000",fontsize=16,color="green",shape="box"];3026[label="vyw32000",fontsize=16,color="green",shape="box"];3027[label="vyw31000",fontsize=16,color="green",shape="box"];3028[label="vyw32000",fontsize=16,color="green",shape="box"];3029[label="vyw31000",fontsize=16,color="green",shape="box"];3030[label="vyw32000",fontsize=16,color="green",shape="box"];3031[label="compare3 vyw31000 vyw32000",fontsize=16,color="black",shape="box"];3031 -> 3118[label="",style="solid", color="black", weight=3]; 25.27/10.78 3032[label="vyw31000",fontsize=16,color="green",shape="box"];3033[label="vyw32000",fontsize=16,color="green",shape="box"];3034[label="vyw31000",fontsize=16,color="green",shape="box"];3035[label="vyw32000",fontsize=16,color="green",shape="box"];3036[label="compare3 vyw31000 vyw32000",fontsize=16,color="black",shape="box"];3036 -> 3119[label="",style="solid", color="black", weight=3]; 25.27/10.78 3037[label="primCmpDouble (Double vyw31000 (Pos vyw310010)) (Double vyw32000 vyw32001)",fontsize=16,color="burlywood",shape="box"];3939[label="vyw32001/Pos vyw320010",fontsize=10,color="white",style="solid",shape="box"];3037 -> 3939[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3939 -> 3120[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3940[label="vyw32001/Neg vyw320010",fontsize=10,color="white",style="solid",shape="box"];3037 -> 3940[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3940 -> 3121[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3038[label="primCmpDouble (Double vyw31000 (Neg vyw310010)) (Double vyw32000 vyw32001)",fontsize=16,color="burlywood",shape="box"];3941[label="vyw32001/Pos vyw320010",fontsize=10,color="white",style="solid",shape="box"];3038 -> 3941[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3941 -> 3122[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3942[label="vyw32001/Neg vyw320010",fontsize=10,color="white",style="solid",shape="box"];3038 -> 3942[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3942 -> 3123[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3039[label="primCmpInt (Pos (Succ vyw310000)) (Pos vyw32000)",fontsize=16,color="black",shape="box"];3039 -> 3124[label="",style="solid", color="black", weight=3]; 25.27/10.78 3040[label="primCmpInt (Pos (Succ vyw310000)) (Neg vyw32000)",fontsize=16,color="black",shape="box"];3040 -> 3125[label="",style="solid", color="black", weight=3]; 25.27/10.78 3041[label="primCmpInt (Pos Zero) (Pos vyw32000)",fontsize=16,color="burlywood",shape="box"];3943[label="vyw32000/Succ vyw320000",fontsize=10,color="white",style="solid",shape="box"];3041 -> 3943[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3943 -> 3126[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3944[label="vyw32000/Zero",fontsize=10,color="white",style="solid",shape="box"];3041 -> 3944[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3944 -> 3127[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3042[label="primCmpInt (Pos Zero) (Neg vyw32000)",fontsize=16,color="burlywood",shape="box"];3945[label="vyw32000/Succ vyw320000",fontsize=10,color="white",style="solid",shape="box"];3042 -> 3945[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3945 -> 3128[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3946[label="vyw32000/Zero",fontsize=10,color="white",style="solid",shape="box"];3042 -> 3946[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3946 -> 3129[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3043[label="primCmpInt (Neg (Succ vyw310000)) (Pos vyw32000)",fontsize=16,color="black",shape="box"];3043 -> 3130[label="",style="solid", color="black", weight=3]; 25.27/10.78 3044[label="primCmpInt (Neg (Succ vyw310000)) (Neg vyw32000)",fontsize=16,color="black",shape="box"];3044 -> 3131[label="",style="solid", color="black", weight=3]; 25.27/10.78 3045[label="primCmpInt (Neg Zero) (Pos vyw32000)",fontsize=16,color="burlywood",shape="box"];3947[label="vyw32000/Succ vyw320000",fontsize=10,color="white",style="solid",shape="box"];3045 -> 3947[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3947 -> 3132[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3948[label="vyw32000/Zero",fontsize=10,color="white",style="solid",shape="box"];3045 -> 3948[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3948 -> 3133[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3046[label="primCmpInt (Neg Zero) (Neg vyw32000)",fontsize=16,color="burlywood",shape="box"];3949[label="vyw32000/Succ vyw320000",fontsize=10,color="white",style="solid",shape="box"];3046 -> 3949[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3949 -> 3134[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3950[label="vyw32000/Zero",fontsize=10,color="white",style="solid",shape="box"];3046 -> 3950[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3950 -> 3135[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3048 -> 2500[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3048[label="compare vyw31001 vyw32001",fontsize=16,color="magenta"];3048 -> 3136[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3048 -> 3137[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3047[label="primCompAux vyw31000 vyw32000 vyw102",fontsize=16,color="black",shape="triangle"];3047 -> 3138[label="",style="solid", color="black", weight=3]; 25.27/10.78 3049[label="primCmpNat vyw31000 vyw32000",fontsize=16,color="burlywood",shape="triangle"];3951[label="vyw31000/Succ vyw310000",fontsize=10,color="white",style="solid",shape="box"];3049 -> 3951[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3951 -> 3139[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3952[label="vyw31000/Zero",fontsize=10,color="white",style="solid",shape="box"];3049 -> 3952[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3952 -> 3140[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3050[label="primCmpFloat (Float vyw31000 (Pos vyw310010)) (Float vyw32000 vyw32001)",fontsize=16,color="burlywood",shape="box"];3953[label="vyw32001/Pos vyw320010",fontsize=10,color="white",style="solid",shape="box"];3050 -> 3953[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3953 -> 3141[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3954[label="vyw32001/Neg vyw320010",fontsize=10,color="white",style="solid",shape="box"];3050 -> 3954[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3954 -> 3142[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3051[label="primCmpFloat (Float vyw31000 (Neg vyw310010)) (Float vyw32000 vyw32001)",fontsize=16,color="burlywood",shape="box"];3955[label="vyw32001/Pos vyw320010",fontsize=10,color="white",style="solid",shape="box"];3051 -> 3955[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3955 -> 3143[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3956[label="vyw32001/Neg vyw320010",fontsize=10,color="white",style="solid",shape="box"];3051 -> 3956[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3956 -> 3144[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3053 -> 2553[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3053[label="primMulNat vyw50000 (Succ vyw300100)",fontsize=16,color="magenta"];3053 -> 3145[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3053 -> 3146[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3052[label="primPlusNat vyw103 (Succ vyw300100)",fontsize=16,color="burlywood",shape="triangle"];3957[label="vyw103/Succ vyw1030",fontsize=10,color="white",style="solid",shape="box"];3052 -> 3957[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3957 -> 3147[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3958[label="vyw103/Zero",fontsize=10,color="white",style="solid",shape="box"];3052 -> 3958[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3958 -> 3148[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3054[label="vyw31000 * vyw32001",fontsize=16,color="burlywood",shape="triangle"];3959[label="vyw31000/Integer vyw310000",fontsize=10,color="white",style="solid",shape="box"];3054 -> 3959[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3959 -> 3149[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3055 -> 3054[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3055[label="vyw32000 * vyw31001",fontsize=16,color="magenta"];3055 -> 3150[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3055 -> 3151[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3056 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3056[label="vyw31000 * vyw32001",fontsize=16,color="magenta"];3056 -> 3152[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3056 -> 3153[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3057 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3057[label="vyw32000 * vyw31001",fontsize=16,color="magenta"];3057 -> 3154[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3057 -> 3155[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3058[label="vyw31002",fontsize=16,color="green",shape="box"];3059[label="vyw32002",fontsize=16,color="green",shape="box"];3060[label="vyw31002",fontsize=16,color="green",shape="box"];3061[label="vyw32002",fontsize=16,color="green",shape="box"];3062[label="vyw31002",fontsize=16,color="green",shape="box"];3063[label="vyw32002",fontsize=16,color="green",shape="box"];3064[label="vyw31002",fontsize=16,color="green",shape="box"];3065[label="vyw32002",fontsize=16,color="green",shape="box"];3066[label="vyw31002",fontsize=16,color="green",shape="box"];3067[label="vyw32002",fontsize=16,color="green",shape="box"];3068[label="vyw31002",fontsize=16,color="green",shape="box"];3069[label="vyw32002",fontsize=16,color="green",shape="box"];3070[label="vyw31002",fontsize=16,color="green",shape="box"];3071[label="vyw32002",fontsize=16,color="green",shape="box"];3072[label="vyw31002",fontsize=16,color="green",shape="box"];3073[label="vyw32002",fontsize=16,color="green",shape="box"];3074[label="vyw31002",fontsize=16,color="green",shape="box"];3075[label="vyw32002",fontsize=16,color="green",shape="box"];3076[label="vyw31002",fontsize=16,color="green",shape="box"];3077[label="vyw32002",fontsize=16,color="green",shape="box"];3078[label="vyw31002",fontsize=16,color="green",shape="box"];3079[label="vyw32002",fontsize=16,color="green",shape="box"];3080[label="vyw31002",fontsize=16,color="green",shape="box"];3081[label="vyw32002",fontsize=16,color="green",shape="box"];3082[label="vyw31002",fontsize=16,color="green",shape="box"];3083[label="vyw32002",fontsize=16,color="green",shape="box"];3084[label="vyw31002",fontsize=16,color="green",shape="box"];3085[label="vyw32002",fontsize=16,color="green",shape="box"];3086[label="vyw31001",fontsize=16,color="green",shape="box"];3087[label="vyw32001",fontsize=16,color="green",shape="box"];3088[label="vyw31001",fontsize=16,color="green",shape="box"];3089[label="vyw32001",fontsize=16,color="green",shape="box"];3090[label="vyw31001",fontsize=16,color="green",shape="box"];3091[label="vyw32001",fontsize=16,color="green",shape="box"];3092[label="vyw31001",fontsize=16,color="green",shape="box"];3093[label="vyw32001",fontsize=16,color="green",shape="box"];3094[label="vyw31001",fontsize=16,color="green",shape="box"];3095[label="vyw32001",fontsize=16,color="green",shape="box"];3096[label="vyw31001",fontsize=16,color="green",shape="box"];3097[label="vyw32001",fontsize=16,color="green",shape="box"];3098[label="vyw31001",fontsize=16,color="green",shape="box"];3099[label="vyw32001",fontsize=16,color="green",shape="box"];3100[label="vyw31001",fontsize=16,color="green",shape="box"];3101[label="vyw32001",fontsize=16,color="green",shape="box"];3102[label="vyw31001",fontsize=16,color="green",shape="box"];3103[label="vyw32001",fontsize=16,color="green",shape="box"];3104[label="vyw31001",fontsize=16,color="green",shape="box"];3105[label="vyw32001",fontsize=16,color="green",shape="box"];3106[label="vyw31001",fontsize=16,color="green",shape="box"];3107[label="vyw32001",fontsize=16,color="green",shape="box"];3108[label="vyw31001",fontsize=16,color="green",shape="box"];3109[label="vyw32001",fontsize=16,color="green",shape="box"];3110[label="vyw31001",fontsize=16,color="green",shape="box"];3111[label="vyw32001",fontsize=16,color="green",shape="box"];3112[label="vyw31001",fontsize=16,color="green",shape="box"];3113[label="vyw32001",fontsize=16,color="green",shape="box"];3114 -> 3156[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3114[label="compare2 vyw31000 vyw32000 (vyw31000 == vyw32000)",fontsize=16,color="magenta"];3114 -> 3157[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3115 -> 1687[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3115[label="compare2 vyw31000 vyw32000 (vyw31000 == vyw32000)",fontsize=16,color="magenta"];3115 -> 3158[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3115 -> 3159[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3115 -> 3160[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3116 -> 3161[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3116[label="compare2 vyw31000 vyw32000 (vyw31000 == vyw32000)",fontsize=16,color="magenta"];3116 -> 3162[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3117 -> 3163[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3117[label="compare2 vyw31000 vyw32000 (vyw31000 == vyw32000)",fontsize=16,color="magenta"];3117 -> 3164[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3118 -> 3165[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3118[label="compare2 vyw31000 vyw32000 (vyw31000 == vyw32000)",fontsize=16,color="magenta"];3118 -> 3166[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3119 -> 3167[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3119[label="compare2 vyw31000 vyw32000 (vyw31000 == vyw32000)",fontsize=16,color="magenta"];3119 -> 3168[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3120[label="primCmpDouble (Double vyw31000 (Pos vyw310010)) (Double vyw32000 (Pos vyw320010))",fontsize=16,color="black",shape="box"];3120 -> 3169[label="",style="solid", color="black", weight=3]; 25.27/10.78 3121[label="primCmpDouble (Double vyw31000 (Pos vyw310010)) (Double vyw32000 (Neg vyw320010))",fontsize=16,color="black",shape="box"];3121 -> 3170[label="",style="solid", color="black", weight=3]; 25.27/10.78 3122[label="primCmpDouble (Double vyw31000 (Neg vyw310010)) (Double vyw32000 (Pos vyw320010))",fontsize=16,color="black",shape="box"];3122 -> 3171[label="",style="solid", color="black", weight=3]; 25.27/10.78 3123[label="primCmpDouble (Double vyw31000 (Neg vyw310010)) (Double vyw32000 (Neg vyw320010))",fontsize=16,color="black",shape="box"];3123 -> 3172[label="",style="solid", color="black", weight=3]; 25.27/10.78 3124 -> 3049[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3124[label="primCmpNat (Succ vyw310000) vyw32000",fontsize=16,color="magenta"];3124 -> 3173[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3124 -> 3174[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3125[label="GT",fontsize=16,color="green",shape="box"];3126[label="primCmpInt (Pos Zero) (Pos (Succ vyw320000))",fontsize=16,color="black",shape="box"];3126 -> 3175[label="",style="solid", color="black", weight=3]; 25.27/10.78 3127[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3127 -> 3176[label="",style="solid", color="black", weight=3]; 25.27/10.78 3128[label="primCmpInt (Pos Zero) (Neg (Succ vyw320000))",fontsize=16,color="black",shape="box"];3128 -> 3177[label="",style="solid", color="black", weight=3]; 25.27/10.78 3129[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3129 -> 3178[label="",style="solid", color="black", weight=3]; 25.27/10.78 3130[label="LT",fontsize=16,color="green",shape="box"];3131 -> 3049[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3131[label="primCmpNat vyw32000 (Succ vyw310000)",fontsize=16,color="magenta"];3131 -> 3179[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3131 -> 3180[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3132[label="primCmpInt (Neg Zero) (Pos (Succ vyw320000))",fontsize=16,color="black",shape="box"];3132 -> 3181[label="",style="solid", color="black", weight=3]; 25.27/10.78 3133[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3133 -> 3182[label="",style="solid", color="black", weight=3]; 25.27/10.78 3134[label="primCmpInt (Neg Zero) (Neg (Succ vyw320000))",fontsize=16,color="black",shape="box"];3134 -> 3183[label="",style="solid", color="black", weight=3]; 25.27/10.78 3135[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3135 -> 3184[label="",style="solid", color="black", weight=3]; 25.27/10.78 3136[label="vyw31001",fontsize=16,color="green",shape="box"];3137[label="vyw32001",fontsize=16,color="green",shape="box"];3138 -> 3185[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3138[label="primCompAux0 vyw102 (compare vyw31000 vyw32000)",fontsize=16,color="magenta"];3138 -> 3186[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3138 -> 3187[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3139[label="primCmpNat (Succ vyw310000) vyw32000",fontsize=16,color="burlywood",shape="box"];3960[label="vyw32000/Succ vyw320000",fontsize=10,color="white",style="solid",shape="box"];3139 -> 3960[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3960 -> 3188[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3961[label="vyw32000/Zero",fontsize=10,color="white",style="solid",shape="box"];3139 -> 3961[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3961 -> 3189[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3140[label="primCmpNat Zero vyw32000",fontsize=16,color="burlywood",shape="box"];3962[label="vyw32000/Succ vyw320000",fontsize=10,color="white",style="solid",shape="box"];3140 -> 3962[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3962 -> 3190[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3963[label="vyw32000/Zero",fontsize=10,color="white",style="solid",shape="box"];3140 -> 3963[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3963 -> 3191[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3141[label="primCmpFloat (Float vyw31000 (Pos vyw310010)) (Float vyw32000 (Pos vyw320010))",fontsize=16,color="black",shape="box"];3141 -> 3192[label="",style="solid", color="black", weight=3]; 25.27/10.78 3142[label="primCmpFloat (Float vyw31000 (Pos vyw310010)) (Float vyw32000 (Neg vyw320010))",fontsize=16,color="black",shape="box"];3142 -> 3193[label="",style="solid", color="black", weight=3]; 25.27/10.78 3143[label="primCmpFloat (Float vyw31000 (Neg vyw310010)) (Float vyw32000 (Pos vyw320010))",fontsize=16,color="black",shape="box"];3143 -> 3194[label="",style="solid", color="black", weight=3]; 25.27/10.78 3144[label="primCmpFloat (Float vyw31000 (Neg vyw310010)) (Float vyw32000 (Neg vyw320010))",fontsize=16,color="black",shape="box"];3144 -> 3195[label="",style="solid", color="black", weight=3]; 25.27/10.78 3145[label="Succ vyw300100",fontsize=16,color="green",shape="box"];3146[label="vyw50000",fontsize=16,color="green",shape="box"];3147[label="primPlusNat (Succ vyw1030) (Succ vyw300100)",fontsize=16,color="black",shape="box"];3147 -> 3196[label="",style="solid", color="black", weight=3]; 25.27/10.78 3148[label="primPlusNat Zero (Succ vyw300100)",fontsize=16,color="black",shape="box"];3148 -> 3197[label="",style="solid", color="black", weight=3]; 25.27/10.78 3149[label="Integer vyw310000 * vyw32001",fontsize=16,color="burlywood",shape="box"];3964[label="vyw32001/Integer vyw320010",fontsize=10,color="white",style="solid",shape="box"];3149 -> 3964[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3964 -> 3198[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3150[label="vyw31001",fontsize=16,color="green",shape="box"];3151[label="vyw32000",fontsize=16,color="green",shape="box"];3152[label="vyw31000",fontsize=16,color="green",shape="box"];3153[label="vyw32001",fontsize=16,color="green",shape="box"];3154[label="vyw32000",fontsize=16,color="green",shape="box"];3155[label="vyw31001",fontsize=16,color="green",shape="box"];3157 -> 1726[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3157[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];3157 -> 3199[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3157 -> 3200[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3156[label="compare2 vyw31000 vyw32000 vyw104",fontsize=16,color="burlywood",shape="triangle"];3965[label="vyw104/False",fontsize=10,color="white",style="solid",shape="box"];3156 -> 3965[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3965 -> 3201[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3966[label="vyw104/True",fontsize=10,color="white",style="solid",shape="box"];3156 -> 3966[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3966 -> 3202[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3158 -> 1737[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3158[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];3158 -> 3203[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3158 -> 3204[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3159[label="vyw31000",fontsize=16,color="green",shape="box"];3160[label="vyw32000",fontsize=16,color="green",shape="box"];3162 -> 1733[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3162[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];3162 -> 3205[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3162 -> 3206[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3161[label="compare2 vyw31000 vyw32000 vyw105",fontsize=16,color="burlywood",shape="triangle"];3967[label="vyw105/False",fontsize=10,color="white",style="solid",shape="box"];3161 -> 3967[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3967 -> 3207[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3968[label="vyw105/True",fontsize=10,color="white",style="solid",shape="box"];3161 -> 3968[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3968 -> 3208[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3164 -> 1728[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3164[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];3164 -> 3209[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3164 -> 3210[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3163[label="compare2 vyw31000 vyw32000 vyw106",fontsize=16,color="burlywood",shape="triangle"];3969[label="vyw106/False",fontsize=10,color="white",style="solid",shape="box"];3163 -> 3969[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3969 -> 3211[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3970[label="vyw106/True",fontsize=10,color="white",style="solid",shape="box"];3163 -> 3970[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3970 -> 3212[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3166 -> 43[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3166[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];3166 -> 3213[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3166 -> 3214[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3165[label="compare2 vyw31000 vyw32000 vyw107",fontsize=16,color="burlywood",shape="triangle"];3971[label="vyw107/False",fontsize=10,color="white",style="solid",shape="box"];3165 -> 3971[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3971 -> 3215[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3972[label="vyw107/True",fontsize=10,color="white",style="solid",shape="box"];3165 -> 3972[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3972 -> 3216[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3168 -> 1731[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3168[label="vyw31000 == vyw32000",fontsize=16,color="magenta"];3168 -> 3217[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3168 -> 3218[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3167[label="compare2 vyw31000 vyw32000 vyw108",fontsize=16,color="burlywood",shape="triangle"];3973[label="vyw108/False",fontsize=10,color="white",style="solid",shape="box"];3167 -> 3973[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3973 -> 3219[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3974[label="vyw108/True",fontsize=10,color="white",style="solid",shape="box"];3167 -> 3974[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3974 -> 3220[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3169 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3169[label="compare (vyw31000 * Pos vyw320010) (Pos vyw310010 * vyw32000)",fontsize=16,color="magenta"];3169 -> 3221[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3169 -> 3222[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3170 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3170[label="compare (vyw31000 * Pos vyw320010) (Neg vyw310010 * vyw32000)",fontsize=16,color="magenta"];3170 -> 3223[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3170 -> 3224[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3171 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3171[label="compare (vyw31000 * Neg vyw320010) (Pos vyw310010 * vyw32000)",fontsize=16,color="magenta"];3171 -> 3225[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3171 -> 3226[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3172 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3172[label="compare (vyw31000 * Neg vyw320010) (Neg vyw310010 * vyw32000)",fontsize=16,color="magenta"];3172 -> 3227[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3172 -> 3228[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3173[label="vyw32000",fontsize=16,color="green",shape="box"];3174[label="Succ vyw310000",fontsize=16,color="green",shape="box"];3175 -> 3049[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3175[label="primCmpNat Zero (Succ vyw320000)",fontsize=16,color="magenta"];3175 -> 3229[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3175 -> 3230[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3176[label="EQ",fontsize=16,color="green",shape="box"];3177[label="GT",fontsize=16,color="green",shape="box"];3178[label="EQ",fontsize=16,color="green",shape="box"];3179[label="Succ vyw310000",fontsize=16,color="green",shape="box"];3180[label="vyw32000",fontsize=16,color="green",shape="box"];3181[label="LT",fontsize=16,color="green",shape="box"];3182[label="EQ",fontsize=16,color="green",shape="box"];3183 -> 3049[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3183[label="primCmpNat (Succ vyw320000) Zero",fontsize=16,color="magenta"];3183 -> 3231[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3183 -> 3232[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3184[label="EQ",fontsize=16,color="green",shape="box"];3186[label="vyw102",fontsize=16,color="green",shape="box"];3187[label="compare vyw31000 vyw32000",fontsize=16,color="blue",shape="box"];3975[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3975[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3975 -> 3233[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3976[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3976[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3976 -> 3234[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3977[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3977[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3977 -> 3235[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3978[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3978[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3978 -> 3236[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3979[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3979[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3979 -> 3237[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3980[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3980[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3980 -> 3238[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3981[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3981[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3981 -> 3239[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3982[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3982[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3982 -> 3240[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3983[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3983[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3983 -> 3241[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3984[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3984[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3984 -> 3242[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3985[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3985[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3985 -> 3243[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3986[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3986[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3986 -> 3244[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3987[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3987[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3987 -> 3245[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3988[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3988[label="",style="solid", color="blue", weight=9]; 25.27/10.78 3988 -> 3246[label="",style="solid", color="blue", weight=3]; 25.27/10.78 3185[label="primCompAux0 vyw112 vyw113",fontsize=16,color="burlywood",shape="triangle"];3989[label="vyw113/LT",fontsize=10,color="white",style="solid",shape="box"];3185 -> 3989[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3989 -> 3247[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3990[label="vyw113/EQ",fontsize=10,color="white",style="solid",shape="box"];3185 -> 3990[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3990 -> 3248[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3991[label="vyw113/GT",fontsize=10,color="white",style="solid",shape="box"];3185 -> 3991[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3991 -> 3249[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3188[label="primCmpNat (Succ vyw310000) (Succ vyw320000)",fontsize=16,color="black",shape="box"];3188 -> 3250[label="",style="solid", color="black", weight=3]; 25.27/10.78 3189[label="primCmpNat (Succ vyw310000) Zero",fontsize=16,color="black",shape="box"];3189 -> 3251[label="",style="solid", color="black", weight=3]; 25.27/10.78 3190[label="primCmpNat Zero (Succ vyw320000)",fontsize=16,color="black",shape="box"];3190 -> 3252[label="",style="solid", color="black", weight=3]; 25.27/10.78 3191[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3191 -> 3253[label="",style="solid", color="black", weight=3]; 25.27/10.78 3192 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3192[label="compare (vyw31000 * Pos vyw320010) (Pos vyw310010 * vyw32000)",fontsize=16,color="magenta"];3192 -> 3254[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3192 -> 3255[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3193 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3193[label="compare (vyw31000 * Pos vyw320010) (Neg vyw310010 * vyw32000)",fontsize=16,color="magenta"];3193 -> 3256[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3193 -> 3257[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3194 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3194[label="compare (vyw31000 * Neg vyw320010) (Pos vyw310010 * vyw32000)",fontsize=16,color="magenta"];3194 -> 3258[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3194 -> 3259[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3195 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3195[label="compare (vyw31000 * Neg vyw320010) (Neg vyw310010 * vyw32000)",fontsize=16,color="magenta"];3195 -> 3260[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3195 -> 3261[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3196[label="Succ (Succ (primPlusNat vyw1030 vyw300100))",fontsize=16,color="green",shape="box"];3196 -> 3262[label="",style="dashed", color="green", weight=3]; 25.27/10.78 3197[label="Succ vyw300100",fontsize=16,color="green",shape="box"];3198[label="Integer vyw310000 * Integer vyw320010",fontsize=16,color="black",shape="box"];3198 -> 3263[label="",style="solid", color="black", weight=3]; 25.27/10.78 3199[label="vyw31000",fontsize=16,color="green",shape="box"];3200[label="vyw32000",fontsize=16,color="green",shape="box"];3201[label="compare2 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3201 -> 3264[label="",style="solid", color="black", weight=3]; 25.27/10.78 3202[label="compare2 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3202 -> 3265[label="",style="solid", color="black", weight=3]; 25.27/10.78 3203[label="vyw31000",fontsize=16,color="green",shape="box"];3204[label="vyw32000",fontsize=16,color="green",shape="box"];3205[label="vyw31000",fontsize=16,color="green",shape="box"];3206[label="vyw32000",fontsize=16,color="green",shape="box"];3207[label="compare2 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3207 -> 3266[label="",style="solid", color="black", weight=3]; 25.27/10.78 3208[label="compare2 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3208 -> 3267[label="",style="solid", color="black", weight=3]; 25.27/10.78 3209[label="vyw31000",fontsize=16,color="green",shape="box"];3210[label="vyw32000",fontsize=16,color="green",shape="box"];3211[label="compare2 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3211 -> 3268[label="",style="solid", color="black", weight=3]; 25.27/10.78 3212[label="compare2 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3212 -> 3269[label="",style="solid", color="black", weight=3]; 25.27/10.78 3213[label="vyw31000",fontsize=16,color="green",shape="box"];3214[label="vyw32000",fontsize=16,color="green",shape="box"];3215[label="compare2 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3215 -> 3270[label="",style="solid", color="black", weight=3]; 25.27/10.78 3216[label="compare2 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3216 -> 3271[label="",style="solid", color="black", weight=3]; 25.27/10.78 3217[label="vyw31000",fontsize=16,color="green",shape="box"];3218[label="vyw32000",fontsize=16,color="green",shape="box"];3219[label="compare2 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3219 -> 3272[label="",style="solid", color="black", weight=3]; 25.27/10.78 3220[label="compare2 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3220 -> 3273[label="",style="solid", color="black", weight=3]; 25.27/10.78 3221 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3221[label="vyw31000 * Pos vyw320010",fontsize=16,color="magenta"];3221 -> 3274[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3221 -> 3275[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3222 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3222[label="Pos vyw310010 * vyw32000",fontsize=16,color="magenta"];3222 -> 3276[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3222 -> 3277[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3223 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3223[label="vyw31000 * Pos vyw320010",fontsize=16,color="magenta"];3223 -> 3278[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3223 -> 3279[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3224 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3224[label="Neg vyw310010 * vyw32000",fontsize=16,color="magenta"];3224 -> 3280[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3224 -> 3281[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3225 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3225[label="vyw31000 * Neg vyw320010",fontsize=16,color="magenta"];3225 -> 3282[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3225 -> 3283[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3226 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3226[label="Pos vyw310010 * vyw32000",fontsize=16,color="magenta"];3226 -> 3284[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3226 -> 3285[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3227 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3227[label="vyw31000 * Neg vyw320010",fontsize=16,color="magenta"];3227 -> 3286[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3227 -> 3287[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3228 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3228[label="Neg vyw310010 * vyw32000",fontsize=16,color="magenta"];3228 -> 3288[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3228 -> 3289[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3229[label="Succ vyw320000",fontsize=16,color="green",shape="box"];3230[label="Zero",fontsize=16,color="green",shape="box"];3231[label="Zero",fontsize=16,color="green",shape="box"];3232[label="Succ vyw320000",fontsize=16,color="green",shape="box"];3233 -> 2854[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3233[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3233 -> 3290[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3233 -> 3291[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3234 -> 2488[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3234[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3234 -> 3292[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3234 -> 3293[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3235 -> 2492[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3235[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3235 -> 3294[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3235 -> 3295[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3236 -> 2860[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3236[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3236 -> 3296[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3236 -> 3297[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3237 -> 2494[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3237[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3237 -> 3298[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3237 -> 3299[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3238 -> 2864[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3238[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3238 -> 3300[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3238 -> 3301[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3239 -> 2866[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3239[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3239 -> 3302[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3239 -> 3303[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3240 -> 2496[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3240[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3240 -> 3304[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3240 -> 3305[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3241 -> 2498[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3241[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3241 -> 3306[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3241 -> 3307[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3242 -> 2500[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3242[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3242 -> 3308[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3242 -> 3309[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3243 -> 2874[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3243[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3243 -> 3310[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3243 -> 3311[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3244 -> 2502[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3244[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3244 -> 3312[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3244 -> 3313[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3245 -> 2504[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3245[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3245 -> 3314[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3245 -> 3315[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3246 -> 2880[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3246[label="compare vyw31000 vyw32000",fontsize=16,color="magenta"];3246 -> 3316[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3246 -> 3317[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3247[label="primCompAux0 vyw112 LT",fontsize=16,color="black",shape="box"];3247 -> 3318[label="",style="solid", color="black", weight=3]; 25.27/10.78 3248[label="primCompAux0 vyw112 EQ",fontsize=16,color="black",shape="box"];3248 -> 3319[label="",style="solid", color="black", weight=3]; 25.27/10.78 3249[label="primCompAux0 vyw112 GT",fontsize=16,color="black",shape="box"];3249 -> 3320[label="",style="solid", color="black", weight=3]; 25.27/10.78 3250 -> 3049[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3250[label="primCmpNat vyw310000 vyw320000",fontsize=16,color="magenta"];3250 -> 3321[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3250 -> 3322[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3251[label="GT",fontsize=16,color="green",shape="box"];3252[label="LT",fontsize=16,color="green",shape="box"];3253[label="EQ",fontsize=16,color="green",shape="box"];3254 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3254[label="vyw31000 * Pos vyw320010",fontsize=16,color="magenta"];3254 -> 3323[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3254 -> 3324[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3255 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3255[label="Pos vyw310010 * vyw32000",fontsize=16,color="magenta"];3255 -> 3325[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3255 -> 3326[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3256 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3256[label="vyw31000 * Pos vyw320010",fontsize=16,color="magenta"];3256 -> 3327[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3256 -> 3328[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3257 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3257[label="Neg vyw310010 * vyw32000",fontsize=16,color="magenta"];3257 -> 3329[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3257 -> 3330[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3258 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3258[label="vyw31000 * Neg vyw320010",fontsize=16,color="magenta"];3258 -> 3331[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3258 -> 3332[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3259 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3259[label="Pos vyw310010 * vyw32000",fontsize=16,color="magenta"];3259 -> 3333[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3259 -> 3334[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3260 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3260[label="vyw31000 * Neg vyw320010",fontsize=16,color="magenta"];3260 -> 3335[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3260 -> 3336[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3261 -> 1952[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3261[label="Neg vyw310010 * vyw32000",fontsize=16,color="magenta"];3261 -> 3337[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3261 -> 3338[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3262[label="primPlusNat vyw1030 vyw300100",fontsize=16,color="burlywood",shape="triangle"];3992[label="vyw1030/Succ vyw10300",fontsize=10,color="white",style="solid",shape="box"];3262 -> 3992[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3992 -> 3339[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3993[label="vyw1030/Zero",fontsize=10,color="white",style="solid",shape="box"];3262 -> 3993[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3993 -> 3340[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3263[label="Integer (primMulInt vyw310000 vyw320010)",fontsize=16,color="green",shape="box"];3263 -> 3341[label="",style="dashed", color="green", weight=3]; 25.27/10.78 3264 -> 3342[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3264[label="compare1 vyw31000 vyw32000 (vyw31000 <= vyw32000)",fontsize=16,color="magenta"];3264 -> 3343[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3265[label="EQ",fontsize=16,color="green",shape="box"];3266 -> 3344[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3266[label="compare1 vyw31000 vyw32000 (vyw31000 <= vyw32000)",fontsize=16,color="magenta"];3266 -> 3345[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3267[label="EQ",fontsize=16,color="green",shape="box"];3268 -> 3346[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3268[label="compare1 vyw31000 vyw32000 (vyw31000 <= vyw32000)",fontsize=16,color="magenta"];3268 -> 3347[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3269[label="EQ",fontsize=16,color="green",shape="box"];3270 -> 3348[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3270[label="compare1 vyw31000 vyw32000 (vyw31000 <= vyw32000)",fontsize=16,color="magenta"];3270 -> 3349[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3271[label="EQ",fontsize=16,color="green",shape="box"];3272 -> 3350[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3272[label="compare1 vyw31000 vyw32000 (vyw31000 <= vyw32000)",fontsize=16,color="magenta"];3272 -> 3351[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3273[label="EQ",fontsize=16,color="green",shape="box"];3274[label="vyw31000",fontsize=16,color="green",shape="box"];3275[label="Pos vyw320010",fontsize=16,color="green",shape="box"];3276[label="Pos vyw310010",fontsize=16,color="green",shape="box"];3277[label="vyw32000",fontsize=16,color="green",shape="box"];3278[label="vyw31000",fontsize=16,color="green",shape="box"];3279[label="Pos vyw320010",fontsize=16,color="green",shape="box"];3280[label="Neg vyw310010",fontsize=16,color="green",shape="box"];3281[label="vyw32000",fontsize=16,color="green",shape="box"];3282[label="vyw31000",fontsize=16,color="green",shape="box"];3283[label="Neg vyw320010",fontsize=16,color="green",shape="box"];3284[label="Pos vyw310010",fontsize=16,color="green",shape="box"];3285[label="vyw32000",fontsize=16,color="green",shape="box"];3286[label="vyw31000",fontsize=16,color="green",shape="box"];3287[label="Neg vyw320010",fontsize=16,color="green",shape="box"];3288[label="Neg vyw310010",fontsize=16,color="green",shape="box"];3289[label="vyw32000",fontsize=16,color="green",shape="box"];3290[label="vyw32000",fontsize=16,color="green",shape="box"];3291[label="vyw31000",fontsize=16,color="green",shape="box"];3292[label="vyw31000",fontsize=16,color="green",shape="box"];3293[label="vyw32000",fontsize=16,color="green",shape="box"];3294[label="vyw31000",fontsize=16,color="green",shape="box"];3295[label="vyw32000",fontsize=16,color="green",shape="box"];3296[label="vyw32000",fontsize=16,color="green",shape="box"];3297[label="vyw31000",fontsize=16,color="green",shape="box"];3298[label="vyw31000",fontsize=16,color="green",shape="box"];3299[label="vyw32000",fontsize=16,color="green",shape="box"];3300[label="vyw32000",fontsize=16,color="green",shape="box"];3301[label="vyw31000",fontsize=16,color="green",shape="box"];3302[label="vyw32000",fontsize=16,color="green",shape="box"];3303[label="vyw31000",fontsize=16,color="green",shape="box"];3304[label="vyw31000",fontsize=16,color="green",shape="box"];3305[label="vyw32000",fontsize=16,color="green",shape="box"];3306[label="vyw31000",fontsize=16,color="green",shape="box"];3307[label="vyw32000",fontsize=16,color="green",shape="box"];3308[label="vyw31000",fontsize=16,color="green",shape="box"];3309[label="vyw32000",fontsize=16,color="green",shape="box"];3310[label="vyw32000",fontsize=16,color="green",shape="box"];3311[label="vyw31000",fontsize=16,color="green",shape="box"];3312[label="vyw31000",fontsize=16,color="green",shape="box"];3313[label="vyw32000",fontsize=16,color="green",shape="box"];3314[label="vyw31000",fontsize=16,color="green",shape="box"];3315[label="vyw32000",fontsize=16,color="green",shape="box"];3316[label="vyw32000",fontsize=16,color="green",shape="box"];3317[label="vyw31000",fontsize=16,color="green",shape="box"];3318[label="LT",fontsize=16,color="green",shape="box"];3319[label="vyw112",fontsize=16,color="green",shape="box"];3320[label="GT",fontsize=16,color="green",shape="box"];3321[label="vyw320000",fontsize=16,color="green",shape="box"];3322[label="vyw310000",fontsize=16,color="green",shape="box"];3323[label="vyw31000",fontsize=16,color="green",shape="box"];3324[label="Pos vyw320010",fontsize=16,color="green",shape="box"];3325[label="Pos vyw310010",fontsize=16,color="green",shape="box"];3326[label="vyw32000",fontsize=16,color="green",shape="box"];3327[label="vyw31000",fontsize=16,color="green",shape="box"];3328[label="Pos vyw320010",fontsize=16,color="green",shape="box"];3329[label="Neg vyw310010",fontsize=16,color="green",shape="box"];3330[label="vyw32000",fontsize=16,color="green",shape="box"];3331[label="vyw31000",fontsize=16,color="green",shape="box"];3332[label="Neg vyw320010",fontsize=16,color="green",shape="box"];3333[label="Pos vyw310010",fontsize=16,color="green",shape="box"];3334[label="vyw32000",fontsize=16,color="green",shape="box"];3335[label="vyw31000",fontsize=16,color="green",shape="box"];3336[label="Neg vyw320010",fontsize=16,color="green",shape="box"];3337[label="Neg vyw310010",fontsize=16,color="green",shape="box"];3338[label="vyw32000",fontsize=16,color="green",shape="box"];3339[label="primPlusNat (Succ vyw10300) vyw300100",fontsize=16,color="burlywood",shape="box"];3994[label="vyw300100/Succ vyw3001000",fontsize=10,color="white",style="solid",shape="box"];3339 -> 3994[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3994 -> 3352[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3995[label="vyw300100/Zero",fontsize=10,color="white",style="solid",shape="box"];3339 -> 3995[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3995 -> 3353[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3340[label="primPlusNat Zero vyw300100",fontsize=16,color="burlywood",shape="box"];3996[label="vyw300100/Succ vyw3001000",fontsize=10,color="white",style="solid",shape="box"];3340 -> 3996[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3996 -> 3354[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3997[label="vyw300100/Zero",fontsize=10,color="white",style="solid",shape="box"];3340 -> 3997[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3997 -> 3355[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3341 -> 2156[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3341[label="primMulInt vyw310000 vyw320010",fontsize=16,color="magenta"];3341 -> 3356[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3341 -> 3357[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3343 -> 2136[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3343[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];3343 -> 3358[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3343 -> 3359[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3342[label="compare1 vyw31000 vyw32000 vyw114",fontsize=16,color="burlywood",shape="triangle"];3998[label="vyw114/False",fontsize=10,color="white",style="solid",shape="box"];3342 -> 3998[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3998 -> 3360[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3999[label="vyw114/True",fontsize=10,color="white",style="solid",shape="box"];3342 -> 3999[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 3999 -> 3361[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3345 -> 2141[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3345[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];3345 -> 3362[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3345 -> 3363[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3344[label="compare1 vyw31000 vyw32000 vyw115",fontsize=16,color="burlywood",shape="triangle"];4000[label="vyw115/False",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4000[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 4000 -> 3364[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 4001[label="vyw115/True",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4001[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 4001 -> 3365[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3347 -> 2142[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3347[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];3347 -> 3366[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3347 -> 3367[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3346[label="compare1 vyw31000 vyw32000 vyw116",fontsize=16,color="burlywood",shape="triangle"];4002[label="vyw116/False",fontsize=10,color="white",style="solid",shape="box"];3346 -> 4002[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 4002 -> 3368[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 4003[label="vyw116/True",fontsize=10,color="white",style="solid",shape="box"];3346 -> 4003[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 4003 -> 3369[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3349 -> 2146[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3349[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];3349 -> 3370[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3349 -> 3371[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3348[label="compare1 vyw31000 vyw32000 vyw117",fontsize=16,color="burlywood",shape="triangle"];4004[label="vyw117/False",fontsize=10,color="white",style="solid",shape="box"];3348 -> 4004[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 4004 -> 3372[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 4005[label="vyw117/True",fontsize=10,color="white",style="solid",shape="box"];3348 -> 4005[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 4005 -> 3373[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3351 -> 2149[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3351[label="vyw31000 <= vyw32000",fontsize=16,color="magenta"];3351 -> 3374[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3351 -> 3375[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3350[label="compare1 vyw31000 vyw32000 vyw118",fontsize=16,color="burlywood",shape="triangle"];4006[label="vyw118/False",fontsize=10,color="white",style="solid",shape="box"];3350 -> 4006[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 4006 -> 3376[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 4007[label="vyw118/True",fontsize=10,color="white",style="solid",shape="box"];3350 -> 4007[label="",style="solid", color="burlywood", weight=9]; 25.27/10.78 4007 -> 3377[label="",style="solid", color="burlywood", weight=3]; 25.27/10.78 3352[label="primPlusNat (Succ vyw10300) (Succ vyw3001000)",fontsize=16,color="black",shape="box"];3352 -> 3378[label="",style="solid", color="black", weight=3]; 25.27/10.78 3353[label="primPlusNat (Succ vyw10300) Zero",fontsize=16,color="black",shape="box"];3353 -> 3379[label="",style="solid", color="black", weight=3]; 25.27/10.78 3354[label="primPlusNat Zero (Succ vyw3001000)",fontsize=16,color="black",shape="box"];3354 -> 3380[label="",style="solid", color="black", weight=3]; 25.27/10.78 3355[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3355 -> 3381[label="",style="solid", color="black", weight=3]; 25.27/10.78 3356[label="vyw310000",fontsize=16,color="green",shape="box"];3357[label="vyw320010",fontsize=16,color="green",shape="box"];3358[label="vyw31000",fontsize=16,color="green",shape="box"];3359[label="vyw32000",fontsize=16,color="green",shape="box"];3360[label="compare1 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3360 -> 3382[label="",style="solid", color="black", weight=3]; 25.27/10.78 3361[label="compare1 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3361 -> 3383[label="",style="solid", color="black", weight=3]; 25.27/10.78 3362[label="vyw31000",fontsize=16,color="green",shape="box"];3363[label="vyw32000",fontsize=16,color="green",shape="box"];3364[label="compare1 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3364 -> 3384[label="",style="solid", color="black", weight=3]; 25.27/10.78 3365[label="compare1 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3365 -> 3385[label="",style="solid", color="black", weight=3]; 25.27/10.78 3366[label="vyw31000",fontsize=16,color="green",shape="box"];3367[label="vyw32000",fontsize=16,color="green",shape="box"];3368[label="compare1 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3368 -> 3386[label="",style="solid", color="black", weight=3]; 25.27/10.78 3369[label="compare1 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3369 -> 3387[label="",style="solid", color="black", weight=3]; 25.27/10.78 3370[label="vyw31000",fontsize=16,color="green",shape="box"];3371[label="vyw32000",fontsize=16,color="green",shape="box"];3372[label="compare1 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3372 -> 3388[label="",style="solid", color="black", weight=3]; 25.27/10.78 3373[label="compare1 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3373 -> 3389[label="",style="solid", color="black", weight=3]; 25.27/10.78 3374[label="vyw31000",fontsize=16,color="green",shape="box"];3375[label="vyw32000",fontsize=16,color="green",shape="box"];3376[label="compare1 vyw31000 vyw32000 False",fontsize=16,color="black",shape="box"];3376 -> 3390[label="",style="solid", color="black", weight=3]; 25.27/10.78 3377[label="compare1 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3377 -> 3391[label="",style="solid", color="black", weight=3]; 25.27/10.78 3378[label="Succ (Succ (primPlusNat vyw10300 vyw3001000))",fontsize=16,color="green",shape="box"];3378 -> 3392[label="",style="dashed", color="green", weight=3]; 25.27/10.78 3379[label="Succ vyw10300",fontsize=16,color="green",shape="box"];3380[label="Succ vyw3001000",fontsize=16,color="green",shape="box"];3381[label="Zero",fontsize=16,color="green",shape="box"];3382[label="compare0 vyw31000 vyw32000 otherwise",fontsize=16,color="black",shape="box"];3382 -> 3393[label="",style="solid", color="black", weight=3]; 25.27/10.78 3383[label="LT",fontsize=16,color="green",shape="box"];3384[label="compare0 vyw31000 vyw32000 otherwise",fontsize=16,color="black",shape="box"];3384 -> 3394[label="",style="solid", color="black", weight=3]; 25.27/10.78 3385[label="LT",fontsize=16,color="green",shape="box"];3386[label="compare0 vyw31000 vyw32000 otherwise",fontsize=16,color="black",shape="box"];3386 -> 3395[label="",style="solid", color="black", weight=3]; 25.27/10.78 3387[label="LT",fontsize=16,color="green",shape="box"];3388[label="compare0 vyw31000 vyw32000 otherwise",fontsize=16,color="black",shape="box"];3388 -> 3396[label="",style="solid", color="black", weight=3]; 25.27/10.78 3389[label="LT",fontsize=16,color="green",shape="box"];3390[label="compare0 vyw31000 vyw32000 otherwise",fontsize=16,color="black",shape="box"];3390 -> 3397[label="",style="solid", color="black", weight=3]; 25.27/10.78 3391[label="LT",fontsize=16,color="green",shape="box"];3392 -> 3262[label="",style="dashed", color="red", weight=0]; 25.27/10.78 3392[label="primPlusNat vyw10300 vyw3001000",fontsize=16,color="magenta"];3392 -> 3398[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3392 -> 3399[label="",style="dashed", color="magenta", weight=3]; 25.27/10.78 3393[label="compare0 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3393 -> 3400[label="",style="solid", color="black", weight=3]; 25.27/10.78 3394[label="compare0 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3394 -> 3401[label="",style="solid", color="black", weight=3]; 25.27/10.78 3395[label="compare0 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3395 -> 3402[label="",style="solid", color="black", weight=3]; 25.27/10.78 3396[label="compare0 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3396 -> 3403[label="",style="solid", color="black", weight=3]; 25.27/10.78 3397[label="compare0 vyw31000 vyw32000 True",fontsize=16,color="black",shape="box"];3397 -> 3404[label="",style="solid", color="black", weight=3]; 25.27/10.78 3398[label="vyw10300",fontsize=16,color="green",shape="box"];3399[label="vyw3001000",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"];3403[label="GT",fontsize=16,color="green",shape="box"];3404[label="GT",fontsize=16,color="green",shape="box"];} 25.27/10.78 25.27/10.78 ---------------------------------------- 25.27/10.78 25.27/10.78 (16) 25.27/10.78 Complex Obligation (AND) 25.27/10.78 25.27/10.78 ---------------------------------------- 25.27/10.78 25.27/10.78 (17) 25.27/10.78 Obligation: 25.27/10.78 Q DP problem: 25.27/10.78 The TRS P consists of the following rules: 25.27/10.78 25.27/10.78 new_primCmpNat(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat(vyw310000, vyw320000) 25.27/10.78 25.27/10.78 R is empty. 25.27/10.78 Q is empty. 25.27/10.78 We have to consider all minimal (P,Q,R)-chains. 25.27/10.78 ---------------------------------------- 25.27/10.78 25.27/10.78 (18) QDPSizeChangeProof (EQUIVALENT) 25.27/10.78 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. 25.27/10.78 25.27/10.78 From the DPs we obtained the following set of size-change graphs: 25.27/10.78 *new_primCmpNat(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat(vyw310000, vyw320000) 25.27/10.78 The graph contains the following edges 1 > 1, 2 > 2 25.27/10.78 25.27/10.78 25.27/10.78 ---------------------------------------- 25.27/10.78 25.27/10.78 (19) 25.27/10.78 YES 25.27/10.78 25.27/10.78 ---------------------------------------- 25.27/10.78 25.27/10.78 (20) 25.27/10.78 Obligation: 25.27/10.78 Q DP problem: 25.27/10.78 The TRS P consists of the following rules: 25.27/10.78 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(ty_[], bdh)), bdb)) -> new_lt2(vyw31000, vyw32000, bdh) 25.27/10.78 new_compare20(vyw31000, vyw32000, False, eh, fa, fb) -> new_ltEs0(vyw31000, vyw32000, eh, fa, fb) 25.27/10.78 new_ltEs2(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_compare(vyw31001, vyw32001, bae) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(app(ty_Either, bcd), bce)) -> new_ltEs1(vyw31001, vyw32001, bcd, bce) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs0(vyw31002, vyw32002, cd, ce, cf) 25.27/10.78 new_compare2(Just(:(vyw31000, vyw31001)), Just(:(vyw32000, vyw32001)), False, app(ty_[], bae)) -> new_compare(vyw31001, vyw32001, bae) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(app(ty_Either, bdf), bdg)), bdb)) -> new_lt1(vyw31000, vyw32000, bdf, bdg) 25.27/10.78 new_primCompAux(vyw31000, vyw32000, vyw102, app(app(app(ty_@3, bag), bah), bba)) -> new_compare3(vyw31000, vyw32000, bag, bah, bba) 25.27/10.78 new_lt3(vyw31000, vyw32000, fg, fh) -> new_compare22(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.27/10.78 new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(ty_Maybe, hd)) -> new_ltEs(vyw31000, vyw32000, hd) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(app(ty_@2, bcg), bch)) -> new_ltEs3(vyw31001, vyw32001, bcg, bch) 25.27/10.78 new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs1(vyw31000, vyw32000, hh, baa) 25.27/10.78 new_ltEs1(Left(vyw31000), Left(vyw32000), app(app(ty_@2, ha), hb), gb) -> new_ltEs3(vyw31000, vyw32000, ha, hb) 25.27/10.78 new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(app(app(ty_@3, he), hf), hg))) -> new_ltEs0(vyw31000, vyw32000, he, hf, hg) 25.27/10.78 new_compare4(vyw31000, vyw32000, fc, fd) -> new_compare21(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(app(ty_@2, fg), fh), cb, df) -> new_compare22(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(app(ty_@2, bea), beb), bdb) -> new_lt3(vyw31000, vyw32000, bea, beb) 25.27/10.78 new_compare2(Just(:(vyw31000, vyw31001)), Just(:(vyw32000, vyw32001)), False, app(ty_[], bae)) -> new_primCompAux(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, bae), bae) 25.27/10.78 new_compare1(vyw31000, vyw32000, eg) -> new_compare2(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs0(vyw31001, vyw32001, bca, bcb, bcc) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(ty_Maybe, bda), bdb) -> new_lt(vyw31000, vyw32000, bda) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(ty_[], ed), df) -> new_lt2(vyw31001, vyw32001, ed) 25.27/10.78 new_ltEs2(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_primCompAux(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, bae), bae) 25.27/10.78 new_lt(vyw31000, vyw32000, eg) -> new_compare2(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(ty_[], db)) -> new_ltEs2(vyw31002, vyw32002, db) 25.27/10.78 new_ltEs(Just(vyw31000), Just(vyw32000), app(app(ty_Either, bd), be)) -> new_ltEs1(vyw31000, vyw32000, bd, be) 25.27/10.78 new_ltEs(Just(vyw31000), Just(vyw32000), app(ty_[], bf)) -> new_ltEs2(vyw31000, vyw32000, bf) 25.27/10.78 new_ltEs1(Left(vyw31000), Left(vyw32000), app(ty_Maybe, ga), gb) -> new_ltEs(vyw31000, vyw32000, ga) 25.27/10.78 new_lt2(vyw31000, vyw32000, ff) -> new_compare(vyw31000, vyw32000, ff) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(ty_Maybe, cc))) -> new_ltEs(vyw31002, vyw32002, cc) 25.27/10.78 new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(app(ty_Either, gf), gg)), gb)) -> new_ltEs1(vyw31000, vyw32000, gf, gg) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(app(app(ty_@3, eh), fa), fb), cb, df) -> new_compare20(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(app(ty_@2, bea), beb)), bdb)) -> new_lt3(vyw31000, vyw32000, bea, beb) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(ty_[], bcf))) -> new_ltEs2(vyw31001, vyw32001, bcf) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(ty_[], bcf)) -> new_ltEs2(vyw31001, vyw32001, bcf) 25.27/10.78 new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(app(ty_@2, bac), bad))) -> new_ltEs3(vyw31000, vyw32000, bac, bad) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs0(vyw31001, vyw32001, bca, bcb, bcc) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(app(ty_Either, cg), da)) -> new_ltEs1(vyw31002, vyw32002, cg, da) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(ty_[], bdh), bdb) -> new_lt2(vyw31000, vyw32000, bdh) 25.27/10.78 new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(ty_Maybe, hd))) -> new_ltEs(vyw31000, vyw32000, hd) 25.27/10.78 new_lt1(vyw31000, vyw32000, fc, fd) -> new_compare21(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(ty_Maybe, bbh)) -> new_ltEs(vyw31001, vyw32001, bbh) 25.27/10.78 new_compare21(vyw31000, vyw32000, False, fc, fd) -> new_ltEs1(vyw31000, vyw32000, fc, fd) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(app(ty_@2, ee), ef), df) -> new_lt3(vyw31001, vyw32001, ee, ef) 25.27/10.78 new_compare3(vyw31000, vyw32000, eh, fa, fb) -> new_compare20(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcg), bch))) -> new_ltEs3(vyw31001, vyw32001, bcg, bch) 25.27/10.78 new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(app(ty_Either, bd), be))) -> new_ltEs1(vyw31000, vyw32000, bd, be) 25.27/10.78 new_primCompAux(vyw31000, vyw32000, vyw102, app(ty_Maybe, baf)) -> new_compare1(vyw31000, vyw32000, baf) 25.27/10.78 new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(app(app(ty_@3, ba), bb), bc))) -> new_ltEs0(vyw31000, vyw32000, ba, bb, bc) 25.27/10.78 new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(app(app(ty_@3, gc), gd), ge)), gb)) -> new_ltEs0(vyw31000, vyw32000, gc, gd, ge) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bcd), bce))) -> new_ltEs1(vyw31001, vyw32001, bcd, bce) 25.27/10.78 new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(ty_Maybe, ga)), gb)) -> new_ltEs(vyw31000, vyw32000, ga) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(app(ty_Either, eb), ec), df) -> new_lt1(vyw31001, vyw32001, eb, ec) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(ty_[], ff), cb, df) -> new_compare(vyw31000, vyw32000, ff) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(ty_Maybe, cc)) -> new_ltEs(vyw31002, vyw32002, cc) 25.27/10.78 new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(ty_[], bf))) -> new_ltEs2(vyw31000, vyw32000, bf) 25.27/10.78 new_compare22(vyw31000, vyw32000, False, fg, fh) -> new_ltEs3(vyw31000, vyw32000, fg, fh) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(app(ty_Either, fc), fd), cb, df) -> new_compare21(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.27/10.78 new_primCompAux(vyw31000, vyw32000, vyw102, app(app(ty_Either, bbb), bbc)) -> new_compare4(vyw31000, vyw32000, bbb, bbc) 25.27/10.78 new_ltEs1(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_ltEs0(vyw31000, vyw32000, gc, gd, ge) 25.27/10.78 new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vyw31000, vyw32000, h) 25.27/10.78 new_lt0(vyw31000, vyw32000, eh, fa, fb) -> new_compare20(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(app(app(ty_@3, dg), dh), ea), df) -> new_lt0(vyw31001, vyw32001, dg, dh, ea) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(ty_Maybe, bda)), bdb)) -> new_lt(vyw31000, vyw32000, bda) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(app(ty_@2, dc), dd)) -> new_ltEs3(vyw31002, vyw32002, dc, dd) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(app(ty_@2, ee), ef)), df)) -> new_lt3(vyw31001, vyw32001, ee, ef) 25.27/10.78 new_compare(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_primCompAux(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, bae), bae) 25.27/10.78 new_ltEs(Just(vyw31000), Just(vyw32000), app(app(ty_@2, bg), bh)) -> new_ltEs3(vyw31000, vyw32000, bg, bh) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(app(ty_Either, fc), fd)), cb), df)) -> new_compare21(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.27/10.78 new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(app(ty_@2, ha), hb)), gb)) -> new_ltEs3(vyw31000, vyw32000, ha, hb) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(app(app(ty_@3, dg), dh), ea)), df)) -> new_lt0(vyw31001, vyw32001, dg, dh, ea) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(app(app(ty_@3, bdc), bdd), bde), bdb) -> new_lt0(vyw31000, vyw32000, bdc, bdd, bde) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(app(ty_Either, cg), da))) -> new_ltEs1(vyw31002, vyw32002, cg, da) 25.27/10.78 new_ltEs1(Left(vyw31000), Left(vyw32000), app(app(ty_Either, gf), gg), gb) -> new_ltEs1(vyw31000, vyw32000, gf, gg) 25.27/10.78 new_primCompAux(vyw31000, vyw32000, vyw102, app(app(ty_@2, bbe), bbf)) -> new_compare5(vyw31000, vyw32000, bbe, bbf) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(app(app(ty_@3, bdc), bdd), bde)), bdb)) -> new_lt0(vyw31000, vyw32000, bdc, bdd, bde) 25.27/10.78 new_compare5(vyw31000, vyw32000, fg, fh) -> new_compare22(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.27/10.78 new_primCompAux(vyw31000, vyw32000, vyw102, app(ty_[], bbd)) -> new_compare(vyw31000, vyw32000, bbd) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(ty_[], ed)), df)) -> new_lt2(vyw31001, vyw32001, ed) 25.27/10.78 new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(ty_[], gh)), gb)) -> new_ltEs2(vyw31000, vyw32000, gh) 25.27/10.78 new_ltEs1(Left(vyw31000), Left(vyw32000), app(ty_[], gh), gb) -> new_ltEs2(vyw31000, vyw32000, gh) 25.27/10.78 new_ltEs(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, ba), bb), bc)) -> new_ltEs0(vyw31000, vyw32000, ba, bb, bc) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(app(app(ty_@3, cd), ce), cf))) -> new_ltEs0(vyw31002, vyw32002, cd, ce, cf) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(app(ty_@2, dc), dd))) -> new_ltEs3(vyw31002, vyw32002, dc, dd) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(ty_Maybe, eg), cb, df) -> new_compare2(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(app(ty_@2, fg), fh)), cb), df)) -> new_compare22(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.27/10.78 new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs0(vyw31000, vyw32000, he, hf, hg) 25.27/10.78 new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(ty_[], bab))) -> new_ltEs2(vyw31000, vyw32000, bab) 25.27/10.78 new_ltEs(Just(vyw31000), Just(vyw32000), app(ty_Maybe, h)) -> new_ltEs(vyw31000, vyw32000, h) 25.27/10.78 new_compare(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_compare(vyw31001, vyw32001, bae) 25.27/10.78 new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bbh))) -> new_ltEs(vyw31001, vyw32001, bbh) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(ty_Maybe, de)), df)) -> new_lt(vyw31001, vyw32001, de) 25.27/10.78 new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(ty_Maybe, de), df) -> new_lt(vyw31001, vyw32001, de) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(ty_Maybe, eg)), cb), df)) -> new_compare2(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(ty_[], db))) -> new_ltEs2(vyw31002, vyw32002, db) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(app(ty_Either, eb), ec)), df)) -> new_lt1(vyw31001, vyw32001, eb, ec) 25.27/10.78 new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(app(ty_Either, hh), baa))) -> new_ltEs1(vyw31000, vyw32000, hh, baa) 25.27/10.78 new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(ty_[], bab)) -> new_ltEs2(vyw31000, vyw32000, bab) 25.27/10.78 new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(app(ty_@2, bg), bh))) -> new_ltEs3(vyw31000, vyw32000, bg, bh) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(ty_[], ff)), cb), df)) -> new_compare(vyw31000, vyw32000, ff) 25.27/10.78 new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(app(ty_@2, bac), bad)) -> new_ltEs3(vyw31000, vyw32000, bac, bad) 25.27/10.78 new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(app(app(ty_@3, eh), fa), fb)), cb), df)) -> new_compare20(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.27/10.78 new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(app(ty_Either, bdf), bdg), bdb) -> new_lt1(vyw31000, vyw32000, bdf, bdg) 25.27/10.78 25.27/10.78 The TRS R consists of the following rules: 25.27/10.78 25.27/10.78 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.27/10.78 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.27/10.78 new_lt10(vyw31000, vyw32000, fg, fh) -> new_esEs9(new_compare18(vyw31000, vyw32000, fg, fh), LT) 25.27/10.78 new_esEs23(vyw502, vyw3002, app(ty_[], cdh)) -> new_esEs17(vyw502, vyw3002, cdh) 25.27/10.78 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, bdb) -> new_pePe(new_lt20(vyw31000, vyw32000, bbg), new_asAs(new_esEs28(vyw31000, vyw32000, bbg), new_ltEs20(vyw31001, vyw32001, bdb))) 25.27/10.78 new_pePe(True, vyw101) -> True 25.27/10.78 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.27/10.78 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.27/10.78 new_compare23(vyw310, vyw320, True, dbf) -> EQ 25.27/10.78 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.27/10.78 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.27/10.78 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.27/10.78 new_esEs9(LT, EQ) -> False 25.27/10.78 new_esEs9(EQ, LT) -> False 25.27/10.78 new_ltEs19(vyw3100, vyw3200, app(ty_[], bae)) -> new_ltEs5(vyw3100, vyw3200, bae) 25.27/10.78 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.27/10.78 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.27/10.78 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.27/10.78 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.27/10.78 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dcc)) -> new_compare7(vyw31000, vyw32000, dcc) 25.27/10.78 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.27/10.78 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.27/10.78 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.27/10.78 new_lt12(vyw31000, vyw32000, app(ty_Ratio, bff)) -> new_lt4(vyw31000, vyw32000, bff) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, ga), gb) -> new_ltEs11(vyw31000, vyw32000, ga) 25.27/10.78 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, df) -> new_pePe(new_lt12(vyw31000, vyw32000, ca), new_asAs(new_esEs22(vyw31000, vyw32000, ca), new_pePe(new_lt11(vyw31001, vyw32001, cb), new_asAs(new_esEs21(vyw31001, vyw32001, cb), new_ltEs18(vyw31002, vyw32002, df))))) 25.27/10.78 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.27/10.78 new_primCompAux0(vyw31000, vyw32000, vyw102, bae) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, bae)) 25.27/10.78 new_compare30(vyw31000, vyw32000, app(app(ty_@2, bbe), bbf)) -> new_compare18(vyw31000, vyw32000, bbe, bbf) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.27/10.78 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.27/10.78 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.27/10.78 new_lt12(vyw31000, vyw32000, app(app(ty_@2, fg), fh)) -> new_lt10(vyw31000, vyw32000, fg, fh) 25.27/10.78 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.27/10.78 new_compare25(@0, @0) -> EQ 25.27/10.78 new_ltEs9(False, True) -> True 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, cgh) -> new_esEs9(vyw500, vyw3000) 25.27/10.78 new_compare210(vyw31000, vyw32000, True, fg, fh) -> EQ 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, cgh) -> new_esEs8(vyw500, vyw3000) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.27/10.78 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.27/10.78 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(vyw500, vyw3000, cbd, cbe, cbf) 25.27/10.78 new_esEs8(False, True) -> False 25.27/10.78 new_esEs8(True, False) -> False 25.27/10.78 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, eg)) -> new_esEs4(vyw31000, vyw32000, eg) 25.27/10.78 new_compare19(vyw31000, vyw32000, True, fc, fd) -> LT 25.27/10.78 new_lt20(vyw31000, vyw32000, app(app(ty_Either, bdf), bdg)) -> new_lt6(vyw31000, vyw32000, bdf, bdg) 25.27/10.78 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.27/10.78 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.27/10.78 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, bff)) -> new_esEs13(vyw31000, vyw32000, bff) 25.27/10.78 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.27/10.78 new_compare23(Just(vyw3100), Just(vyw3200), False, dbf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, dbf), dbf) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, bcd), bce)) -> new_ltEs8(vyw31001, vyw32001, bcd, bce) 25.27/10.78 new_not(True) -> False 25.27/10.78 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.27/10.78 new_primCompAux00(vyw112, LT) -> LT 25.27/10.78 new_primCmpNat0(Zero, Zero) -> EQ 25.27/10.78 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.27/10.78 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt17(vyw31000, vyw32000, eh, fa, fb) 25.27/10.78 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, bag), bah), bba)) -> new_compare27(vyw31000, vyw32000, bag, bah, bba) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], daa), cgh) -> new_esEs17(vyw500, vyw3000, daa) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.27/10.78 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw500, vyw3000, bge, bgf, bgg) 25.27/10.78 new_esEs23(vyw502, vyw3002, app(ty_Ratio, cdb)) -> new_esEs13(vyw502, vyw3002, cdb) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, ba), bb), bc)) -> new_ltEs13(vyw31000, vyw32000, ba, bb, bc) 25.27/10.78 new_ltEs16(GT, EQ) -> False 25.27/10.78 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.27/10.78 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.27/10.78 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.27/10.78 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, gf), gg), gb) -> new_ltEs8(vyw31000, vyw32000, gf, gg) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, ca), cb), df)) -> new_ltEs13(vyw3100, vyw3200, ca, cb, df) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.27/10.78 new_lt12(vyw31000, vyw32000, app(ty_[], ff)) -> new_lt18(vyw31000, vyw32000, ff) 25.27/10.78 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.27/10.78 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.27/10.78 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.27/10.78 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.27/10.78 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(vyw501, vyw3001, cab, cac, cad) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, cgh) -> new_esEs12(vyw500, vyw3000) 25.27/10.78 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.27/10.78 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.27/10.78 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, fg), fh)) -> new_esEs7(vyw31000, vyw32000, fg, fh) 25.27/10.78 new_primCompAux00(vyw112, GT) -> GT 25.27/10.78 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.27/10.78 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.27/10.78 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.27/10.78 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs13(vyw31001, vyw32001, bca, bcb, bcc) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.27/10.78 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.27/10.78 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.27/10.78 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.27/10.78 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.27/10.78 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.27/10.78 new_ltEs16(LT, LT) -> True 25.27/10.78 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs5(vyw501, vyw3001, ceg, ceh, cfa) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, gb) -> new_ltEs14(vyw31000, vyw32000) 25.27/10.78 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.27/10.78 new_compare16(vyw31000, vyw32000, False) -> GT 25.27/10.78 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.27/10.78 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, cgh) -> new_esEs14(vyw500, vyw3000) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.27/10.78 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.27/10.78 new_compare28(vyw31000, vyw32000, False, eh, fa, fb) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.27/10.78 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.27/10.78 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.27/10.78 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, dg), dh), ea)) -> new_lt17(vyw31001, vyw32001, dg, dh, ea) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, chf), chg), chh), cgh) -> new_esEs5(vyw500, vyw3000, chf, chg, chh) 25.27/10.78 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.27/10.78 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.27/10.78 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, gb) -> new_ltEs4(vyw31000, vyw32000) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.27/10.78 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(vyw31001, vyw32001, dg, dh, ea) 25.27/10.78 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.27/10.78 new_compare110(vyw31000, vyw32000, False, eh, fa, fb) -> GT 25.27/10.78 new_pePe(False, vyw101) -> vyw101 25.27/10.78 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.27/10.78 new_ltEs5(vyw3100, vyw3200, bae) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, bae), GT)) 25.27/10.78 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.27/10.78 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.27/10.78 new_ltEs9(True, True) -> True 25.27/10.78 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, fc), fd)) -> new_esEs6(vyw31000, vyw32000, fc, fd) 25.27/10.78 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.27/10.78 new_ltEs16(LT, GT) -> True 25.27/10.78 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.27/10.78 new_lt11(vyw31001, vyw32001, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31001, vyw32001, ee, ef) 25.27/10.78 new_esEs17([], [], bfg) -> True 25.27/10.78 new_ltEs16(LT, EQ) -> True 25.27/10.78 new_ltEs16(EQ, LT) -> False 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], bf)) -> new_ltEs5(vyw31000, vyw32000, bf) 25.27/10.78 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.27/10.78 new_compare11(vyw31000, vyw32000, False, fg, fh) -> GT 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, gb) -> new_ltEs15(vyw31000, vyw32000) 25.27/10.78 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cea)) -> new_esEs4(vyw502, vyw3002, cea) 25.27/10.78 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.27/10.78 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.27/10.78 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.27/10.78 new_compare30(vyw31000, vyw32000, app(app(ty_Either, bbb), bbc)) -> new_compare12(vyw31000, vyw32000, bbb, bbc) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.27/10.78 new_esEs18(vyw500, vyw3000, app(ty_Ratio, bgb)) -> new_esEs13(vyw500, vyw3000, bgb) 25.27/10.78 new_ltEs16(GT, LT) -> False 25.27/10.78 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs5(vyw500, vyw3000, bfa, bfb, bfc) 25.27/10.78 new_esEs19(vyw501, vyw3001, app(ty_Maybe, caf)) -> new_esEs4(vyw501, vyw3001, caf) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, gb) -> new_ltEs10(vyw31000, vyw32000) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs13(vyw31002, vyw32002, cd, ce, cf) 25.27/10.78 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.27/10.78 new_esEs18(vyw500, vyw3000, app(ty_[], bgh)) -> new_esEs17(vyw500, vyw3000, bgh) 25.27/10.78 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.27/10.78 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.27/10.78 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.27/10.78 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.27/10.78 new_esEs24(vyw501, vyw3001, app(app(ty_Either, ceb), cec)) -> new_esEs6(vyw501, vyw3001, ceb, cec) 25.27/10.78 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.27/10.78 new_esEs8(False, False) -> True 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, cha), chb), cgh) -> new_esEs6(vyw500, vyw3000, cha, chb) 25.27/10.78 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.27/10.78 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.27/10.78 new_ltEs8(Right(vyw31000), Left(vyw32000), hc, gb) -> False 25.27/10.78 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.27/10.78 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.27/10.78 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.27/10.78 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, chc), cgh) -> new_esEs13(vyw500, vyw3000, chc) 25.27/10.78 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), bhc, bhd) -> new_asAs(new_esEs20(vyw500, vyw3000, bhc), new_esEs19(vyw501, vyw3001, bhd)) 25.27/10.78 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.27/10.78 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs5(vyw502, vyw3002, cde, cdf, cdg) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(vyw500, vyw3000, dba, dbb, dbc) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.27/10.78 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.27/10.78 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.27/10.78 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, cgh) -> new_esEs16(vyw500, vyw3000) 25.27/10.78 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.27/10.78 new_compare18(vyw31000, vyw32000, fg, fh) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.27/10.78 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.27/10.78 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.27/10.78 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, cgh) -> new_esEs10(vyw500, vyw3000) 25.27/10.78 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.27/10.78 new_compare30(vyw31000, vyw32000, app(ty_Maybe, baf)) -> new_compare13(vyw31000, vyw32000, baf) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, chd), che), cgh) -> new_esEs7(vyw500, vyw3000, chd, che) 25.27/10.78 new_esEs28(vyw31000, vyw32000, app(ty_[], bdh)) -> new_esEs17(vyw31000, vyw32000, bdh) 25.27/10.78 new_ltEs16(EQ, GT) -> True 25.27/10.78 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs8(vyw31000, vyw32000, hh, baa) 25.27/10.78 new_ltEs16(EQ, EQ) -> True 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bef)) -> new_esEs13(vyw500, vyw3000, bef) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, hc), gb)) -> new_ltEs8(vyw3100, vyw3200, hc, gb) 25.27/10.78 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.27/10.78 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.27/10.78 new_esEs20(vyw500, vyw3000, app(ty_Maybe, cbh)) -> new_esEs4(vyw500, vyw3000, cbh) 25.27/10.78 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.27/10.78 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.27/10.78 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.27/10.78 new_esEs9(LT, LT) -> True 25.27/10.78 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.27/10.78 new_lt17(vyw31000, vyw32000, eh, fa, fb) -> new_esEs9(new_compare27(vyw31000, vyw32000, eh, fa, fb), LT) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, gb) -> new_ltEs9(vyw31000, vyw32000) 25.27/10.78 new_compare23(Just(vyw3100), Nothing, False, dbf) -> GT 25.27/10.78 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.27/10.78 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, cca), gb) -> new_ltEs6(vyw31000, vyw32000, cca) 25.27/10.78 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, h)) -> new_ltEs11(vyw31000, vyw32000, h) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.27/10.78 new_compare19(vyw31000, vyw32000, False, fc, fd) -> GT 25.27/10.78 new_lt12(vyw31000, vyw32000, app(ty_Maybe, eg)) -> new_lt15(vyw31000, vyw32000, eg) 25.27/10.78 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.27/10.78 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), bfg) -> new_asAs(new_esEs18(vyw500, vyw3000, bfg), new_esEs17(vyw501, vyw3001, bfg)) 25.27/10.78 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, de)) -> new_esEs4(vyw31001, vyw32001, de) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.27/10.78 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.27/10.78 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.27/10.78 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.27/10.78 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), dbg) -> new_asAs(new_esEs27(vyw500, vyw3000, dbg), new_esEs26(vyw501, vyw3001, dbg)) 25.27/10.78 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, app(ty_Maybe, hd)) -> new_ltEs11(vyw31000, vyw32000, hd) 25.27/10.78 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, ccd)) -> new_esEs13(vyw31001, vyw32001, ccd) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.27/10.78 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, app(app(ty_@2, dag), dah)) -> new_esEs7(vyw500, vyw3000, dag, dah) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, bfe)) -> new_esEs4(vyw500, vyw3000, bfe) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, cg), da)) -> new_ltEs8(vyw31002, vyw32002, cg, da) 25.27/10.78 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.27/10.78 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.27/10.78 new_esEs23(vyw502, vyw3002, app(app(ty_Either, cch), cda)) -> new_esEs6(vyw502, vyw3002, cch, cda) 25.27/10.78 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.27/10.78 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, eb), ec)) -> new_esEs6(vyw31001, vyw32001, eb, ec) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, cgh) -> new_esEs11(vyw500, vyw3000) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.27/10.78 new_compare16(vyw31000, vyw32000, True) -> LT 25.27/10.78 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.27/10.78 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.27/10.78 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.27/10.78 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, bbh)) -> new_ltEs11(vyw31001, vyw32001, bbh) 25.27/10.78 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cfc)) -> new_esEs4(vyw501, vyw3001, cfc) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], bfd)) -> new_esEs17(vyw500, vyw3000, bfd) 25.27/10.78 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, app(app(ty_Either, dad), dae)) -> new_esEs6(vyw500, vyw3000, dad, dae) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.27/10.78 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs5(vyw31000, vyw32000, eh, fa, fb) 25.27/10.78 new_lt15(vyw31000, vyw32000, eg) -> new_esEs9(new_compare13(vyw31000, vyw32000, eg), LT) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.27/10.78 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.27/10.78 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, bg), bh)) -> new_ltEs17(vyw31000, vyw32000, bg, bh) 25.27/10.78 new_esEs18(vyw500, vyw3000, app(ty_Maybe, bha)) -> new_esEs4(vyw500, vyw3000, bha) 25.27/10.78 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.27/10.78 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.27/10.78 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, bed), bee)) -> new_esEs6(vyw500, vyw3000, bed, bee) 25.27/10.78 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, bhb)) -> new_ltEs6(vyw3100, vyw3200, bhb) 25.27/10.78 new_esEs20(vyw500, vyw3000, app(ty_Ratio, cba)) -> new_esEs13(vyw500, vyw3000, cba) 25.27/10.78 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.27/10.78 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.27/10.78 new_compare0([], :(vyw32000, vyw32001), bae) -> LT 25.27/10.78 new_asAs(True, vyw93) -> vyw93 25.27/10.78 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.27/10.78 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.27/10.78 new_esEs19(vyw501, vyw3001, app(ty_[], cae)) -> new_esEs17(vyw501, vyw3001, cae) 25.27/10.78 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.27/10.78 new_esEs25(vyw500, vyw3000, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, cgh) -> new_esEs15(vyw500, vyw3000) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.27/10.78 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dca)) -> new_lt4(vyw31000, vyw32000, dca) 25.27/10.78 new_lt20(vyw31000, vyw32000, app(app(ty_@2, bea), beb)) -> new_lt10(vyw31000, vyw32000, bea, beb) 25.27/10.78 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.27/10.78 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.27/10.78 new_esEs6(Left(vyw500), Right(vyw3000), dac, cgh) -> False 25.27/10.78 new_esEs6(Right(vyw500), Left(vyw3000), dac, cgh) -> False 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, gb) -> new_ltEs12(vyw31000, vyw32000) 25.27/10.78 new_esEs19(vyw501, vyw3001, app(ty_Ratio, bhg)) -> new_esEs13(vyw501, vyw3001, bhg) 25.27/10.78 new_lt11(vyw31001, vyw32001, app(ty_Maybe, de)) -> new_lt15(vyw31001, vyw32001, de) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_ltEs13(vyw31000, vyw32000, gc, gd, ge) 25.27/10.78 new_esEs18(vyw500, vyw3000, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw500, vyw3000, bgc, bgd) 25.27/10.78 new_esEs24(vyw501, vyw3001, app(app(ty_@2, cee), cef)) -> new_esEs7(vyw501, vyw3001, cee, cef) 25.27/10.78 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.27/10.78 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.27/10.78 new_primCompAux00(vyw112, EQ) -> vyw112 25.27/10.78 new_compare0([], [], bae) -> EQ 25.27/10.78 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.27/10.78 new_ltEs16(GT, GT) -> True 25.27/10.78 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.27/10.78 new_ltEs9(False, False) -> True 25.27/10.78 new_primMulNat0(Zero, Zero) -> Zero 25.27/10.78 new_compare10(vyw31000, vyw32000, False) -> GT 25.27/10.78 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.27/10.78 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.27/10.78 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.27/10.78 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, dab), cgh) -> new_esEs4(vyw500, vyw3000, dab) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, cc)) -> new_ltEs11(vyw31002, vyw32002, cc) 25.27/10.78 new_compare211(vyw31000, vyw32000, True) -> EQ 25.27/10.78 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, bda)) -> new_esEs4(vyw31000, vyw32000, bda) 25.27/10.78 new_esEs23(vyw502, vyw3002, app(app(ty_@2, cdc), cdd)) -> new_esEs7(vyw502, vyw3002, cdc, cdd) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], gh), gb) -> new_ltEs5(vyw31000, vyw32000, gh) 25.27/10.78 new_ltEs11(Nothing, Just(vyw32000), cgf) -> True 25.27/10.78 new_compare28(vyw31000, vyw32000, True, eh, fa, fb) -> EQ 25.27/10.78 new_esEs4(Nothing, Nothing, bec) -> True 25.27/10.78 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dbh)) -> new_ltEs6(vyw31001, vyw32001, dbh) 25.27/10.78 new_esEs4(Nothing, Just(vyw3000), bec) -> False 25.27/10.78 new_esEs4(Just(vyw500), Nothing, bec) -> False 25.27/10.78 new_esEs20(vyw500, vyw3000, app(ty_[], cbg)) -> new_esEs17(vyw500, vyw3000, cbg) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, app(ty_[], bab)) -> new_ltEs5(vyw31000, vyw32000, bab) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.27/10.78 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.27/10.78 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, gb) -> new_ltEs16(vyw31000, vyw32000) 25.27/10.78 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cce, ccf, ccg) -> new_asAs(new_esEs25(vyw500, vyw3000, cce), new_asAs(new_esEs24(vyw501, vyw3001, ccf), new_esEs23(vyw502, vyw3002, ccg))) 25.27/10.78 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.27/10.78 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.27/10.78 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.27/10.78 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.27/10.78 new_esEs24(vyw501, vyw3001, app(ty_Ratio, ced)) -> new_esEs13(vyw501, vyw3001, ced) 25.27/10.78 new_esEs19(vyw501, vyw3001, app(app(ty_Either, bhe), bhf)) -> new_esEs6(vyw501, vyw3001, bhe, bhf) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, cgf)) -> new_ltEs11(vyw3100, vyw3200, cgf) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, app(ty_Maybe, dbe)) -> new_esEs4(vyw500, vyw3000, dbe) 25.27/10.78 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.27/10.78 new_ltEs9(True, False) -> False 25.27/10.78 new_esEs9(EQ, EQ) -> True 25.27/10.78 new_lt12(vyw31000, vyw32000, app(app(ty_Either, fc), fd)) -> new_lt6(vyw31000, vyw32000, fc, fd) 25.27/10.78 new_lt11(vyw31001, vyw32001, app(ty_[], ed)) -> new_lt18(vyw31001, vyw32001, ed) 25.27/10.78 new_esEs21(vyw31001, vyw32001, app(ty_[], ed)) -> new_esEs17(vyw31001, vyw32001, ed) 25.27/10.78 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.27/10.78 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.27/10.78 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.27/10.78 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.27/10.78 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.27/10.78 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs13(vyw31000, vyw32000, he, hf, hg) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, bd), be)) -> new_ltEs8(vyw31000, vyw32000, bd, be) 25.27/10.78 new_compare24(vyw31000, vyw32000, True) -> EQ 25.27/10.78 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, bea), beb)) -> new_esEs7(vyw31000, vyw32000, bea, beb) 25.27/10.78 new_esEs20(vyw500, vyw3000, app(app(ty_Either, cag), cah)) -> new_esEs6(vyw500, vyw3000, cag, cah) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.27/10.78 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.27/10.78 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.27/10.78 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.27/10.78 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.27/10.78 new_compare30(vyw31000, vyw32000, app(ty_[], bbd)) -> new_compare0(vyw31000, vyw32000, bbd) 25.27/10.78 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.27/10.78 new_compare23(Nothing, Just(vyw3200), False, dbf) -> LT 25.27/10.78 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.27/10.78 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.27/10.78 new_compare111(vyw86, vyw87, False, dcb) -> GT 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.27/10.78 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.27/10.78 new_compare110(vyw31000, vyw32000, True, eh, fa, fb) -> LT 25.27/10.78 new_ltEs6(vyw3100, vyw3200, bhb) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, bhb), GT)) 25.27/10.78 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, ccc)) -> new_ltEs6(vyw31002, vyw32002, ccc) 25.27/10.78 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.27/10.78 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.27/10.78 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.27/10.78 new_esEs19(vyw501, vyw3001, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw501, vyw3001, bhh, caa) 25.27/10.78 new_compare23(Nothing, Nothing, False, dbf) -> LT 25.27/10.78 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, ha), hb), gb) -> new_ltEs17(vyw31000, vyw32000, ha, hb) 25.27/10.78 new_ltEs8(Left(vyw31000), Right(vyw32000), hc, gb) -> True 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cgg)) -> new_ltEs6(vyw31000, vyw32000, cgg) 25.27/10.78 new_not(False) -> True 25.27/10.78 new_lt11(vyw31001, vyw32001, app(ty_Ratio, ccd)) -> new_lt4(vyw31001, vyw32001, ccd) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, app(ty_Ratio, daf)) -> new_esEs13(vyw500, vyw3000, daf) 25.27/10.78 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dca)) -> new_esEs13(vyw31000, vyw32000, dca) 25.27/10.78 new_esEs24(vyw501, vyw3001, app(ty_[], cfb)) -> new_esEs17(vyw501, vyw3001, cfb) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, bcg), bch)) -> new_ltEs17(vyw31001, vyw32001, bcg, bch) 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.27/10.78 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.27/10.78 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.27/10.78 new_esEs9(GT, GT) -> True 25.27/10.78 new_compare0(:(vyw31000, vyw31001), [], bae) -> GT 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.27/10.78 new_compare27(vyw31000, vyw32000, eh, fa, fb) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.27/10.78 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs5(vyw31000, vyw32000, bdc, bdd, bde) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.27/10.78 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.27/10.78 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.27/10.78 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, bbg), bdb)) -> new_ltEs17(vyw3100, vyw3200, bbg, bdb) 25.27/10.78 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.27/10.78 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.27/10.78 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, gb) -> new_ltEs7(vyw31000, vyw32000) 25.27/10.78 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.27/10.78 new_esEs9(EQ, GT) -> False 25.27/10.78 new_esEs9(GT, EQ) -> False 25.27/10.78 new_ltEs18(vyw31002, vyw32002, app(ty_[], db)) -> new_ltEs5(vyw31002, vyw32002, db) 25.27/10.78 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.27/10.78 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.27/10.78 new_compare11(vyw31000, vyw32000, True, fg, fh) -> LT 25.27/10.78 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.27/10.78 new_compare12(vyw31000, vyw32000, fc, fd) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.27/10.78 new_lt20(vyw31000, vyw32000, app(ty_Maybe, bda)) -> new_lt15(vyw31000, vyw32000, bda) 25.27/10.78 new_esEs8(True, True) -> True 25.27/10.78 new_lt11(vyw31001, vyw32001, app(app(ty_Either, eb), ec)) -> new_lt6(vyw31001, vyw32001, eb, ec) 25.27/10.78 new_compare29(vyw31000, vyw32000, False, fc, fd) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, fc, fd), fc, fd) 25.27/10.78 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.27/10.78 new_compare10(vyw31000, vyw32000, True) -> LT 25.27/10.78 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.27/10.78 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.27/10.78 new_primPlusNat1(Zero, Zero) -> Zero 25.27/10.78 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, bae), bae) 25.27/10.78 new_compare13(vyw31000, vyw32000, eg) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.27/10.78 new_esEs22(vyw31000, vyw32000, app(ty_[], ff)) -> new_esEs17(vyw31000, vyw32000, ff) 25.27/10.78 new_compare111(vyw86, vyw87, True, dcb) -> LT 25.27/10.78 new_esEs25(vyw500, vyw3000, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.27/10.78 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.27/10.78 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.27/10.78 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.27/10.78 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.27/10.78 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.27/10.78 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.27/10.78 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.27/10.78 new_lt20(vyw31000, vyw32000, app(ty_[], bdh)) -> new_lt18(vyw31000, vyw32000, bdh) 25.27/10.78 new_esEs18(vyw500, vyw3000, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw500, vyw3000, bfh, bga) 25.27/10.78 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.27/10.78 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.27/10.78 new_lt18(vyw31000, vyw32000, ff) -> new_esEs9(new_compare0(vyw31000, vyw32000, ff), LT) 25.27/10.78 new_esEs6(Right(vyw500), Right(vyw3000), dac, app(ty_[], dbd)) -> new_esEs17(vyw500, vyw3000, dbd) 25.27/10.78 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.27/10.78 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.27/10.78 new_esEs12(@0, @0) -> True 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.27/10.78 new_compare29(vyw31000, vyw32000, True, fc, fd) -> EQ 25.27/10.78 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.27/10.78 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.27/10.78 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.27/10.78 new_lt6(vyw31000, vyw32000, fc, fd) -> new_esEs9(new_compare12(vyw31000, vyw32000, fc, fd), LT) 25.27/10.78 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31001, vyw32001, ee, ef) 25.27/10.78 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.27/10.78 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.27/10.78 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.27/10.78 new_ltEs11(Just(vyw31000), Nothing, cgf) -> False 25.27/10.78 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.27/10.78 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.27/10.78 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, dc), dd)) -> new_ltEs17(vyw31002, vyw32002, dc, dd) 25.27/10.78 new_ltEs11(Nothing, Nothing, cgf) -> True 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, beg), beh)) -> new_esEs7(vyw500, vyw3000, beg, beh) 25.27/10.78 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.27/10.78 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.27/10.78 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.27/10.78 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.27/10.78 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, bdf), bdg)) -> new_esEs6(vyw31000, vyw32000, bdf, bdg) 25.27/10.78 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.27/10.78 new_primEqNat0(Zero, Zero) -> True 25.27/10.78 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.27/10.78 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.27/10.78 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.27/10.78 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.27/10.78 new_ltEs20(vyw31001, vyw32001, app(ty_[], bcf)) -> new_ltEs5(vyw31001, vyw32001, bcf) 25.27/10.78 new_compare210(vyw31000, vyw32000, False, fg, fh) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, fg, fh), fg, fh) 25.27/10.78 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.27/10.78 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.27/10.78 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.27/10.78 new_esEs9(LT, GT) -> False 25.27/10.78 new_esEs9(GT, LT) -> False 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, app(ty_Ratio, ccb)) -> new_ltEs6(vyw31000, vyw32000, ccb) 25.27/10.78 new_esEs17(:(vyw500, vyw501), [], bfg) -> False 25.27/10.78 new_esEs17([], :(vyw3000, vyw3001), bfg) -> False 25.27/10.78 new_asAs(False, vyw93) -> False 25.27/10.78 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_lt17(vyw31000, vyw32000, bdc, bdd, bde) 25.27/10.78 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.27/10.78 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.27/10.78 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.27/10.78 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.27/10.78 new_ltEs8(Right(vyw31000), Right(vyw32000), hc, app(app(ty_@2, bac), bad)) -> new_ltEs17(vyw31000, vyw32000, bac, bad) 25.27/10.78 new_lt4(vyw31000, vyw32000, bff) -> new_esEs9(new_compare7(vyw31000, vyw32000, bff), LT) 25.27/10.78 new_esEs20(vyw500, vyw3000, app(app(ty_@2, cbb), cbc)) -> new_esEs7(vyw500, vyw3000, cbb, cbc) 25.27/10.78 25.27/10.78 The set Q consists of the following terms: 25.27/10.78 25.27/10.78 new_lt12(x0, x1, ty_Integer) 25.27/10.78 new_compare0([], [], x0) 25.27/10.78 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.27/10.78 new_lt19(x0, x1) 25.27/10.78 new_esEs28(x0, x1, ty_Ordering) 25.27/10.78 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.27/10.78 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.27/10.78 new_ltEs20(x0, x1, ty_@0) 25.27/10.78 new_lt20(x0, x1, ty_Float) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_esEs19(x0, x1, ty_@0) 25.27/10.78 new_esEs16(x0, x1) 25.27/10.78 new_compare23(Just(x0), Just(x1), False, x2) 25.27/10.78 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_esEs28(x0, x1, ty_Double) 25.27/10.78 new_esEs23(x0, x1, ty_Int) 25.27/10.78 new_esEs22(x0, x1, ty_Int) 25.27/10.78 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_ltEs19(x0, x1, app(ty_[], x2)) 25.27/10.78 new_ltEs20(x0, x1, ty_Bool) 25.27/10.78 new_primPlusNat1(Zero, Zero) 25.27/10.78 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.27/10.78 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_compare16(x0, x1, False) 25.27/10.78 new_esEs22(x0, x1, ty_Char) 25.27/10.78 new_esEs23(x0, x1, ty_Ordering) 25.27/10.78 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_esEs19(x0, x1, ty_Bool) 25.27/10.78 new_primMulNat0(Zero, Succ(x0)) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.27/10.78 new_compare30(x0, x1, ty_Ordering) 25.27/10.78 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.27/10.78 new_compare12(x0, x1, x2, x3) 25.27/10.78 new_compare30(x0, x1, ty_Int) 25.27/10.78 new_primMulNat0(Succ(x0), Succ(x1)) 25.27/10.78 new_primEqInt(Pos(Zero), Pos(Zero)) 25.27/10.78 new_primCompAux00(x0, GT) 25.27/10.78 new_esEs23(x0, x1, ty_Char) 25.27/10.78 new_esEs20(x0, x1, ty_Integer) 25.27/10.78 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_esEs4(Nothing, Nothing, x0) 25.27/10.78 new_esEs17(:(x0, x1), [], x2) 25.27/10.78 new_compare111(x0, x1, True, x2) 25.27/10.78 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_lt20(x0, x1, app(ty_[], x2)) 25.27/10.78 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.27/10.78 new_primEqInt(Neg(Zero), Neg(Zero)) 25.27/10.78 new_pePe(True, x0) 25.27/10.78 new_ltEs18(x0, x1, ty_Float) 25.27/10.78 new_compare30(x0, x1, ty_Char) 25.27/10.78 new_compare27(x0, x1, x2, x3, x4) 25.27/10.78 new_lt13(x0, x1) 25.27/10.78 new_esEs23(x0, x1, ty_Double) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.27/10.78 new_esEs21(x0, x1, ty_@0) 25.27/10.78 new_ltEs16(GT, EQ) 25.27/10.78 new_ltEs16(EQ, GT) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.27/10.78 new_primCmpNat0(Succ(x0), Zero) 25.27/10.78 new_compare28(x0, x1, True, x2, x3, x4) 25.27/10.78 new_compare30(x0, x1, ty_Double) 25.27/10.78 new_lt5(x0, x1) 25.27/10.78 new_compare25(@0, @0) 25.27/10.78 new_ltEs9(True, True) 25.27/10.78 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.27/10.78 new_esEs20(x0, x1, app(ty_[], x2)) 25.27/10.78 new_esEs21(x0, x1, ty_Int) 25.27/10.78 new_esEs19(x0, x1, ty_Char) 25.27/10.78 new_esEs9(LT, LT) 25.27/10.78 new_ltEs16(LT, LT) 25.27/10.78 new_esEs21(x0, x1, ty_Integer) 25.27/10.78 new_esEs21(x0, x1, app(ty_[], x2)) 25.27/10.78 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.27/10.78 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.27/10.78 new_esEs24(x0, x1, ty_Int) 25.27/10.78 new_compare11(x0, x1, False, x2, x3) 25.27/10.78 new_esEs9(EQ, GT) 25.27/10.78 new_esEs9(GT, EQ) 25.27/10.78 new_lt11(x0, x1, ty_Integer) 25.27/10.78 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.27/10.78 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.27/10.78 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_esEs18(x0, x1, ty_Ordering) 25.27/10.78 new_esEs18(x0, x1, ty_Integer) 25.27/10.78 new_esEs8(False, True) 25.27/10.78 new_esEs8(True, False) 25.27/10.78 new_compare23(Nothing, Nothing, False, x0) 25.27/10.78 new_lt11(x0, x1, ty_Bool) 25.27/10.78 new_ltEs20(x0, x1, ty_Integer) 25.27/10.78 new_esEs21(x0, x1, ty_Char) 25.27/10.78 new_esEs8(True, True) 25.27/10.78 new_esEs18(x0, x1, app(ty_[], x2)) 25.27/10.78 new_lt7(x0, x1) 25.27/10.78 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.27/10.78 new_esEs17([], [], x0) 25.27/10.78 new_lt10(x0, x1, x2, x3) 25.27/10.78 new_esEs21(x0, x1, ty_Bool) 25.27/10.78 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_primEqInt(Pos(Zero), Neg(Zero)) 25.27/10.78 new_primEqInt(Neg(Zero), Pos(Zero)) 25.27/10.78 new_esEs24(x0, x1, ty_Double) 25.27/10.78 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs19(x0, x1, ty_Double) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.27/10.78 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.27/10.78 new_esEs22(x0, x1, ty_Ordering) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.27/10.78 new_lt4(x0, x1, x2) 25.27/10.78 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.27/10.78 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_ltEs20(x0, x1, ty_Ordering) 25.27/10.78 new_esEs24(x0, x1, ty_Char) 25.27/10.78 new_esEs19(x0, x1, ty_Int) 25.27/10.78 new_compare8(Integer(x0), Integer(x1)) 25.27/10.78 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.27/10.78 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_primPlusNat0(Zero, x0) 25.27/10.78 new_esEs27(x0, x1, ty_Int) 25.27/10.78 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs11(Nothing, Just(x0), x1) 25.27/10.78 new_esEs19(x0, x1, ty_Double) 25.27/10.78 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_esEs22(x0, x1, ty_Integer) 25.27/10.78 new_esEs28(x0, x1, ty_Bool) 25.27/10.78 new_ltEs19(x0, x1, ty_Int) 25.27/10.78 new_ltEs20(x0, x1, ty_Double) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.27/10.78 new_esEs25(x0, x1, ty_Char) 25.27/10.78 new_lt18(x0, x1, x2) 25.27/10.78 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.27/10.78 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.27/10.78 new_compare23(x0, x1, True, x2) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.27/10.78 new_compare30(x0, x1, ty_@0) 25.27/10.78 new_lt20(x0, x1, ty_@0) 25.27/10.78 new_esEs24(x0, x1, ty_@0) 25.27/10.78 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.27/10.78 new_esEs19(x0, x1, ty_Float) 25.27/10.78 new_ltEs16(GT, GT) 25.27/10.78 new_esEs23(x0, x1, ty_@0) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.27/10.78 new_compare111(x0, x1, False, x2) 25.27/10.78 new_compare23(Just(x0), Nothing, False, x1) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.27/10.78 new_esEs21(x0, x1, ty_Double) 25.27/10.78 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_compare24(x0, x1, False) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.27/10.78 new_ltEs19(x0, x1, ty_Float) 25.27/10.78 new_esEs10(Char(x0), Char(x1)) 25.27/10.78 new_ltEs16(LT, EQ) 25.27/10.78 new_ltEs16(EQ, LT) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.27/10.78 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.27/10.78 new_compare6(Char(x0), Char(x1)) 25.27/10.78 new_asAs(False, x0) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.27/10.78 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.27/10.78 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.27/10.78 new_esEs25(x0, x1, ty_Int) 25.27/10.78 new_primEqNat0(Zero, Succ(x0)) 25.27/10.78 new_esEs21(x0, x1, ty_Ordering) 25.27/10.78 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs7(x0, x1) 25.27/10.78 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.27/10.78 new_compare211(x0, x1, True) 25.27/10.78 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.27/10.78 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.27/10.78 new_esEs22(x0, x1, ty_Bool) 25.27/10.78 new_lt11(x0, x1, ty_Char) 25.27/10.78 new_ltEs18(x0, x1, ty_Integer) 25.27/10.78 new_compare30(x0, x1, app(ty_[], x2)) 25.27/10.78 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.27/10.78 new_ltEs9(False, True) 25.27/10.78 new_ltEs9(True, False) 25.27/10.78 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.27/10.78 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.27/10.78 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_compare13(x0, x1, x2) 25.27/10.78 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.27/10.78 new_ltEs14(x0, x1) 25.27/10.78 new_esEs24(x0, x1, ty_Integer) 25.27/10.78 new_primEqNat0(Succ(x0), Succ(x1)) 25.27/10.78 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.27/10.78 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.27/10.78 new_ltEs15(x0, x1) 25.27/10.78 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_lt12(x0, x1, ty_@0) 25.27/10.78 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_lt11(x0, x1, ty_Int) 25.27/10.78 new_compare210(x0, x1, False, x2, x3) 25.27/10.78 new_esEs18(x0, x1, ty_Bool) 25.27/10.78 new_esEs25(x0, x1, ty_Float) 25.27/10.78 new_esEs20(x0, x1, ty_Float) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.27/10.78 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.27/10.78 new_esEs18(x0, x1, ty_Float) 25.27/10.78 new_esEs20(x0, x1, ty_Bool) 25.27/10.78 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_esEs24(x0, x1, ty_Ordering) 25.27/10.78 new_ltEs18(x0, x1, app(ty_[], x2)) 25.27/10.78 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_ltEs11(Just(x0), Nothing, x1) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.27/10.78 new_esEs6(Left(x0), Right(x1), x2, x3) 25.27/10.78 new_esEs6(Right(x0), Left(x1), x2, x3) 25.27/10.78 new_esEs18(x0, x1, ty_Char) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.27/10.78 new_primPlusNat1(Succ(x0), Zero) 25.27/10.78 new_ltEs18(x0, x1, ty_Bool) 25.27/10.78 new_lt9(x0, x1) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.27/10.78 new_esEs20(x0, x1, ty_Int) 25.27/10.78 new_pePe(False, x0) 25.27/10.78 new_esEs28(x0, x1, ty_Char) 25.27/10.78 new_lt11(x0, x1, ty_Float) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.27/10.78 new_ltEs20(x0, x1, app(ty_[], x2)) 25.27/10.78 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.27/10.78 new_esEs22(x0, x1, app(ty_[], x2)) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.27/10.78 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.27/10.78 new_lt12(x0, x1, ty_Double) 25.27/10.78 new_compare10(x0, x1, False) 25.27/10.78 new_esEs18(x0, x1, ty_Int) 25.27/10.78 new_esEs20(x0, x1, ty_Char) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.27/10.78 new_esEs22(x0, x1, ty_Float) 25.27/10.78 new_compare26(x0, x1) 25.27/10.78 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.27/10.78 new_compare29(x0, x1, True, x2, x3) 25.27/10.78 new_esEs28(x0, x1, ty_Int) 25.27/10.78 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.27/10.78 new_esEs4(Nothing, Just(x0), x1) 25.27/10.78 new_esEs25(x0, x1, ty_Integer) 25.27/10.78 new_lt15(x0, x1, x2) 25.27/10.78 new_esEs9(EQ, EQ) 25.27/10.78 new_lt20(x0, x1, ty_Double) 25.27/10.78 new_ltEs16(EQ, EQ) 25.27/10.78 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_primCompAux00(x0, LT) 25.27/10.78 new_esEs27(x0, x1, ty_Integer) 25.27/10.78 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.27/10.78 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.27/10.78 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.27/10.78 new_compare30(x0, x1, ty_Float) 25.27/10.78 new_ltEs18(x0, x1, ty_Char) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.27/10.78 new_esEs4(Just(x0), Just(x1), ty_@0) 25.27/10.78 new_primEqNat0(Succ(x0), Zero) 25.27/10.78 new_primMulNat0(Zero, Zero) 25.27/10.78 new_compare19(x0, x1, False, x2, x3) 25.27/10.78 new_compare0(:(x0, x1), :(x2, x3), x4) 25.27/10.78 new_lt20(x0, x1, ty_Ordering) 25.27/10.78 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.27/10.78 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.27/10.78 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.27/10.78 new_esEs28(x0, x1, ty_Float) 25.27/10.78 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.27/10.78 new_ltEs18(x0, x1, ty_Int) 25.27/10.78 new_compare110(x0, x1, True, x2, x3, x4) 25.27/10.78 new_lt11(x0, x1, ty_Double) 25.27/10.78 new_esEs24(x0, x1, ty_Float) 25.27/10.78 new_primMulInt(Pos(x0), Pos(x1)) 25.27/10.78 new_ltEs18(x0, x1, ty_Ordering) 25.27/10.78 new_ltEs19(x0, x1, ty_@0) 25.27/10.78 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_esEs25(x0, x1, app(ty_[], x2)) 25.27/10.78 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.27/10.78 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.27/10.78 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_lt16(x0, x1) 25.27/10.78 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.27/10.78 new_primCmpNat0(Zero, Succ(x0)) 25.27/10.78 new_ltEs19(x0, x1, ty_Integer) 25.27/10.78 new_lt8(x0, x1) 25.27/10.78 new_lt6(x0, x1, x2, x3) 25.27/10.78 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.27/10.78 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.27/10.78 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.27/10.78 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_sr0(Integer(x0), Integer(x1)) 25.27/10.78 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.27/10.78 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.27/10.78 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_esEs20(x0, x1, ty_Ordering) 25.27/10.78 new_not(True) 25.27/10.78 new_esEs4(Just(x0), Just(x1), ty_Int) 25.27/10.78 new_compare0([], :(x0, x1), x2) 25.27/10.78 new_compare29(x0, x1, False, x2, x3) 25.27/10.78 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.27/10.78 new_primPlusNat1(Zero, Succ(x0)) 25.27/10.78 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.27/10.78 new_lt11(x0, x1, app(ty_[], x2)) 25.27/10.78 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.27/10.78 new_lt11(x0, x1, ty_Ordering) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_esEs25(x0, x1, ty_Bool) 25.27/10.78 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.27/10.78 new_primMulInt(Pos(x0), Neg(x1)) 25.27/10.78 new_primMulInt(Neg(x0), Pos(x1)) 25.27/10.78 new_primCompAux00(x0, EQ) 25.27/10.78 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.27/10.78 new_lt12(x0, x1, ty_Ordering) 25.27/10.78 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.27/10.78 new_esEs28(x0, x1, ty_Integer) 25.27/10.78 new_lt14(x0, x1) 25.27/10.78 new_ltEs19(x0, x1, ty_Char) 25.27/10.78 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.27/10.78 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.27/10.78 new_esEs24(x0, x1, ty_Bool) 25.27/10.78 new_compare28(x0, x1, False, x2, x3, x4) 25.27/10.78 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.27/10.78 new_esEs9(LT, EQ) 25.27/10.78 new_esEs9(EQ, LT) 25.27/10.78 new_compare24(x0, x1, True) 25.27/10.78 new_compare110(x0, x1, False, x2, x3, x4) 25.27/10.78 new_lt17(x0, x1, x2, x3, x4) 25.27/10.78 new_esEs4(Just(x0), Just(x1), ty_Double) 25.27/10.78 new_primCompAux0(x0, x1, x2, x3) 25.27/10.78 new_esEs9(GT, GT) 25.27/10.78 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.27/10.78 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.27/10.78 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.27/10.78 new_ltEs16(LT, GT) 25.27/10.78 new_ltEs16(GT, LT) 25.27/10.78 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.27/10.78 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.27/10.78 new_ltEs10(x0, x1) 25.27/10.78 new_compare30(x0, x1, ty_Integer) 25.27/10.78 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.27/10.78 new_esEs4(Just(x0), Just(x1), ty_Char) 25.27/10.78 new_esEs23(x0, x1, ty_Float) 25.27/10.78 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.30/10.78 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.30/10.78 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.78 new_asAs(True, x0) 25.30/10.78 new_primMulNat0(Succ(x0), Zero) 25.30/10.78 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.30/10.78 new_ltEs19(x0, x1, ty_Bool) 25.30/10.78 new_esEs23(x0, x1, app(ty_[], x2)) 25.30/10.78 new_ltEs11(Nothing, Nothing, x0) 25.30/10.78 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.30/10.78 new_esEs9(LT, GT) 25.30/10.78 new_esEs9(GT, LT) 25.30/10.78 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.30/10.78 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.78 new_ltEs5(x0, x1, x2) 25.30/10.78 new_compare30(x0, x1, ty_Bool) 25.30/10.78 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.78 new_lt20(x0, x1, ty_Bool) 25.30/10.78 new_esEs23(x0, x1, ty_Bool) 25.30/10.78 new_esEs19(x0, x1, ty_Ordering) 25.30/10.78 new_esEs24(x0, x1, app(ty_[], x2)) 25.30/10.78 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.78 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.78 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.30/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.30/10.78 new_ltEs20(x0, x1, ty_Float) 25.30/10.78 new_esEs12(@0, @0) 25.30/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.30/10.78 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.30/10.78 new_compare9(x0, x1) 25.30/10.78 new_lt11(x0, x1, ty_@0) 25.30/10.78 new_compare16(x0, x1, True) 25.30/10.78 new_esEs4(Just(x0), Just(x1), ty_Float) 25.30/10.78 new_primPlusNat0(Succ(x0), x1) 25.30/10.78 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.30/10.78 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.30/10.78 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.30/10.78 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.30/10.78 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.30/10.78 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.30/10.78 new_esEs25(x0, x1, ty_Ordering) 25.30/10.78 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.78 new_compare10(x0, x1, True) 25.30/10.78 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.30/10.78 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.30/10.78 new_esEs21(x0, x1, ty_Float) 25.30/10.78 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.30/10.78 new_ltEs19(x0, x1, ty_Ordering) 25.30/10.78 new_esEs26(x0, x1, ty_Int) 25.30/10.78 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.30/10.78 new_esEs25(x0, x1, ty_Double) 25.30/10.78 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.30/10.78 new_compare18(x0, x1, x2, x3) 25.30/10.78 new_compare19(x0, x1, True, x2, x3) 25.30/10.78 new_lt20(x0, x1, ty_Integer) 25.30/10.78 new_compare210(x0, x1, True, x2, x3) 25.30/10.78 new_ltEs4(x0, x1) 25.30/10.78 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.30/10.78 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.78 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.30/10.78 new_primEqNat0(Zero, Zero) 25.30/10.78 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.78 new_lt20(x0, x1, ty_Char) 25.30/10.78 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.30/10.78 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.30/10.78 new_ltEs9(False, False) 25.30/10.78 new_esEs4(Just(x0), Nothing, x1) 25.30/10.78 new_not(False) 25.30/10.78 new_esEs25(x0, x1, ty_@0) 25.30/10.78 new_esEs28(x0, x1, app(ty_[], x2)) 25.30/10.78 new_esEs22(x0, x1, ty_@0) 25.30/10.78 new_ltEs20(x0, x1, ty_Char) 25.30/10.78 new_esEs8(False, False) 25.30/10.78 new_ltEs18(x0, x1, ty_@0) 25.30/10.78 new_esEs19(x0, x1, ty_Integer) 25.30/10.78 new_compare23(Nothing, Just(x0), False, x1) 25.30/10.78 new_ltEs6(x0, x1, x2) 25.30/10.78 new_esEs22(x0, x1, ty_Double) 25.30/10.78 new_compare15(x0, x1) 25.30/10.78 new_primMulInt(Neg(x0), Neg(x1)) 25.30/10.78 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.30/10.78 new_lt12(x0, x1, ty_Bool) 25.30/10.78 new_ltEs12(x0, x1) 25.30/10.78 new_lt12(x0, x1, ty_Float) 25.30/10.78 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.30/10.78 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.30/10.78 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.30/10.78 new_esEs26(x0, x1, ty_Integer) 25.30/10.78 new_esEs18(x0, x1, ty_@0) 25.30/10.78 new_sr(x0, x1) 25.30/10.78 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.30/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.30/10.78 new_compare211(x0, x1, False) 25.30/10.78 new_lt20(x0, x1, ty_Int) 25.30/10.78 new_esEs17([], :(x0, x1), x2) 25.30/10.78 new_esEs18(x0, x1, ty_Double) 25.30/10.78 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.78 new_esEs23(x0, x1, ty_Integer) 25.30/10.78 new_esEs20(x0, x1, ty_@0) 25.30/10.78 new_primPlusNat1(Succ(x0), Succ(x1)) 25.30/10.78 new_esEs28(x0, x1, ty_@0) 25.30/10.78 new_esEs19(x0, x1, app(ty_[], x2)) 25.30/10.78 new_ltEs18(x0, x1, ty_Double) 25.30/10.78 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.30/10.78 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.30/10.78 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.30/10.78 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.78 new_ltEs20(x0, x1, ty_Int) 25.30/10.78 new_compare0(:(x0, x1), [], x2) 25.30/10.78 new_esEs20(x0, x1, ty_Double) 25.30/10.78 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.30/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.30/10.78 new_lt12(x0, x1, app(ty_[], x2)) 25.30/10.78 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.30/10.78 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.30/10.78 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.78 new_lt12(x0, x1, ty_Char) 25.30/10.78 new_primCmpNat0(Succ(x0), Succ(x1)) 25.30/10.78 new_compare11(x0, x1, True, x2, x3) 25.30/10.78 new_lt12(x0, x1, ty_Int) 25.30/10.78 new_primCmpNat0(Zero, Zero) 25.30/10.78 new_esEs14(Integer(x0), Integer(x1)) 25.30/10.78 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.30/10.78 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.78 25.30/10.78 We have to consider all minimal (P,Q,R)-chains. 25.30/10.78 ---------------------------------------- 25.30/10.78 25.30/10.78 (21) QDPSizeChangeProof (EQUIVALENT) 25.30/10.78 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. 25.30/10.78 25.30/10.78 From the DPs we obtained the following set of size-change graphs: 25.30/10.78 *new_lt2(vyw31000, vyw32000, ff) -> new_compare(vyw31000, vyw32000, ff) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(ty_Maybe, eg), cb, df) -> new_compare2(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(app(app(ty_@3, eh), fa), fb), cb, df) -> new_compare20(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(ty_[], db)) -> new_ltEs2(vyw31002, vyw32002, db) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(app(ty_@2, dc), dd)) -> new_ltEs3(vyw31002, vyw32002, dc, dd) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs0(vyw31002, vyw32002, cd, ce, cf) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.30/10.78 25.30/10.78 25.30/10.78 *new_lt1(vyw31000, vyw32000, fc, fd) -> new_compare21(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare3(vyw31000, vyw32000, eh, fa, fb) -> new_compare20(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_primCompAux(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, bae), bae) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_compare(vyw31001, vyw32001, bae) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(app(ty_@2, ee), ef), df) -> new_lt3(vyw31001, vyw32001, ee, ef) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare22(vyw31000, vyw32000, False, fg, fh) -> new_ltEs3(vyw31000, vyw32000, fg, fh) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(app(ty_Either, cg), da)) -> new_ltEs1(vyw31002, vyw32002, cg, da) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs(Just(vyw31000), Just(vyw32000), app(ty_[], bf)) -> new_ltEs2(vyw31000, vyw32000, bf) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs(Just(vyw31000), Just(vyw32000), app(app(ty_@2, bg), bh)) -> new_ltEs3(vyw31000, vyw32000, bg, bh) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, ba), bb), bc)) -> new_ltEs0(vyw31000, vyw32000, ba, bb, bc) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs(Just(vyw31000), Just(vyw32000), app(app(ty_Either, bd), be)) -> new_ltEs1(vyw31000, vyw32000, bd, be) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs(Just(vyw31000), Just(vyw32000), app(ty_Maybe, h)) -> new_ltEs(vyw31000, vyw32000, h) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(ty_[], bcf)) -> new_ltEs2(vyw31001, vyw32001, bcf) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(app(ty_@2, bcg), bch)) -> new_ltEs3(vyw31001, vyw32001, bcg, bch) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs0(vyw31001, vyw32001, bca, bcb, bcc) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(app(ty_@2, bea), beb), bdb) -> new_lt3(vyw31000, vyw32000, bea, beb) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(app(ty_Either, bcd), bce)) -> new_ltEs1(vyw31001, vyw32001, bcd, bce) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare21(vyw31000, vyw32000, False, fc, fd) -> new_ltEs1(vyw31000, vyw32000, fc, fd) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_primCompAux(vyw31000, vyw32000, vyw102, app(app(ty_Either, bbb), bbc)) -> new_compare4(vyw31000, vyw32000, bbb, bbc) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_lt3(vyw31000, vyw32000, fg, fh) -> new_compare22(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(ty_Maybe, eg)), cb), df)) -> new_compare2(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(app(app(ty_@3, eh), fa), fb)), cb), df)) -> new_compare20(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.30/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 25.30/10.78 25.30/10.78 25.30/10.78 *new_lt0(vyw31000, vyw32000, eh, fa, fb) -> new_compare20(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, eh, fa, fb), eh, fa, fb) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare20(vyw31000, vyw32000, False, eh, fa, fb) -> new_ltEs0(vyw31000, vyw32000, eh, fa, fb) 25.30/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 25.30/10.78 25.30/10.78 25.30/10.78 *new_compare2(Just(:(vyw31000, vyw31001)), Just(:(vyw32000, vyw32001)), False, app(ty_[], bae)) -> new_primCompAux(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, bae), bae) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs2(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_primCompAux(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, bae), bae) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_primCompAux(vyw31000, vyw32000, vyw102, app(ty_Maybe, baf)) -> new_compare1(vyw31000, vyw32000, baf) 25.30/10.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_lt(vyw31000, vyw32000, eg) -> new_compare2(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.30/10.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare1(vyw31000, vyw32000, eg) -> new_compare2(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, eg), eg) 25.30/10.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(ty_Maybe, de), df) -> new_lt(vyw31001, vyw32001, de) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(ty_Maybe, bda), bdb) -> new_lt(vyw31000, vyw32000, bda) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs2(:(vyw31000, vyw31001), :(vyw32000, vyw32001), bae) -> new_compare(vyw31001, vyw32001, bae) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, cb, app(ty_Maybe, cc)) -> new_ltEs(vyw31002, vyw32002, cc) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), bbg, app(ty_Maybe, bbh)) -> new_ltEs(vyw31001, vyw32001, bbh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(ty_[], ed), df) -> new_lt2(vyw31001, vyw32001, ed) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(ty_[], bdh), bdb) -> new_lt2(vyw31000, vyw32000, bdh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(app(ty_Either, eb), ec), df) -> new_lt1(vyw31001, vyw32001, eb, ec) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(app(ty_Either, bdf), bdg), bdb) -> new_lt1(vyw31000, vyw32000, bdf, bdg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs3(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), app(app(app(ty_@3, bdc), bdd), bde), bdb) -> new_lt0(vyw31000, vyw32000, bdc, bdd, bde) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(app(ty_Either, fc), fd), cb, df) -> new_compare21(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(app(ty_Either, fc), fd)), cb), df)) -> new_compare21(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare4(vyw31000, vyw32000, fc, fd) -> new_compare21(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, fc, fd), fc, fd) 25.30/10.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare5(vyw31000, vyw32000, fg, fh) -> new_compare22(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.30/10.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_primCompAux(vyw31000, vyw32000, vyw102, app(app(app(ty_@3, bag), bah), bba)) -> new_compare3(vyw31000, vyw32000, bag, bah, bba) 25.30/10.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(app(ty_@2, fg), fh), cb, df) -> new_compare22(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(app(ty_@2, fg), fh)), cb), df)) -> new_compare22(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, fg, fh), fg, fh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), ca, app(app(app(ty_@3, dg), dh), ea), df) -> new_lt0(vyw31001, vyw32001, dg, dh, ea) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs0(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), app(ty_[], ff), cb, df) -> new_compare(vyw31000, vyw32000, ff) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_primCompAux(vyw31000, vyw32000, vyw102, app(ty_[], bbd)) -> new_compare(vyw31000, vyw32000, bbd) 25.30/10.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_primCompAux(vyw31000, vyw32000, vyw102, app(app(ty_@2, bbe), bbf)) -> new_compare5(vyw31000, vyw32000, bbe, bbf) 25.30/10.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Left(vyw31000), Left(vyw32000), app(ty_[], gh), gb) -> new_ltEs2(vyw31000, vyw32000, gh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(ty_[], bab)) -> new_ltEs2(vyw31000, vyw32000, bab) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(ty_[], bcf))) -> new_ltEs2(vyw31001, vyw32001, bcf) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(ty_[], bf))) -> new_ltEs2(vyw31000, vyw32000, bf) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(ty_[], gh)), gb)) -> new_ltEs2(vyw31000, vyw32000, gh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(ty_[], bab))) -> new_ltEs2(vyw31000, vyw32000, bab) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(ty_[], db))) -> new_ltEs2(vyw31002, vyw32002, db) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Left(vyw31000), Left(vyw32000), app(app(ty_@2, ha), hb), gb) -> new_ltEs3(vyw31000, vyw32000, ha, hb) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(app(ty_@2, bac), bad)) -> new_ltEs3(vyw31000, vyw32000, bac, bad) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_ltEs0(vyw31000, vyw32000, gc, gd, ge) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs0(vyw31000, vyw32000, he, hf, hg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs1(vyw31000, vyw32000, hh, baa) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Left(vyw31000), Left(vyw32000), app(app(ty_Either, gf), gg), gb) -> new_ltEs1(vyw31000, vyw32000, gf, gg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Right(vyw31000), Right(vyw32000), hc, app(ty_Maybe, hd)) -> new_ltEs(vyw31000, vyw32000, hd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_ltEs1(Left(vyw31000), Left(vyw32000), app(ty_Maybe, ga), gb) -> new_ltEs(vyw31000, vyw32000, ga) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(app(ty_@2, bac), bad))) -> new_ltEs3(vyw31000, vyw32000, bac, bad) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcg), bch))) -> new_ltEs3(vyw31001, vyw32001, bcg, bch) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(app(ty_@2, ha), hb)), gb)) -> new_ltEs3(vyw31000, vyw32000, ha, hb) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(app(ty_@2, dc), dd))) -> new_ltEs3(vyw31002, vyw32002, dc, dd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(app(ty_@2, bg), bh))) -> new_ltEs3(vyw31000, vyw32000, bg, bh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(app(app(ty_@3, he), hf), hg))) -> new_ltEs0(vyw31000, vyw32000, he, hf, hg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs0(vyw31001, vyw32001, bca, bcb, bcc) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(app(app(ty_@3, ba), bb), bc))) -> new_ltEs0(vyw31000, vyw32000, ba, bb, bc) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(app(app(ty_@3, gc), gd), ge)), gb)) -> new_ltEs0(vyw31000, vyw32000, gc, gd, ge) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(app(app(ty_@3, cd), ce), cf))) -> new_ltEs0(vyw31002, vyw32002, cd, ce, cf) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(app(ty_@2, bea), beb)), bdb)) -> new_lt3(vyw31000, vyw32000, bea, beb) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(app(ty_@2, ee), ef)), df)) -> new_lt3(vyw31001, vyw32001, ee, ef) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(app(ty_Either, gf), gg)), gb)) -> new_ltEs1(vyw31000, vyw32000, gf, gg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(app(ty_Either, bd), be))) -> new_ltEs1(vyw31000, vyw32000, bd, be) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bcd), bce))) -> new_ltEs1(vyw31001, vyw32001, bcd, bce) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(app(ty_Either, cg), da))) -> new_ltEs1(vyw31002, vyw32002, cg, da) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(app(ty_Either, hh), baa))) -> new_ltEs1(vyw31000, vyw32000, hh, baa) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(ty_Maybe, bda)), bdb)) -> new_lt(vyw31000, vyw32000, bda) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(ty_Maybe, de)), df)) -> new_lt(vyw31001, vyw32001, de) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), cb), app(ty_Maybe, cc))) -> new_ltEs(vyw31002, vyw32002, cc) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Right(vyw31000)), Just(Right(vyw32000)), False, app(app(ty_Either, hc), app(ty_Maybe, hd))) -> new_ltEs(vyw31000, vyw32000, hd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Left(vyw31000)), Just(Left(vyw32000)), False, app(app(ty_Either, app(ty_Maybe, ga)), gb)) -> new_ltEs(vyw31000, vyw32000, ga) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(Just(vyw31000)), Just(Just(vyw32000)), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vyw31000, vyw32000, h) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bbh))) -> new_ltEs(vyw31001, vyw32001, bbh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(ty_[], bdh)), bdb)) -> new_lt2(vyw31000, vyw32000, bdh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(ty_[], ed)), df)) -> new_lt2(vyw31001, vyw32001, ed) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(app(ty_Either, bdf), bdg)), bdb)) -> new_lt1(vyw31000, vyw32000, bdf, bdg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(app(ty_Either, eb), ec)), df)) -> new_lt1(vyw31001, vyw32001, eb, ec) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, ca), app(app(app(ty_@3, dg), dh), ea)), df)) -> new_lt0(vyw31001, vyw32001, dg, dh, ea) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@2(vyw31000, vyw31001)), Just(@2(vyw32000, vyw32001)), False, app(app(ty_@2, app(app(app(ty_@3, bdc), bdd), bde)), bdb)) -> new_lt0(vyw31000, vyw32000, bdc, bdd, bde) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(:(vyw31000, vyw31001)), Just(:(vyw32000, vyw32001)), False, app(ty_[], bae)) -> new_compare(vyw31001, vyw32001, bae) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_compare2(Just(@3(vyw31000, vyw31001, vyw31002)), Just(@3(vyw32000, vyw32001, vyw32002)), False, app(app(app(ty_@3, app(ty_[], ff)), cb), df)) -> new_compare(vyw31000, vyw32000, ff) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (22) 25.30/10.79 YES 25.30/10.79 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (23) 25.30/10.79 Obligation: 25.30/10.79 Q DP problem: 25.30/10.79 The TRS P consists of the following rules: 25.30/10.79 25.30/10.79 new_primMulNat(Succ(vyw50000), Succ(vyw300100)) -> new_primMulNat(vyw50000, Succ(vyw300100)) 25.30/10.79 25.30/10.79 R is empty. 25.30/10.79 Q is empty. 25.30/10.79 We have to consider all minimal (P,Q,R)-chains. 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (24) QDPSizeChangeProof (EQUIVALENT) 25.30/10.79 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. 25.30/10.79 25.30/10.79 From the DPs we obtained the following set of size-change graphs: 25.30/10.79 *new_primMulNat(Succ(vyw50000), Succ(vyw300100)) -> new_primMulNat(vyw50000, Succ(vyw300100)) 25.30/10.79 The graph contains the following edges 1 > 1, 2 >= 2 25.30/10.79 25.30/10.79 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (25) 25.30/10.79 YES 25.30/10.79 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (26) 25.30/10.79 Obligation: 25.30/10.79 Q DP problem: 25.30/10.79 The TRS P consists of the following rules: 25.30/10.79 25.30/10.79 new_esEs(Right(vyw500), Right(vyw3000), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs1(vyw500, vyw3000, cg, da, db) 25.30/10.79 new_esEs(Right(vyw500), Right(vyw3000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vyw500, vyw3000, ce, cf) 25.30/10.79 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), bbh) -> new_esEs2(vyw501, vyw3001, bbh) 25.30/10.79 new_esEs(Left(vyw500), Left(vyw3000), app(ty_Maybe, ca), bb) -> new_esEs3(vyw500, vyw3000, ca) 25.30/10.79 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, bcc), bcd)) -> new_esEs0(vyw500, vyw3000, bcc, bcd) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(app(ty_Either, df), dg)) -> new_esEs(vyw501, vyw3001, df, dg) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ga), fa) -> new_esEs3(vyw500, vyw3000, ga) 25.30/10.79 new_esEs3(Just(vyw500), Just(vyw3000), app(app(ty_Either, bdb), bdc)) -> new_esEs(vyw500, vyw3000, bdb, bdc) 25.30/10.79 new_esEs3(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(vyw500, vyw3000, bdf, bdg, bdh) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vyw501, vyw3001, dh, ea) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(ty_Maybe, ef)) -> new_esEs3(vyw501, vyw3001, ef) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bbc), bbd), bbe), gc, hg) -> new_esEs1(vyw500, vyw3000, bbc, bbd, bbe) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(app(ty_Either, gd), ge)) -> new_esEs(vyw502, vyw3002, gd, ge) 25.30/10.79 new_esEs3(Just(vyw500), Just(vyw3000), app(ty_Maybe, beb)) -> new_esEs3(vyw500, vyw3000, beb) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(ty_[], hc)) -> new_esEs2(vyw502, vyw3002, hc) 25.30/10.79 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, bca), bcb)) -> new_esEs(vyw500, vyw3000, bca, bcb) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(ty_[], bae), hg) -> new_esEs2(vyw501, vyw3001, bae) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bbf), gc, hg) -> new_esEs2(vyw500, vyw3000, bbf) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, eg), eh), fa) -> new_esEs(vyw500, vyw3000, eg, eh) 25.30/10.79 new_esEs(Right(vyw500), Right(vyw3000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw500, vyw3000, cc, cd) 25.30/10.79 new_esEs(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs1(vyw500, vyw3000, be, bf, bg) 25.30/10.79 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs1(vyw500, vyw3000, bce, bcf, bcg) 25.30/10.79 new_esEs3(Just(vyw500), Just(vyw3000), app(ty_[], bea)) -> new_esEs2(vyw500, vyw3000, bea) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs1(vyw501, vyw3001, eb, ec, ed) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(app(ty_@2, hh), baa), hg) -> new_esEs0(vyw501, vyw3001, hh, baa) 25.30/10.79 new_esEs(Right(vyw500), Right(vyw3000), cb, app(ty_[], dc)) -> new_esEs2(vyw500, vyw3000, dc) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(ty_Maybe, baf), hg) -> new_esEs3(vyw501, vyw3001, baf) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(app(ty_@2, gf), gg)) -> new_esEs0(vyw502, vyw3002, gf, gg) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bbg), gc, hg) -> new_esEs3(vyw500, vyw3000, bbg) 25.30/10.79 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, bda)) -> new_esEs3(vyw500, vyw3000, bda) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], fh), fa) -> new_esEs2(vyw500, vyw3000, fh) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs1(vyw502, vyw3002, gh, ha, hb) 25.30/10.79 new_esEs3(Just(vyw500), Just(vyw3000), app(app(ty_@2, bdd), bde)) -> new_esEs0(vyw500, vyw3000, bdd, bde) 25.30/10.79 new_esEs(Left(vyw500), Left(vyw3000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw500, vyw3000, h, ba) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(ty_[], ee)) -> new_esEs2(vyw501, vyw3001, ee) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bba), bbb), gc, hg) -> new_esEs0(vyw500, vyw3000, bba, bbb) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(ty_Maybe, hd)) -> new_esEs3(vyw502, vyw3002, hd) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(app(ty_Either, he), hf), hg) -> new_esEs(vyw501, vyw3001, he, hf) 25.30/10.79 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], bch)) -> new_esEs2(vyw500, vyw3000, bch) 25.30/10.79 new_esEs(Left(vyw500), Left(vyw3000), app(ty_[], bh), bb) -> new_esEs2(vyw500, vyw3000, bh) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bag), bah), gc, hg) -> new_esEs(vyw500, vyw3000, bag, bah) 25.30/10.79 new_esEs(Left(vyw500), Left(vyw3000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vyw500, vyw3000, bc, bd) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vyw500, vyw3000, fb, fc) 25.30/10.79 new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(app(app(ty_@3, bab), bac), bad), hg) -> new_esEs1(vyw501, vyw3001, bab, bac, bad) 25.30/10.79 new_esEs(Right(vyw500), Right(vyw3000), cb, app(ty_Maybe, dd)) -> new_esEs3(vyw500, vyw3000, dd) 25.30/10.79 new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, fd), ff), fg), fa) -> new_esEs1(vyw500, vyw3000, fd, ff, fg) 25.30/10.79 25.30/10.79 R is empty. 25.30/10.79 Q is empty. 25.30/10.79 We have to consider all minimal (P,Q,R)-chains. 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (27) QDPSizeChangeProof (EQUIVALENT) 25.30/10.79 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. 25.30/10.79 25.30/10.79 From the DPs we obtained the following set of size-change graphs: 25.30/10.79 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, bca), bcb)) -> new_esEs(vyw500, vyw3000, bca, bcb) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs3(Just(vyw500), Just(vyw3000), app(app(ty_Either, bdb), bdc)) -> new_esEs(vyw500, vyw3000, bdb, bdc) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs3(Just(vyw500), Just(vyw3000), app(ty_[], bea)) -> new_esEs2(vyw500, vyw3000, bea) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, bcc), bcd)) -> new_esEs0(vyw500, vyw3000, bcc, bcd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs3(Just(vyw500), Just(vyw3000), app(app(ty_@2, bdd), bde)) -> new_esEs0(vyw500, vyw3000, bdd, bde) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, bda)) -> new_esEs3(vyw500, vyw3000, bda) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs1(vyw500, vyw3000, bce, bcf, bcg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs3(Just(vyw500), Just(vyw3000), app(ty_Maybe, beb)) -> new_esEs3(vyw500, vyw3000, beb) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs3(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(vyw500, vyw3000, bdf, bdg, bdh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(app(ty_Either, gd), ge)) -> new_esEs(vyw502, vyw3002, gd, ge) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(app(ty_Either, he), hf), hg) -> new_esEs(vyw501, vyw3001, he, hf) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bag), bah), gc, hg) -> new_esEs(vyw500, vyw3000, bag, bah) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(ty_[], hc)) -> new_esEs2(vyw502, vyw3002, hc) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(ty_[], bae), hg) -> new_esEs2(vyw501, vyw3001, bae) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bbf), gc, hg) -> new_esEs2(vyw500, vyw3000, bbf) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(app(ty_@2, hh), baa), hg) -> new_esEs0(vyw501, vyw3001, hh, baa) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(app(ty_@2, gf), gg)) -> new_esEs0(vyw502, vyw3002, gf, gg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bba), bbb), gc, hg) -> new_esEs0(vyw500, vyw3000, bba, bbb) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(ty_Maybe, baf), hg) -> new_esEs3(vyw501, vyw3001, baf) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bbg), gc, hg) -> new_esEs3(vyw500, vyw3000, bbg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(ty_Maybe, hd)) -> new_esEs3(vyw502, vyw3002, hd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bbc), bbd), bbe), gc, hg) -> new_esEs1(vyw500, vyw3000, bbc, bbd, bbe) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, gc, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs1(vyw502, vyw3002, gh, ha, hb) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs1(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), gb, app(app(app(ty_@3, bab), bac), bad), hg) -> new_esEs1(vyw501, vyw3001, bab, bac, bad) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(app(ty_Either, df), dg)) -> new_esEs(vyw501, vyw3001, df, dg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, eg), eh), fa) -> new_esEs(vyw500, vyw3000, eg, eh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Right(vyw500), Right(vyw3000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw500, vyw3000, cc, cd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Left(vyw500), Left(vyw3000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw500, vyw3000, h, ba) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], fh), fa) -> new_esEs2(vyw500, vyw3000, fh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(ty_[], ee)) -> new_esEs2(vyw501, vyw3001, ee) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vyw501, vyw3001, dh, ea) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vyw500, vyw3000, fb, fc) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ga), fa) -> new_esEs3(vyw500, vyw3000, ga) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(ty_Maybe, ef)) -> new_esEs3(vyw501, vyw3001, ef) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs1(vyw501, vyw3001, eb, ec, ed) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, fd), ff), fg), fa) -> new_esEs1(vyw500, vyw3000, fd, ff, fg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), bbh) -> new_esEs2(vyw501, vyw3001, bbh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], bch)) -> new_esEs2(vyw500, vyw3000, bch) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Right(vyw500), Right(vyw3000), cb, app(ty_[], dc)) -> new_esEs2(vyw500, vyw3000, dc) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Left(vyw500), Left(vyw3000), app(ty_[], bh), bb) -> new_esEs2(vyw500, vyw3000, bh) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Right(vyw500), Right(vyw3000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vyw500, vyw3000, ce, cf) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Left(vyw500), Left(vyw3000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vyw500, vyw3000, bc, bd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Left(vyw500), Left(vyw3000), app(ty_Maybe, ca), bb) -> new_esEs3(vyw500, vyw3000, ca) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Right(vyw500), Right(vyw3000), cb, app(ty_Maybe, dd)) -> new_esEs3(vyw500, vyw3000, dd) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Right(vyw500), Right(vyw3000), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs1(vyw500, vyw3000, cg, da, db) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.30/10.79 25.30/10.79 25.30/10.79 *new_esEs(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs1(vyw500, vyw3000, be, bf, bg) 25.30/10.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.30/10.79 25.30/10.79 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (28) 25.30/10.79 YES 25.30/10.79 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (29) 25.30/10.79 Obligation: 25.30/10.79 Q DP problem: 25.30/10.79 The TRS P consists of the following rules: 25.30/10.79 25.30/10.79 new_lookupWithDefaultFM0(vyw4, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Nothing, h, ba) 25.30/10.79 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Just(vyw300), False, ba), LT), h, ba) 25.30/10.79 new_lookupWithDefaultFM04(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Nothing, h, ba) 25.30/10.79 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, bb, bc) -> new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_esEs9(new_compare23(Just(vyw21), Just(vyw16), new_esEs30(vyw21, vyw16, bc), bc), GT), bb, bc) 25.30/10.79 new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw33, Nothing, h, ba) 25.30/10.79 new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw20, Just(vyw21), bb, bc) 25.30/10.79 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM03(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Just(vyw300), new_esEs29(vyw50, vyw300, ba), ba), LT), h, ba) 25.30/10.79 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw33, Just(vyw50), h, ba) 25.30/10.79 new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, False, h, ba) -> new_lookupWithDefaultFM04(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Just(vyw300), False, ba), GT), h, ba) 25.30/10.79 new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Just(vyw50), h, ba) 25.30/10.79 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), GT), h, ba) 25.30/10.79 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), LT), h, ba) 25.30/10.79 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw19, Just(vyw21), bb, bc) 25.30/10.79 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupWithDefaultFM0(vyw4, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Nothing, True, ba), GT), h, ba) 25.30/10.79 25.30/10.79 The TRS R consists of the following rules: 25.30/10.79 25.30/10.79 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.30/10.79 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.30/10.79 new_lt10(vyw31000, vyw32000, ee, ef) -> new_esEs9(new_compare18(vyw31000, vyw32000, ee, ef), LT) 25.30/10.79 new_esEs23(vyw502, vyw3002, app(ty_[], caa)) -> new_esEs17(vyw502, vyw3002, caa) 25.30/10.79 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), cgg, cgh) -> new_pePe(new_lt20(vyw31000, vyw32000, cgg), new_asAs(new_esEs28(vyw31000, vyw32000, cgg), new_ltEs20(vyw31001, vyw32001, cgh))) 25.30/10.79 new_pePe(True, vyw101) -> True 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.30/10.79 new_compare23(vyw310, vyw320, True, cgf) -> EQ 25.30/10.79 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.30/10.79 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.30/10.79 new_esEs29(vyw50, vyw300, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vyw50, vyw300, fh, ga, gb) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.30/10.79 new_esEs9(LT, EQ) -> False 25.30/10.79 new_esEs9(EQ, LT) -> False 25.30/10.79 new_ltEs19(vyw3100, vyw3200, app(ty_[], da)) -> new_ltEs5(vyw3100, vyw3200, da) 25.30/10.79 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.30/10.79 new_esEs29(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.30/10.79 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dch)) -> new_compare7(vyw31000, vyw32000, dch) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_lt12(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_lt4(vyw31000, vyw32000, cg) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, bbb), bah) -> new_ltEs11(vyw31000, vyw32000, bbb) 25.30/10.79 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), bdf, bdg, bdh) -> new_pePe(new_lt12(vyw31000, vyw32000, bdf), new_asAs(new_esEs22(vyw31000, vyw32000, bdf), new_pePe(new_lt11(vyw31001, vyw32001, bdg), new_asAs(new_esEs21(vyw31001, vyw32001, bdg), new_ltEs18(vyw31002, vyw32002, bdh))))) 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_primCompAux0(vyw31000, vyw32000, vyw102, da) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, da)) 25.30/10.79 new_compare30(vyw31000, vyw32000, app(app(ty_@2, ddh), dea)) -> new_compare18(vyw31000, vyw32000, ddh, dea) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.30/10.79 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.30/10.79 new_lt12(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31000, vyw32000, ee, ef) 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_compare25(@0, @0) -> EQ 25.30/10.79 new_ltEs9(False, True) -> True 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, fc) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_compare210(vyw31000, vyw32000, True, ee, ef) -> EQ 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, fc) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.30/10.79 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(vyw500, vyw3000, bab, bac, bad) 25.30/10.79 new_esEs8(False, True) -> False 25.30/10.79 new_esEs8(True, False) -> False 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_esEs4(vyw31000, vyw32000, bag) 25.30/10.79 new_compare19(vyw31000, vyw32000, True, eh, fa) -> LT 25.30/10.79 new_lt20(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_lt6(vyw31000, vyw32000, dcb, dcc) 25.30/10.79 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.79 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_esEs13(vyw31000, vyw32000, cg) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.30/10.79 new_compare23(Just(vyw3100), Just(vyw3200), False, cgf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, cgf), cgf) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, dah), dba)) -> new_ltEs8(vyw31001, vyw32001, dah, dba) 25.30/10.79 new_not(True) -> False 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_primCompAux00(vyw112, LT) -> LT 25.30/10.79 new_primCmpNat0(Zero, Zero) -> EQ 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.30/10.79 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(vyw31000, vyw32000, bge, bgf, bgg) 25.30/10.79 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare27(vyw31000, vyw32000, ddb, ddc, ddd) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], cfb), fc) -> new_esEs17(vyw500, vyw3000, cfb) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.79 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw500, vyw3000, dh, ea, eb) 25.30/10.79 new_esEs23(vyw502, vyw3002, app(ty_Ratio, bhc)) -> new_esEs13(vyw502, vyw3002, bhc) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs13(vyw31000, vyw32000, cdb, cdc, cdd) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_@0) -> new_esEs12(vyw21, vyw16) 25.30/10.79 new_ltEs16(GT, EQ) -> False 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.30/10.79 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.79 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, bbf), bbg), bah) -> new_ltEs8(vyw31000, vyw32000, bbf, bbg) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(vyw3100, vyw3200, bdf, bdg, bdh) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.79 new_lt12(vyw31000, vyw32000, app(ty_[], bgh)) -> new_lt18(vyw31000, vyw32000, bgh) 25.30/10.79 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.79 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.30/10.79 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.79 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(vyw501, vyw3001, gh, ha, hb) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, fc) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31000, vyw32000, ee, ef) 25.30/10.79 new_primCompAux00(vyw112, GT) -> GT 25.30/10.79 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(vyw500, vyw3000, ccb, ccc, ccd) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs13(vyw31001, vyw32001, dae, daf, dag) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.79 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.30/10.79 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.30/10.79 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.30/10.79 new_ltEs16(LT, LT) -> True 25.30/10.79 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw501, vyw3001, cah, cba, cbb) 25.30/10.79 new_esEs30(vyw21, vyw16, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(vyw21, vyw16, chf, chg, chh) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, bah) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.30/10.79 new_compare16(vyw31000, vyw32000, False) -> GT 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.30/10.79 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, fc) -> new_esEs14(vyw500, vyw3000) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.30/10.79 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.30/10.79 new_compare28(vyw31000, vyw32000, False, bge, bgf, bgg) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.30/10.79 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.30/10.79 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt17(vyw31001, vyw32001, bfe, bff, bfg) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fc) -> new_esEs5(vyw500, vyw3000, ceg, ceh, cfa) 25.30/10.79 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.79 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, bah) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.79 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(vyw31001, vyw32001, bfe, bff, bfg) 25.30/10.79 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.30/10.79 new_compare110(vyw31000, vyw32000, False, bge, bgf, bgg) -> GT 25.30/10.79 new_pePe(False, vyw101) -> vyw101 25.30/10.79 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.79 new_ltEs5(vyw3100, vyw3200, da) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, da), GT)) 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.79 new_ltEs9(True, True) -> True 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_esEs6(vyw31000, vyw32000, eh, fa) 25.30/10.79 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.30/10.79 new_ltEs16(LT, GT) -> True 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.79 new_lt11(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw31001, vyw32001, bgc, bgd) 25.30/10.79 new_esEs17([], [], db) -> True 25.30/10.79 new_ltEs16(LT, EQ) -> True 25.30/10.79 new_ltEs16(EQ, LT) -> False 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_Float) -> new_esEs11(vyw21, vyw16) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], cdg)) -> new_ltEs5(vyw31000, vyw32000, cdg) 25.30/10.79 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.79 new_compare11(vyw31000, vyw32000, False, ee, ef) -> GT 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, bah) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.79 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cab)) -> new_esEs4(vyw502, vyw3002, cab) 25.30/10.79 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.30/10.79 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.30/10.79 new_compare30(vyw31000, vyw32000, app(app(ty_Either, dde), ddf)) -> new_compare12(vyw31000, vyw32000, dde, ddf) 25.30/10.79 new_esEs30(vyw21, vyw16, app(ty_[], daa)) -> new_esEs17(vyw21, vyw16, daa) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.30/10.79 new_esEs18(vyw500, vyw3000, app(ty_Ratio, de)) -> new_esEs13(vyw500, vyw3000, de) 25.30/10.79 new_ltEs16(GT, LT) -> False 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(vyw500, vyw3000, cb, cc, cd) 25.30/10.79 new_esEs19(vyw501, vyw3001, app(ty_Maybe, hd)) -> new_esEs4(vyw501, vyw3001, hd) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, bah) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw31002, vyw32002, bec, bed, bee) 25.30/10.79 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.79 new_esEs18(vyw500, vyw3000, app(ty_[], ec)) -> new_esEs17(vyw500, vyw3000, ec) 25.30/10.79 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.30/10.79 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.30/10.79 new_esEs24(vyw501, vyw3001, app(app(ty_Either, cac), cad)) -> new_esEs6(vyw501, vyw3001, cac, cad) 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.79 new_esEs8(False, False) -> True 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, ceb), cec), fc) -> new_esEs6(vyw500, vyw3000, ceb, cec) 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.30/10.79 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.30/10.79 new_ltEs8(Right(vyw31000), Left(vyw32000), bcc, bah) -> False 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.30/10.79 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.30/10.79 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.30/10.79 new_esEs29(vyw50, vyw300, ty_Integer) -> new_esEs14(vyw50, vyw300) 25.30/10.79 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, ced), fc) -> new_esEs13(vyw500, vyw3000, ced) 25.30/10.79 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ff, fg) -> new_asAs(new_esEs20(vyw500, vyw3000, ff), new_esEs19(vyw501, vyw3001, fg)) 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.30/10.79 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(vyw502, vyw3002, bhf, bhg, bhh) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.30/10.79 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, fc) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.30/10.79 new_compare18(vyw31000, vyw32000, ee, ef) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, ee, ef), ee, ef) 25.30/10.79 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.30/10.79 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, fc) -> new_esEs10(vyw500, vyw3000) 25.30/10.79 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.30/10.79 new_compare30(vyw31000, vyw32000, app(ty_Maybe, dda)) -> new_compare13(vyw31000, vyw32000, dda) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, cee), cef), fc) -> new_esEs7(vyw500, vyw3000, cee, cef) 25.30/10.79 new_esEs28(vyw31000, vyw32000, app(ty_[], dcd)) -> new_esEs17(vyw31000, vyw32000, dcd) 25.30/10.79 new_ltEs16(EQ, GT) -> True 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_Either, bda), bdb)) -> new_ltEs8(vyw31000, vyw32000, bda, bdb) 25.30/10.79 new_ltEs16(EQ, EQ) -> True 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bg)) -> new_esEs13(vyw500, vyw3000, bg) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, bcc), bah)) -> new_ltEs8(vyw3100, vyw3200, bcc, bah) 25.30/10.79 new_esEs29(vyw50, vyw300, ty_Float) -> new_esEs11(vyw50, vyw300) 25.30/10.79 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.30/10.79 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.79 new_esEs20(vyw500, vyw3000, app(ty_Maybe, baf)) -> new_esEs4(vyw500, vyw3000, baf) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.30/10.79 new_esEs29(vyw50, vyw300, app(ty_[], db)) -> new_esEs17(vyw50, vyw300, db) 25.30/10.79 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.30/10.79 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.30/10.79 new_esEs9(LT, LT) -> True 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_lt17(vyw31000, vyw32000, bge, bgf, bgg) -> new_esEs9(new_compare27(vyw31000, vyw32000, bge, bgf, bgg), LT) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, bah) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.79 new_compare23(Just(vyw3100), Nothing, False, cgf) -> GT 25.30/10.79 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, bba), bah) -> new_ltEs6(vyw31000, vyw32000, bba) 25.30/10.79 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, cda)) -> new_ltEs11(vyw31000, vyw32000, cda) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.79 new_compare19(vyw31000, vyw32000, False, eh, fa) -> GT 25.30/10.79 new_lt12(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_lt15(vyw31000, vyw32000, bag) 25.30/10.79 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.30/10.79 new_esEs29(vyw50, vyw300, ty_Double) -> new_esEs15(vyw50, vyw300) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.30/10.79 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), db) -> new_asAs(new_esEs18(vyw500, vyw3000, db), new_esEs17(vyw501, vyw3001, db)) 25.30/10.79 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_esEs4(vyw31001, vyw32001, bfd) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.30/10.79 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.79 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.30/10.79 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), fd) -> new_asAs(new_esEs27(vyw500, vyw3000, fd), new_esEs26(vyw501, vyw3001, fd)) 25.30/10.79 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbh), cca)) -> new_esEs7(vyw500, vyw3000, cbh, cca) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Maybe, bce)) -> new_ltEs11(vyw31000, vyw32000, bce) 25.30/10.79 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_esEs13(vyw31001, vyw32001, bfc) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_Double) -> new_esEs15(vyw21, vyw16) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs4(vyw500, vyw3000, cf) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, bef), beg)) -> new_ltEs8(vyw31002, vyw32002, bef, beg) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.30/10.79 new_esEs23(vyw502, vyw3002, app(app(ty_Either, bha), bhb)) -> new_esEs6(vyw502, vyw3002, bha, bhb) 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.79 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw31001, vyw32001, bfh, bga) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, fc) -> new_esEs11(vyw500, vyw3000) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.30/10.79 new_compare16(vyw31000, vyw32000, True) -> LT 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.30/10.79 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.30/10.79 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.79 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.79 new_esEs30(vyw21, vyw16, app(ty_Maybe, dab)) -> new_esEs4(vyw21, vyw16, dab) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, dad)) -> new_ltEs11(vyw31001, vyw32001, dad) 25.30/10.79 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cbd)) -> new_esEs4(vyw501, vyw3001, cbd) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], ce)) -> new_esEs17(vyw500, vyw3000, ce) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.30/10.79 new_esEs29(vyw50, vyw300, ty_Int) -> new_esEs16(vyw50, vyw300) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw31000, vyw32000, bge, bgf, bgg) 25.30/10.79 new_lt15(vyw31000, vyw32000, bag) -> new_esEs9(new_compare13(vyw31000, vyw32000, bag), LT) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.79 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, cdh), cea)) -> new_ltEs17(vyw31000, vyw32000, cdh, cea) 25.30/10.79 new_esEs18(vyw500, vyw3000, app(ty_Maybe, ed)) -> new_esEs4(vyw500, vyw3000, ed) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.79 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, be), bf)) -> new_esEs6(vyw500, vyw3000, be, bf) 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, eg)) -> new_ltEs6(vyw3100, vyw3200, eg) 25.30/10.79 new_esEs20(vyw500, vyw3000, app(ty_Ratio, hg)) -> new_esEs13(vyw500, vyw3000, hg) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.79 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cbg)) -> new_esEs13(vyw500, vyw3000, cbg) 25.30/10.79 new_compare0([], :(vyw32000, vyw32001), da) -> LT 25.30/10.79 new_asAs(True, vyw93) -> vyw93 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.30/10.79 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_Integer) -> new_esEs14(vyw21, vyw16) 25.30/10.79 new_esEs19(vyw501, vyw3001, app(ty_[], hc)) -> new_esEs17(vyw501, vyw3001, hc) 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.30/10.79 new_esEs25(vyw500, vyw3000, app(ty_[], cce)) -> new_esEs17(vyw500, vyw3000, cce) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, fc) -> new_esEs15(vyw500, vyw3000) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.30/10.79 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_lt4(vyw31000, vyw32000, dbe) 25.30/10.79 new_lt20(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_lt10(vyw31000, vyw32000, dce, dcf) 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.79 new_esEs6(Left(vyw500), Right(vyw3000), fb, fc) -> False 25.30/10.79 new_esEs6(Right(vyw500), Left(vyw3000), fb, fc) -> False 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, bah) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.79 new_esEs19(vyw501, vyw3001, app(ty_Ratio, ge)) -> new_esEs13(vyw501, vyw3001, ge) 25.30/10.79 new_lt11(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_lt15(vyw31001, vyw32001, bfd) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, bbc), bbd), bbe), bah) -> new_ltEs13(vyw31000, vyw32000, bbc, bbd, bbe) 25.30/10.79 new_esEs18(vyw500, vyw3000, app(app(ty_@2, df), dg)) -> new_esEs7(vyw500, vyw3000, df, dg) 25.30/10.79 new_esEs24(vyw501, vyw3001, app(app(ty_@2, caf), cag)) -> new_esEs7(vyw501, vyw3001, caf, cag) 25.30/10.79 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.30/10.79 new_esEs30(vyw21, vyw16, app(app(ty_@2, chd), che)) -> new_esEs7(vyw21, vyw16, chd, che) 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_primCompAux00(vyw112, EQ) -> vyw112 25.30/10.79 new_compare0([], [], da) -> EQ 25.30/10.79 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.30/10.79 new_ltEs16(GT, GT) -> True 25.30/10.79 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.30/10.79 new_ltEs9(False, False) -> True 25.30/10.79 new_primMulNat0(Zero, Zero) -> Zero 25.30/10.79 new_compare10(vyw31000, vyw32000, False) -> GT 25.30/10.79 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.30/10.79 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfc), fc) -> new_esEs4(vyw500, vyw3000, cfc) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, beb)) -> new_ltEs11(vyw31002, vyw32002, beb) 25.30/10.79 new_compare211(vyw31000, vyw32000, True) -> EQ 25.30/10.79 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_esEs4(vyw31000, vyw32000, dbf) 25.30/10.79 new_esEs23(vyw502, vyw3002, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw502, vyw3002, bhd, bhe) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], bbh), bah) -> new_ltEs5(vyw31000, vyw32000, bbh) 25.30/10.79 new_ltEs11(Nothing, Just(vyw32000), ccg) -> True 25.30/10.79 new_compare28(vyw31000, vyw32000, True, bge, bgf, bgg) -> EQ 25.30/10.79 new_esEs4(Nothing, Nothing, bd) -> True 25.30/10.79 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dac)) -> new_ltEs6(vyw31001, vyw32001, dac) 25.30/10.79 new_esEs4(Nothing, Just(vyw3000), bd) -> False 25.30/10.79 new_esEs4(Just(vyw500), Nothing, bd) -> False 25.30/10.79 new_esEs20(vyw500, vyw3000, app(ty_[], bae)) -> new_esEs17(vyw500, vyw3000, bae) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_[], bdc)) -> new_ltEs5(vyw31000, vyw32000, bdc) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, bah) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.79 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fh, ga, gb) -> new_asAs(new_esEs25(vyw500, vyw3000, fh), new_asAs(new_esEs24(vyw501, vyw3001, ga), new_esEs23(vyw502, vyw3002, gb))) 25.30/10.79 new_esEs30(vyw21, vyw16, app(ty_Ratio, chc)) -> new_esEs13(vyw21, vyw16, chc) 25.30/10.79 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.30/10.79 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.30/10.79 new_esEs24(vyw501, vyw3001, app(ty_Ratio, cae)) -> new_esEs13(vyw501, vyw3001, cae) 25.30/10.79 new_esEs19(vyw501, vyw3001, app(app(ty_Either, gc), gd)) -> new_esEs6(vyw501, vyw3001, gc, gd) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, ccg)) -> new_ltEs11(vyw3100, vyw3200, ccg) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.30/10.79 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vyw500, vyw3000, cbe, cbf) 25.30/10.79 new_ltEs9(True, False) -> False 25.30/10.79 new_esEs9(EQ, EQ) -> True 25.30/10.79 new_lt12(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_lt6(vyw31000, vyw32000, eh, fa) 25.30/10.79 new_lt11(vyw31001, vyw32001, app(ty_[], bgb)) -> new_lt18(vyw31001, vyw32001, bgb) 25.30/10.79 new_esEs21(vyw31001, vyw32001, app(ty_[], bgb)) -> new_esEs17(vyw31001, vyw32001, bgb) 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.30/10.79 new_esEs29(vyw50, vyw300, app(ty_Ratio, fd)) -> new_esEs13(vyw50, vyw300, fd) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.79 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.30/10.79 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.30/10.79 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.30/10.79 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vyw31000, vyw32000, bcf, bcg, bch) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, cde), cdf)) -> new_ltEs8(vyw31000, vyw32000, cde, cdf) 25.30/10.79 new_compare24(vyw31000, vyw32000, True) -> EQ 25.30/10.79 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_esEs7(vyw31000, vyw32000, dce, dcf) 25.30/10.79 new_esEs20(vyw500, vyw3000, app(app(ty_Either, he), hf)) -> new_esEs6(vyw500, vyw3000, he, hf) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.79 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.30/10.79 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.30/10.79 new_compare30(vyw31000, vyw32000, app(ty_[], ddg)) -> new_compare0(vyw31000, vyw32000, ddg) 25.30/10.79 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.30/10.79 new_compare23(Nothing, Just(vyw3200), False, cgf) -> LT 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.30/10.79 new_esEs29(vyw50, vyw300, app(ty_Maybe, bd)) -> new_esEs4(vyw50, vyw300, bd) 25.30/10.79 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.30/10.79 new_compare111(vyw86, vyw87, False, dcg) -> GT 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.30/10.79 new_compare110(vyw31000, vyw32000, True, bge, bgf, bgg) -> LT 25.30/10.79 new_ltEs6(vyw3100, vyw3200, eg) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, eg), GT)) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, bea)) -> new_ltEs6(vyw31002, vyw32002, bea) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.79 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.30/10.79 new_esEs19(vyw501, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw501, vyw3001, gf, gg) 25.30/10.79 new_compare23(Nothing, Nothing, False, cgf) -> LT 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, bca), bcb), bah) -> new_ltEs17(vyw31000, vyw32000, bca, bcb) 25.30/10.79 new_ltEs8(Left(vyw31000), Right(vyw32000), bcc, bah) -> True 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cch)) -> new_ltEs6(vyw31000, vyw32000, cch) 25.30/10.79 new_not(False) -> True 25.30/10.79 new_lt11(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_lt4(vyw31001, vyw32001, bfc) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.30/10.79 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_esEs13(vyw31000, vyw32000, dbe) 25.30/10.79 new_esEs24(vyw501, vyw3001, app(ty_[], cbc)) -> new_esEs17(vyw501, vyw3001, cbc) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, dbc), dbd)) -> new_ltEs17(vyw31001, vyw32001, dbc, dbd) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.30/10.79 new_esEs9(GT, GT) -> True 25.30/10.79 new_compare0(:(vyw31000, vyw31001), [], da) -> GT 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.79 new_esEs29(vyw50, vyw300, app(app(ty_Either, fb), fc)) -> new_esEs6(vyw50, vyw300, fb, fc) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.79 new_compare27(vyw31000, vyw32000, bge, bgf, bgg) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.30/10.79 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs5(vyw31000, vyw32000, dbg, dbh, dca) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.30/10.79 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(vyw3100, vyw3200, cgg, cgh) 25.30/10.79 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.30/10.79 new_esEs29(vyw50, vyw300, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw50, vyw300, ff, fg) 25.30/10.79 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, bah) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.30/10.79 new_esEs9(EQ, GT) -> False 25.30/10.79 new_esEs9(GT, EQ) -> False 25.30/10.79 new_ltEs18(vyw31002, vyw32002, app(ty_[], beh)) -> new_ltEs5(vyw31002, vyw32002, beh) 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.30/10.79 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.30/10.79 new_compare11(vyw31000, vyw32000, True, ee, ef) -> LT 25.30/10.79 new_esEs30(vyw21, vyw16, app(app(ty_Either, cha), chb)) -> new_esEs6(vyw21, vyw16, cha, chb) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.79 new_compare12(vyw31000, vyw32000, eh, fa) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, eh, fa), eh, fa) 25.30/10.79 new_lt20(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_lt15(vyw31000, vyw32000, dbf) 25.30/10.79 new_esEs8(True, True) -> True 25.30/10.79 new_lt11(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_lt6(vyw31001, vyw32001, bfh, bga) 25.30/10.79 new_compare29(vyw31000, vyw32000, False, eh, fa) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, eh, fa), eh, fa) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.30/10.79 new_compare10(vyw31000, vyw32000, True) -> LT 25.30/10.79 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.30/10.79 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.30/10.79 new_primPlusNat1(Zero, Zero) -> Zero 25.30/10.79 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), da) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, da), da) 25.30/10.79 new_compare13(vyw31000, vyw32000, bag) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, bag), bag) 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(ty_[], bgh)) -> new_esEs17(vyw31000, vyw32000, bgh) 25.30/10.79 new_compare111(vyw86, vyw87, True, dcg) -> LT 25.30/10.79 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccf)) -> new_esEs4(vyw500, vyw3000, ccf) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.30/10.79 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.30/10.79 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.30/10.79 new_lt20(vyw31000, vyw32000, app(ty_[], dcd)) -> new_lt18(vyw31000, vyw32000, dcd) 25.30/10.79 new_esEs18(vyw500, vyw3000, app(app(ty_Either, dc), dd)) -> new_esEs6(vyw500, vyw3000, dc, dd) 25.30/10.79 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.30/10.79 new_lt18(vyw31000, vyw32000, bgh) -> new_esEs9(new_compare0(vyw31000, vyw32000, bgh), LT) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.30/10.79 new_esEs12(@0, @0) -> True 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.79 new_compare29(vyw31000, vyw32000, True, eh, fa) -> EQ 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.30/10.79 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.30/10.79 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_Char) -> new_esEs10(vyw21, vyw16) 25.30/10.79 new_lt6(vyw31000, vyw32000, eh, fa) -> new_esEs9(new_compare12(vyw31000, vyw32000, eh, fa), LT) 25.30/10.79 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw31001, vyw32001, bgc, bgd) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_Int) -> new_esEs16(vyw21, vyw16) 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.79 new_ltEs11(Just(vyw31000), Nothing, ccg) -> False 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(vyw31002, vyw32002, bfa, bfb) 25.30/10.79 new_ltEs11(Nothing, Nothing, ccg) -> True 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, bh), ca)) -> new_esEs7(vyw500, vyw3000, bh, ca) 25.30/10.79 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.30/10.79 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.30/10.79 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_esEs6(vyw31000, vyw32000, dcb, dcc) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.30/10.79 new_primEqNat0(Zero, Zero) -> True 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.30/10.79 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_Bool) -> new_esEs8(vyw21, vyw16) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, app(ty_[], dbb)) -> new_ltEs5(vyw31001, vyw32001, dbb) 25.30/10.79 new_compare210(vyw31000, vyw32000, False, ee, ef) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, ee, ef), ee, ef) 25.30/10.79 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.30/10.79 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.30/10.79 new_esEs9(LT, GT) -> False 25.30/10.79 new_esEs9(GT, LT) -> False 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Ratio, bcd)) -> new_ltEs6(vyw31000, vyw32000, bcd) 25.30/10.79 new_esEs17(:(vyw500, vyw501), [], db) -> False 25.30/10.79 new_esEs17([], :(vyw3000, vyw3001), db) -> False 25.30/10.79 new_asAs(False, vyw93) -> False 25.30/10.79 new_esEs29(vyw50, vyw300, ty_Ordering) -> new_esEs9(vyw50, vyw300) 25.30/10.79 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_lt17(vyw31000, vyw32000, dbg, dbh, dca) 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.30/10.79 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.30/10.79 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.30/10.79 new_esEs29(vyw50, vyw300, ty_Bool) -> new_esEs8(vyw50, vyw300) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_Ordering) -> new_esEs9(vyw21, vyw16) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_@2, bdd), bde)) -> new_ltEs17(vyw31000, vyw32000, bdd, bde) 25.30/10.79 new_lt4(vyw31000, vyw32000, cg) -> new_esEs9(new_compare7(vyw31000, vyw32000, cg), LT) 25.30/10.79 new_esEs29(vyw50, vyw300, ty_Char) -> new_esEs10(vyw50, vyw300) 25.30/10.79 new_esEs20(vyw500, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw500, vyw3000, hh, baa) 25.30/10.79 25.30/10.79 The set Q consists of the following terms: 25.30/10.79 25.30/10.79 new_lt12(x0, x1, ty_Integer) 25.30/10.79 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.30/10.79 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.30/10.79 new_lt19(x0, x1) 25.30/10.79 new_esEs28(x0, x1, ty_Ordering) 25.30/10.79 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_esEs29(x0, x1, ty_Integer) 25.30/10.79 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_ltEs20(x0, x1, ty_@0) 25.30/10.79 new_lt20(x0, x1, ty_Float) 25.30/10.79 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_compare0([], [], x0) 25.30/10.79 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_esEs19(x0, x1, ty_@0) 25.30/10.79 new_esEs30(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs16(x0, x1) 25.30/10.79 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_esEs28(x0, x1, ty_Double) 25.30/10.79 new_esEs23(x0, x1, ty_Int) 25.30/10.79 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs22(x0, x1, ty_Int) 25.30/10.79 new_esEs30(x0, x1, ty_@0) 25.30/10.79 new_ltEs20(x0, x1, ty_Bool) 25.30/10.79 new_primPlusNat1(Zero, Zero) 25.30/10.79 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.30/10.79 new_compare16(x0, x1, False) 25.30/10.79 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_esEs22(x0, x1, ty_Char) 25.30/10.79 new_esEs23(x0, x1, ty_Ordering) 25.30/10.79 new_esEs19(x0, x1, ty_Bool) 25.30/10.79 new_primMulNat0(Zero, Succ(x0)) 25.30/10.79 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_compare30(x0, x1, ty_Ordering) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.30/10.79 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_compare30(x0, x1, ty_Int) 25.30/10.79 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.30/10.79 new_primMulNat0(Succ(x0), Succ(x1)) 25.30/10.79 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_primEqInt(Pos(Zero), Pos(Zero)) 25.30/10.79 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_primCompAux00(x0, GT) 25.30/10.79 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs23(x0, x1, ty_Char) 25.30/10.79 new_esEs20(x0, x1, ty_Integer) 25.30/10.79 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.30/10.79 new_esEs29(x0, x1, ty_Bool) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.30/10.79 new_esEs4(Nothing, Nothing, x0) 25.30/10.79 new_ltEs6(x0, x1, x2) 25.30/10.79 new_lt17(x0, x1, x2, x3, x4) 25.30/10.79 new_esEs24(x0, x1, app(ty_[], x2)) 25.30/10.79 new_primEqInt(Neg(Zero), Neg(Zero)) 25.30/10.79 new_pePe(True, x0) 25.30/10.79 new_ltEs18(x0, x1, ty_Float) 25.30/10.79 new_compare30(x0, x1, ty_Char) 25.30/10.79 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_lt13(x0, x1) 25.30/10.79 new_esEs23(x0, x1, ty_Double) 25.30/10.79 new_compare29(x0, x1, False, x2, x3) 25.30/10.79 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.30/10.79 new_esEs21(x0, x1, ty_@0) 25.30/10.79 new_ltEs16(GT, EQ) 25.30/10.79 new_ltEs16(EQ, GT) 25.30/10.79 new_primCmpNat0(Succ(x0), Zero) 25.30/10.79 new_compare30(x0, x1, ty_Double) 25.30/10.79 new_lt5(x0, x1) 25.30/10.79 new_compare25(@0, @0) 25.30/10.79 new_ltEs9(True, True) 25.30/10.79 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.30/10.79 new_esEs21(x0, x1, ty_Int) 25.30/10.79 new_esEs19(x0, x1, ty_Char) 25.30/10.79 new_esEs9(LT, LT) 25.30/10.79 new_ltEs16(LT, LT) 25.30/10.79 new_esEs21(x0, x1, ty_Integer) 25.30/10.79 new_esEs4(Just(x0), Nothing, x1) 25.30/10.79 new_esEs30(x0, x1, ty_Int) 25.30/10.79 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.30/10.79 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.30/10.79 new_esEs24(x0, x1, ty_Int) 25.30/10.79 new_esEs19(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs9(EQ, GT) 25.30/10.79 new_esEs9(GT, EQ) 25.30/10.79 new_lt11(x0, x1, ty_Integer) 25.30/10.79 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.30/10.79 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.30/10.79 new_esEs18(x0, x1, ty_Ordering) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.30/10.79 new_esEs18(x0, x1, ty_Integer) 25.30/10.79 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_esEs8(False, True) 25.30/10.79 new_esEs8(True, False) 25.30/10.79 new_esEs29(x0, x1, ty_Float) 25.30/10.79 new_lt11(x0, x1, ty_Bool) 25.30/10.79 new_ltEs20(x0, x1, ty_Integer) 25.30/10.79 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_esEs21(x0, x1, ty_Char) 25.30/10.79 new_lt12(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs8(True, True) 25.30/10.79 new_lt7(x0, x1) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.30/10.79 new_lt6(x0, x1, x2, x3) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.30/10.79 new_esEs21(x0, x1, ty_Bool) 25.30/10.79 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_primEqInt(Pos(Zero), Neg(Zero)) 25.30/10.79 new_primEqInt(Neg(Zero), Pos(Zero)) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.30/10.79 new_compare23(Nothing, Just(x0), False, x1) 25.30/10.79 new_compare210(x0, x1, False, x2, x3) 25.30/10.79 new_compare11(x0, x1, True, x2, x3) 25.30/10.79 new_esEs24(x0, x1, ty_Double) 25.30/10.79 new_esEs30(x0, x1, ty_Bool) 25.30/10.79 new_ltEs19(x0, x1, ty_Double) 25.30/10.79 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.30/10.79 new_esEs22(x0, x1, ty_Ordering) 25.30/10.79 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.30/10.79 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.30/10.79 new_esEs28(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs30(x0, x1, ty_Char) 25.30/10.79 new_ltEs20(x0, x1, ty_Ordering) 25.30/10.79 new_esEs29(x0, x1, ty_@0) 25.30/10.79 new_esEs24(x0, x1, ty_Char) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.30/10.79 new_esEs19(x0, x1, ty_Int) 25.30/10.79 new_compare8(Integer(x0), Integer(x1)) 25.30/10.79 new_esEs30(x0, x1, ty_Double) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.30/10.79 new_compare19(x0, x1, False, x2, x3) 25.30/10.79 new_compare23(Just(x0), Nothing, False, x1) 25.30/10.79 new_primPlusNat0(Zero, x0) 25.30/10.79 new_esEs27(x0, x1, ty_Int) 25.30/10.79 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs19(x0, x1, ty_Double) 25.30/10.79 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_esEs22(x0, x1, ty_Integer) 25.30/10.79 new_esEs28(x0, x1, ty_Bool) 25.30/10.79 new_ltEs19(x0, x1, ty_Int) 25.30/10.79 new_ltEs20(x0, x1, ty_Double) 25.30/10.79 new_esEs25(x0, x1, ty_Char) 25.30/10.79 new_ltEs5(x0, x1, x2) 25.30/10.79 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.30/10.79 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.30/10.79 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.30/10.79 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_esEs29(x0, x1, ty_Char) 25.30/10.79 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_compare30(x0, x1, ty_@0) 25.30/10.79 new_lt20(x0, x1, ty_@0) 25.30/10.79 new_esEs24(x0, x1, ty_@0) 25.30/10.79 new_esEs19(x0, x1, ty_Float) 25.30/10.79 new_ltEs16(GT, GT) 25.30/10.79 new_esEs23(x0, x1, ty_@0) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.30/10.79 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.30/10.79 new_esEs21(x0, x1, ty_Double) 25.30/10.79 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_compare110(x0, x1, False, x2, x3, x4) 25.30/10.79 new_compare23(x0, x1, True, x2) 25.30/10.79 new_lt20(x0, x1, app(ty_[], x2)) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.30/10.79 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.30/10.79 new_compare24(x0, x1, False) 25.30/10.79 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_ltEs19(x0, x1, ty_Float) 25.30/10.79 new_esEs10(Char(x0), Char(x1)) 25.30/10.79 new_compare210(x0, x1, True, x2, x3) 25.30/10.79 new_ltEs16(LT, EQ) 25.30/10.79 new_ltEs16(EQ, LT) 25.30/10.79 new_esEs30(x0, x1, ty_Float) 25.30/10.79 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.30/10.79 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.30/10.79 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.30/10.79 new_ltEs11(Just(x0), Nothing, x1) 25.30/10.79 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_compare6(Char(x0), Char(x1)) 25.30/10.79 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.30/10.79 new_asAs(False, x0) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.30/10.79 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs25(x0, x1, ty_Int) 25.30/10.79 new_esEs29(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_primEqNat0(Zero, Succ(x0)) 25.30/10.79 new_esEs21(x0, x1, ty_Ordering) 25.30/10.79 new_ltEs7(x0, x1) 25.30/10.79 new_compare211(x0, x1, True) 25.30/10.79 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_esEs22(x0, x1, ty_Bool) 25.30/10.79 new_lt11(x0, x1, ty_Char) 25.30/10.79 new_esEs17([], :(x0, x1), x2) 25.30/10.79 new_ltEs18(x0, x1, ty_Integer) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.30/10.79 new_esEs22(x0, x1, app(ty_[], x2)) 25.30/10.79 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.30/10.79 new_ltEs9(False, True) 25.30/10.79 new_ltEs9(True, False) 25.30/10.79 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.30/10.79 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.30/10.79 new_esEs17(:(x0, x1), [], x2) 25.30/10.79 new_ltEs14(x0, x1) 25.30/10.79 new_esEs24(x0, x1, ty_Integer) 25.30/10.79 new_primEqNat0(Succ(x0), Succ(x1)) 25.30/10.79 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.30/10.79 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.30/10.79 new_ltEs15(x0, x1) 25.30/10.79 new_lt12(x0, x1, ty_@0) 25.30/10.79 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_lt11(x0, x1, ty_Int) 25.30/10.79 new_compare23(Just(x0), Just(x1), False, x2) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.30/10.79 new_esEs18(x0, x1, ty_Bool) 25.30/10.79 new_esEs25(x0, x1, ty_Float) 25.30/10.79 new_esEs20(x0, x1, ty_Float) 25.30/10.79 new_esEs18(x0, x1, ty_Float) 25.30/10.79 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs20(x0, x1, ty_Bool) 25.30/10.79 new_lt10(x0, x1, x2, x3) 25.30/10.79 new_esEs24(x0, x1, ty_Ordering) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.30/10.79 new_compare0(:(x0, x1), [], x2) 25.30/10.79 new_compare18(x0, x1, x2, x3) 25.30/10.79 new_esEs23(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs29(x0, x1, ty_Ordering) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.30/10.79 new_compare23(Nothing, Nothing, False, x0) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.30/10.79 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs18(x0, x1, ty_Char) 25.30/10.79 new_compare28(x0, x1, True, x2, x3, x4) 25.30/10.79 new_primPlusNat1(Succ(x0), Zero) 25.30/10.79 new_ltEs18(x0, x1, ty_Bool) 25.30/10.79 new_lt9(x0, x1) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.30/10.79 new_esEs20(x0, x1, ty_Int) 25.30/10.79 new_pePe(False, x0) 25.30/10.79 new_esEs28(x0, x1, ty_Char) 25.30/10.79 new_lt11(x0, x1, ty_Float) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.30/10.79 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.30/10.79 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.30/10.79 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.30/10.79 new_lt12(x0, x1, ty_Double) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.30/10.79 new_compare10(x0, x1, False) 25.30/10.79 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs18(x0, x1, ty_Int) 25.30/10.79 new_esEs20(x0, x1, ty_Char) 25.30/10.79 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_ltEs11(Nothing, Just(x0), x1) 25.30/10.79 new_esEs22(x0, x1, ty_Float) 25.30/10.79 new_compare26(x0, x1) 25.30/10.79 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.30/10.79 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.30/10.79 new_esEs28(x0, x1, ty_Int) 25.30/10.79 new_esEs4(Nothing, Just(x0), x1) 25.30/10.79 new_esEs25(x0, x1, ty_Integer) 25.30/10.79 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.30/10.79 new_esEs17([], [], x0) 25.30/10.79 new_esEs9(EQ, EQ) 25.30/10.79 new_lt20(x0, x1, ty_Double) 25.30/10.79 new_ltEs16(EQ, EQ) 25.30/10.79 new_primCompAux00(x0, LT) 25.30/10.79 new_esEs27(x0, x1, ty_Integer) 25.30/10.79 new_compare30(x0, x1, ty_Float) 25.30/10.79 new_ltEs18(x0, x1, ty_Char) 25.30/10.79 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs4(Just(x0), Just(x1), ty_@0) 25.30/10.79 new_primEqNat0(Succ(x0), Zero) 25.30/10.79 new_primMulNat0(Zero, Zero) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.30/10.79 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_lt20(x0, x1, ty_Ordering) 25.30/10.79 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_lt18(x0, x1, x2) 25.30/10.79 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.30/10.79 new_ltEs20(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.30/10.79 new_esEs28(x0, x1, ty_Float) 25.30/10.79 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.30/10.79 new_ltEs18(x0, x1, ty_Int) 25.30/10.79 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_lt11(x0, x1, ty_Double) 25.30/10.79 new_esEs24(x0, x1, ty_Float) 25.30/10.79 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_primMulInt(Pos(x0), Pos(x1)) 25.30/10.79 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_ltEs18(x0, x1, ty_Ordering) 25.30/10.79 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_ltEs19(x0, x1, ty_@0) 25.30/10.79 new_compare12(x0, x1, x2, x3) 25.30/10.79 new_compare11(x0, x1, False, x2, x3) 25.30/10.79 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.30/10.79 new_ltEs11(Nothing, Nothing, x0) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.30/10.79 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.30/10.79 new_lt16(x0, x1) 25.30/10.79 new_primCmpNat0(Zero, Succ(x0)) 25.30/10.79 new_ltEs19(x0, x1, app(ty_[], x2)) 25.30/10.79 new_ltEs19(x0, x1, ty_Integer) 25.30/10.79 new_lt8(x0, x1) 25.30/10.79 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.30/10.79 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.30/10.79 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.30/10.79 new_compare30(x0, x1, app(ty_[], x2)) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.30/10.79 new_esEs21(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.30/10.79 new_sr0(Integer(x0), Integer(x1)) 25.30/10.79 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.30/10.79 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.30/10.79 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs20(x0, x1, ty_Ordering) 25.30/10.79 new_not(True) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.30/10.79 new_esEs4(Just(x0), Just(x1), ty_Int) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.30/10.79 new_compare29(x0, x1, True, x2, x3) 25.30/10.79 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.30/10.79 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.30/10.79 new_primPlusNat1(Zero, Succ(x0)) 25.30/10.79 new_compare0([], :(x0, x1), x2) 25.30/10.79 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_esEs29(x0, x1, ty_Double) 25.30/10.79 new_lt11(x0, x1, ty_Ordering) 25.30/10.79 new_esEs25(x0, x1, ty_Bool) 25.30/10.79 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.30/10.79 new_primMulInt(Pos(x0), Neg(x1)) 25.30/10.79 new_primMulInt(Neg(x0), Pos(x1)) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.30/10.79 new_primCompAux00(x0, EQ) 25.30/10.79 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.30/10.79 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.30/10.79 new_lt12(x0, x1, ty_Ordering) 25.30/10.79 new_esEs28(x0, x1, ty_Integer) 25.30/10.79 new_lt14(x0, x1) 25.30/10.79 new_ltEs19(x0, x1, ty_Char) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.30/10.79 new_esEs24(x0, x1, ty_Bool) 25.30/10.79 new_esEs20(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs9(LT, EQ) 25.30/10.79 new_esEs9(EQ, LT) 25.30/10.79 new_compare24(x0, x1, True) 25.30/10.79 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_esEs4(Just(x0), Just(x1), ty_Double) 25.30/10.79 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.30/10.79 new_esEs9(GT, GT) 25.30/10.79 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_ltEs16(LT, GT) 25.30/10.79 new_ltEs16(GT, LT) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.30/10.79 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.30/10.79 new_ltEs10(x0, x1) 25.30/10.79 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.30/10.79 new_compare30(x0, x1, ty_Integer) 25.30/10.79 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_compare27(x0, x1, x2, x3, x4) 25.30/10.79 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.30/10.79 new_esEs4(Just(x0), Just(x1), ty_Char) 25.30/10.79 new_esEs23(x0, x1, ty_Float) 25.30/10.79 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_asAs(True, x0) 25.30/10.79 new_primMulNat0(Succ(x0), Zero) 25.30/10.79 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.30/10.79 new_compare111(x0, x1, True, x2) 25.30/10.79 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.30/10.79 new_ltEs19(x0, x1, ty_Bool) 25.30/10.79 new_esEs29(x0, x1, ty_Int) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.30/10.79 new_esEs9(LT, GT) 25.30/10.79 new_esEs9(GT, LT) 25.30/10.79 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.30/10.79 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.30/10.79 new_compare30(x0, x1, ty_Bool) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.30/10.79 new_lt20(x0, x1, ty_Bool) 25.30/10.79 new_esEs23(x0, x1, ty_Bool) 25.30/10.79 new_esEs19(x0, x1, ty_Ordering) 25.30/10.79 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_lt15(x0, x1, x2) 25.30/10.79 new_esEs25(x0, x1, app(ty_[], x2)) 25.30/10.79 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_ltEs20(x0, x1, ty_Float) 25.30/10.79 new_esEs12(@0, @0) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.30/10.79 new_compare9(x0, x1) 25.30/10.79 new_lt11(x0, x1, ty_@0) 25.30/10.79 new_compare16(x0, x1, True) 25.30/10.79 new_esEs4(Just(x0), Just(x1), ty_Float) 25.30/10.79 new_primPlusNat0(Succ(x0), x1) 25.30/10.79 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.30/10.79 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.30/10.79 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_primCompAux0(x0, x1, x2, x3) 25.30/10.79 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_esEs18(x0, x1, app(ty_[], x2)) 25.30/10.79 new_compare28(x0, x1, False, x2, x3, x4) 25.30/10.79 new_esEs25(x0, x1, ty_Ordering) 25.30/10.79 new_compare10(x0, x1, True) 25.30/10.79 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.30/10.79 new_esEs21(x0, x1, ty_Float) 25.30/10.79 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.30/10.79 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.30/10.79 new_ltEs19(x0, x1, ty_Ordering) 25.30/10.79 new_compare19(x0, x1, True, x2, x3) 25.30/10.79 new_esEs26(x0, x1, ty_Int) 25.30/10.79 new_esEs25(x0, x1, ty_Double) 25.30/10.79 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.30/10.79 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_compare111(x0, x1, False, x2) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.30/10.79 new_lt20(x0, x1, ty_Integer) 25.30/10.79 new_ltEs4(x0, x1) 25.30/10.79 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.79 new_primEqNat0(Zero, Zero) 25.30/10.79 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.30/10.79 new_lt20(x0, x1, ty_Char) 25.30/10.79 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.30/10.79 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.30/10.79 new_ltEs9(False, False) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.30/10.79 new_not(False) 25.30/10.79 new_esEs25(x0, x1, ty_@0) 25.30/10.79 new_esEs22(x0, x1, ty_@0) 25.30/10.79 new_ltEs20(x0, x1, ty_Char) 25.30/10.79 new_esEs8(False, False) 25.30/10.79 new_esEs30(x0, x1, ty_Integer) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.30/10.79 new_ltEs18(x0, x1, ty_@0) 25.30/10.79 new_esEs19(x0, x1, ty_Integer) 25.30/10.79 new_esEs22(x0, x1, ty_Double) 25.30/10.79 new_compare15(x0, x1) 25.30/10.79 new_primMulInt(Neg(x0), Neg(x1)) 25.30/10.79 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_lt11(x0, x1, app(ty_[], x2)) 25.30/10.79 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.30/10.79 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.30/10.79 new_lt12(x0, x1, ty_Bool) 25.30/10.79 new_ltEs12(x0, x1) 25.30/10.79 new_lt12(x0, x1, ty_Float) 25.30/10.79 new_compare13(x0, x1, x2) 25.30/10.79 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.30/10.79 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_esEs26(x0, x1, ty_Integer) 25.30/10.79 new_esEs18(x0, x1, ty_@0) 25.30/10.79 new_sr(x0, x1) 25.30/10.79 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.30/10.79 new_esEs30(x0, x1, ty_Ordering) 25.30/10.79 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.30/10.79 new_compare110(x0, x1, True, x2, x3, x4) 25.30/10.79 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_compare211(x0, x1, False) 25.30/10.79 new_lt20(x0, x1, ty_Int) 25.30/10.79 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_esEs18(x0, x1, ty_Double) 25.30/10.79 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_esEs23(x0, x1, ty_Integer) 25.30/10.79 new_esEs20(x0, x1, ty_@0) 25.30/10.79 new_primPlusNat1(Succ(x0), Succ(x1)) 25.30/10.79 new_esEs28(x0, x1, ty_@0) 25.30/10.79 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.79 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.79 new_ltEs18(x0, x1, ty_Double) 25.30/10.79 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.30/10.79 new_ltEs20(x0, x1, ty_Int) 25.30/10.79 new_esEs20(x0, x1, ty_Double) 25.30/10.79 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.30/10.79 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.30/10.79 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.30/10.79 new_ltEs18(x0, x1, app(ty_[], x2)) 25.30/10.79 new_lt12(x0, x1, ty_Char) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.30/10.79 new_primCmpNat0(Succ(x0), Succ(x1)) 25.30/10.79 new_lt12(x0, x1, ty_Int) 25.30/10.79 new_primCmpNat0(Zero, Zero) 25.30/10.79 new_esEs6(Left(x0), Right(x1), x2, x3) 25.30/10.79 new_esEs6(Right(x0), Left(x1), x2, x3) 25.30/10.79 new_esEs14(Integer(x0), Integer(x1)) 25.30/10.79 new_lt4(x0, x1, x2) 25.30/10.79 new_compare0(:(x0, x1), :(x2, x3), x4) 25.30/10.79 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.30/10.79 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.30/10.79 25.30/10.79 We have to consider all minimal (P,Q,R)-chains. 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (30) DependencyGraphProof (EQUIVALENT) 25.30/10.79 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (31) 25.30/10.79 Complex Obligation (AND) 25.30/10.79 25.30/10.79 ---------------------------------------- 25.30/10.79 25.30/10.79 (32) 25.30/10.79 Obligation: 25.30/10.79 Q DP problem: 25.30/10.79 The TRS P consists of the following rules: 25.30/10.79 25.30/10.79 new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw20, Just(vyw21), bb, bc) 25.30/10.79 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM03(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Just(vyw300), new_esEs29(vyw50, vyw300, ba), ba), LT), h, ba) 25.30/10.79 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, bb, bc) -> new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_esEs9(new_compare23(Just(vyw21), Just(vyw16), new_esEs30(vyw21, vyw16, bc), bc), GT), bb, bc) 25.30/10.79 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw19, Just(vyw21), bb, bc) 25.30/10.79 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), LT), h, ba) 25.30/10.79 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw33, Just(vyw50), h, ba) 25.30/10.79 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), GT), h, ba) 25.30/10.79 new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Just(vyw50), h, ba) 25.30/10.79 25.30/10.79 The TRS R consists of the following rules: 25.30/10.79 25.30/10.79 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.30/10.79 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.30/10.79 new_lt10(vyw31000, vyw32000, ee, ef) -> new_esEs9(new_compare18(vyw31000, vyw32000, ee, ef), LT) 25.30/10.79 new_esEs23(vyw502, vyw3002, app(ty_[], caa)) -> new_esEs17(vyw502, vyw3002, caa) 25.30/10.79 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), cgg, cgh) -> new_pePe(new_lt20(vyw31000, vyw32000, cgg), new_asAs(new_esEs28(vyw31000, vyw32000, cgg), new_ltEs20(vyw31001, vyw32001, cgh))) 25.30/10.79 new_pePe(True, vyw101) -> True 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.30/10.79 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.30/10.79 new_compare23(vyw310, vyw320, True, cgf) -> EQ 25.30/10.79 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.30/10.79 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.30/10.79 new_esEs29(vyw50, vyw300, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vyw50, vyw300, fh, ga, gb) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.30/10.79 new_esEs9(LT, EQ) -> False 25.30/10.79 new_esEs9(EQ, LT) -> False 25.30/10.79 new_ltEs19(vyw3100, vyw3200, app(ty_[], da)) -> new_ltEs5(vyw3100, vyw3200, da) 25.30/10.79 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.30/10.79 new_esEs29(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.30/10.79 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dch)) -> new_compare7(vyw31000, vyw32000, dch) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.30/10.79 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_lt12(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_lt4(vyw31000, vyw32000, cg) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, bbb), bah) -> new_ltEs11(vyw31000, vyw32000, bbb) 25.30/10.79 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), bdf, bdg, bdh) -> new_pePe(new_lt12(vyw31000, vyw32000, bdf), new_asAs(new_esEs22(vyw31000, vyw32000, bdf), new_pePe(new_lt11(vyw31001, vyw32001, bdg), new_asAs(new_esEs21(vyw31001, vyw32001, bdg), new_ltEs18(vyw31002, vyw32002, bdh))))) 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_primCompAux0(vyw31000, vyw32000, vyw102, da) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, da)) 25.30/10.79 new_compare30(vyw31000, vyw32000, app(app(ty_@2, ddh), dea)) -> new_compare18(vyw31000, vyw32000, ddh, dea) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.30/10.79 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.30/10.79 new_lt12(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31000, vyw32000, ee, ef) 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_compare25(@0, @0) -> EQ 25.30/10.79 new_ltEs9(False, True) -> True 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, fc) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_compare210(vyw31000, vyw32000, True, ee, ef) -> EQ 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, fc) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.79 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.30/10.79 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(vyw500, vyw3000, bab, bac, bad) 25.30/10.79 new_esEs8(False, True) -> False 25.30/10.79 new_esEs8(True, False) -> False 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_esEs4(vyw31000, vyw32000, bag) 25.30/10.79 new_compare19(vyw31000, vyw32000, True, eh, fa) -> LT 25.30/10.79 new_lt20(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_lt6(vyw31000, vyw32000, dcb, dcc) 25.30/10.79 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.79 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_esEs13(vyw31000, vyw32000, cg) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.30/10.79 new_compare23(Just(vyw3100), Just(vyw3200), False, cgf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, cgf), cgf) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, dah), dba)) -> new_ltEs8(vyw31001, vyw32001, dah, dba) 25.30/10.79 new_not(True) -> False 25.30/10.79 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_primCompAux00(vyw112, LT) -> LT 25.30/10.79 new_primCmpNat0(Zero, Zero) -> EQ 25.30/10.79 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.30/10.79 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(vyw31000, vyw32000, bge, bgf, bgg) 25.30/10.79 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare27(vyw31000, vyw32000, ddb, ddc, ddd) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], cfb), fc) -> new_esEs17(vyw500, vyw3000, cfb) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.79 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw500, vyw3000, dh, ea, eb) 25.30/10.79 new_esEs23(vyw502, vyw3002, app(ty_Ratio, bhc)) -> new_esEs13(vyw502, vyw3002, bhc) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs13(vyw31000, vyw32000, cdb, cdc, cdd) 25.30/10.79 new_esEs30(vyw21, vyw16, ty_@0) -> new_esEs12(vyw21, vyw16) 25.30/10.79 new_ltEs16(GT, EQ) -> False 25.30/10.79 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.30/10.79 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.30/10.79 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.79 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, bbf), bbg), bah) -> new_ltEs8(vyw31000, vyw32000, bbf, bbg) 25.30/10.79 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(vyw3100, vyw3200, bdf, bdg, bdh) 25.30/10.79 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.79 new_lt12(vyw31000, vyw32000, app(ty_[], bgh)) -> new_lt18(vyw31000, vyw32000, bgh) 25.30/10.79 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.79 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.30/10.79 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.79 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(vyw501, vyw3001, gh, ha, hb) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, fc) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.30/10.79 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.30/10.79 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31000, vyw32000, ee, ef) 25.30/10.79 new_primCompAux00(vyw112, GT) -> GT 25.30/10.79 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(vyw500, vyw3000, ccb, ccc, ccd) 25.30/10.79 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.79 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.30/10.79 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.79 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.30/10.79 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs13(vyw31001, vyw32001, dae, daf, dag) 25.30/10.79 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.79 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.30/10.79 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.79 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.30/10.79 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.30/10.79 new_ltEs16(LT, LT) -> True 25.30/10.79 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw501, vyw3001, cah, cba, cbb) 25.30/10.79 new_esEs30(vyw21, vyw16, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(vyw21, vyw16, chf, chg, chh) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, bah) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.79 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.30/10.79 new_compare16(vyw31000, vyw32000, False) -> GT 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.30/10.79 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, fc) -> new_esEs14(vyw500, vyw3000) 25.30/10.79 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.30/10.79 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.30/10.79 new_compare28(vyw31000, vyw32000, False, bge, bgf, bgg) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.30/10.79 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.30/10.79 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.30/10.79 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt17(vyw31001, vyw32001, bfe, bff, bfg) 25.30/10.79 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fc) -> new_esEs5(vyw500, vyw3000, ceg, ceh, cfa) 25.30/10.79 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.79 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.79 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.30/10.79 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, bah) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.79 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.79 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(vyw31001, vyw32001, bfe, bff, bfg) 25.30/10.80 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.30/10.80 new_compare110(vyw31000, vyw32000, False, bge, bgf, bgg) -> GT 25.30/10.80 new_pePe(False, vyw101) -> vyw101 25.30/10.80 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.80 new_ltEs5(vyw3100, vyw3200, da) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, da), GT)) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_ltEs9(True, True) -> True 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_esEs6(vyw31000, vyw32000, eh, fa) 25.30/10.80 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.30/10.80 new_ltEs16(LT, GT) -> True 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_lt11(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw31001, vyw32001, bgc, bgd) 25.30/10.80 new_esEs17([], [], db) -> True 25.30/10.80 new_ltEs16(LT, EQ) -> True 25.30/10.80 new_ltEs16(EQ, LT) -> False 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Float) -> new_esEs11(vyw21, vyw16) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], cdg)) -> new_ltEs5(vyw31000, vyw32000, cdg) 25.30/10.80 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_compare11(vyw31000, vyw32000, False, ee, ef) -> GT 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, bah) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cab)) -> new_esEs4(vyw502, vyw3002, cab) 25.30/10.80 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.30/10.80 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.30/10.80 new_compare30(vyw31000, vyw32000, app(app(ty_Either, dde), ddf)) -> new_compare12(vyw31000, vyw32000, dde, ddf) 25.30/10.80 new_esEs30(vyw21, vyw16, app(ty_[], daa)) -> new_esEs17(vyw21, vyw16, daa) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(ty_Ratio, de)) -> new_esEs13(vyw500, vyw3000, de) 25.30/10.80 new_ltEs16(GT, LT) -> False 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(vyw500, vyw3000, cb, cc, cd) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(ty_Maybe, hd)) -> new_esEs4(vyw501, vyw3001, hd) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, bah) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw31002, vyw32002, bec, bed, bee) 25.30/10.80 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(ty_[], ec)) -> new_esEs17(vyw500, vyw3000, ec) 25.30/10.80 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.30/10.80 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(app(ty_Either, cac), cad)) -> new_esEs6(vyw501, vyw3001, cac, cad) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_esEs8(False, False) -> True 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, ceb), cec), fc) -> new_esEs6(vyw500, vyw3000, ceb, cec) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.30/10.80 new_ltEs8(Right(vyw31000), Left(vyw32000), bcc, bah) -> False 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.30/10.80 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.30/10.80 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Integer) -> new_esEs14(vyw50, vyw300) 25.30/10.80 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, ced), fc) -> new_esEs13(vyw500, vyw3000, ced) 25.30/10.80 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ff, fg) -> new_asAs(new_esEs20(vyw500, vyw3000, ff), new_esEs19(vyw501, vyw3001, fg)) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(vyw502, vyw3002, bhf, bhg, bhh) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.30/10.80 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, fc) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.30/10.80 new_compare18(vyw31000, vyw32000, ee, ef) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, ee, ef), ee, ef) 25.30/10.80 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.30/10.80 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, fc) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.30/10.80 new_compare30(vyw31000, vyw32000, app(ty_Maybe, dda)) -> new_compare13(vyw31000, vyw32000, dda) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, cee), cef), fc) -> new_esEs7(vyw500, vyw3000, cee, cef) 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(ty_[], dcd)) -> new_esEs17(vyw31000, vyw32000, dcd) 25.30/10.80 new_ltEs16(EQ, GT) -> True 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_Either, bda), bdb)) -> new_ltEs8(vyw31000, vyw32000, bda, bdb) 25.30/10.80 new_ltEs16(EQ, EQ) -> True 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bg)) -> new_esEs13(vyw500, vyw3000, bg) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, bcc), bah)) -> new_ltEs8(vyw3100, vyw3200, bcc, bah) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Float) -> new_esEs11(vyw50, vyw300) 25.30/10.80 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(ty_Maybe, baf)) -> new_esEs4(vyw500, vyw3000, baf) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.30/10.80 new_esEs29(vyw50, vyw300, app(ty_[], db)) -> new_esEs17(vyw50, vyw300, db) 25.30/10.80 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.30/10.80 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.30/10.80 new_esEs9(LT, LT) -> True 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_lt17(vyw31000, vyw32000, bge, bgf, bgg) -> new_esEs9(new_compare27(vyw31000, vyw32000, bge, bgf, bgg), LT) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, bah) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.80 new_compare23(Just(vyw3100), Nothing, False, cgf) -> GT 25.30/10.80 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, bba), bah) -> new_ltEs6(vyw31000, vyw32000, bba) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, cda)) -> new_ltEs11(vyw31000, vyw32000, cda) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.80 new_compare19(vyw31000, vyw32000, False, eh, fa) -> GT 25.30/10.80 new_lt12(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_lt15(vyw31000, vyw32000, bag) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Double) -> new_esEs15(vyw50, vyw300) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.30/10.80 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), db) -> new_asAs(new_esEs18(vyw500, vyw3000, db), new_esEs17(vyw501, vyw3001, db)) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_esEs4(vyw31001, vyw32001, bfd) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.30/10.80 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.80 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.30/10.80 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), fd) -> new_asAs(new_esEs27(vyw500, vyw3000, fd), new_esEs26(vyw501, vyw3001, fd)) 25.30/10.80 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbh), cca)) -> new_esEs7(vyw500, vyw3000, cbh, cca) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Maybe, bce)) -> new_ltEs11(vyw31000, vyw32000, bce) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_esEs13(vyw31001, vyw32001, bfc) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Double) -> new_esEs15(vyw21, vyw16) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs4(vyw500, vyw3000, cf) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, bef), beg)) -> new_ltEs8(vyw31002, vyw32002, bef, beg) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(app(ty_Either, bha), bhb)) -> new_esEs6(vyw502, vyw3002, bha, bhb) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw31001, vyw32001, bfh, bga) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, fc) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.30/10.80 new_compare16(vyw31000, vyw32000, True) -> LT 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.30/10.80 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.30/10.80 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.80 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.80 new_esEs30(vyw21, vyw16, app(ty_Maybe, dab)) -> new_esEs4(vyw21, vyw16, dab) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, dad)) -> new_ltEs11(vyw31001, vyw32001, dad) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cbd)) -> new_esEs4(vyw501, vyw3001, cbd) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], ce)) -> new_esEs17(vyw500, vyw3000, ce) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Int) -> new_esEs16(vyw50, vyw300) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw31000, vyw32000, bge, bgf, bgg) 25.30/10.80 new_lt15(vyw31000, vyw32000, bag) -> new_esEs9(new_compare13(vyw31000, vyw32000, bag), LT) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.80 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, cdh), cea)) -> new_ltEs17(vyw31000, vyw32000, cdh, cea) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(ty_Maybe, ed)) -> new_esEs4(vyw500, vyw3000, ed) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, be), bf)) -> new_esEs6(vyw500, vyw3000, be, bf) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, eg)) -> new_ltEs6(vyw3100, vyw3200, eg) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(ty_Ratio, hg)) -> new_esEs13(vyw500, vyw3000, hg) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cbg)) -> new_esEs13(vyw500, vyw3000, cbg) 25.30/10.80 new_compare0([], :(vyw32000, vyw32001), da) -> LT 25.30/10.80 new_asAs(True, vyw93) -> vyw93 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.30/10.80 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Integer) -> new_esEs14(vyw21, vyw16) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(ty_[], hc)) -> new_esEs17(vyw501, vyw3001, hc) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.30/10.80 new_esEs25(vyw500, vyw3000, app(ty_[], cce)) -> new_esEs17(vyw500, vyw3000, cce) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, fc) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_lt4(vyw31000, vyw32000, dbe) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_lt10(vyw31000, vyw32000, dce, dcf) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs6(Left(vyw500), Right(vyw3000), fb, fc) -> False 25.30/10.80 new_esEs6(Right(vyw500), Left(vyw3000), fb, fc) -> False 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, bah) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(ty_Ratio, ge)) -> new_esEs13(vyw501, vyw3001, ge) 25.30/10.80 new_lt11(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_lt15(vyw31001, vyw32001, bfd) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, bbc), bbd), bbe), bah) -> new_ltEs13(vyw31000, vyw32000, bbc, bbd, bbe) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(app(ty_@2, df), dg)) -> new_esEs7(vyw500, vyw3000, df, dg) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(app(ty_@2, caf), cag)) -> new_esEs7(vyw501, vyw3001, caf, cag) 25.30/10.80 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.30/10.80 new_esEs30(vyw21, vyw16, app(app(ty_@2, chd), che)) -> new_esEs7(vyw21, vyw16, chd, che) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.80 new_primCompAux00(vyw112, EQ) -> vyw112 25.30/10.80 new_compare0([], [], da) -> EQ 25.30/10.80 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.30/10.80 new_ltEs16(GT, GT) -> True 25.30/10.80 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.30/10.80 new_ltEs9(False, False) -> True 25.30/10.80 new_primMulNat0(Zero, Zero) -> Zero 25.30/10.80 new_compare10(vyw31000, vyw32000, False) -> GT 25.30/10.80 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfc), fc) -> new_esEs4(vyw500, vyw3000, cfc) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, beb)) -> new_ltEs11(vyw31002, vyw32002, beb) 25.30/10.80 new_compare211(vyw31000, vyw32000, True) -> EQ 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_esEs4(vyw31000, vyw32000, dbf) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw502, vyw3002, bhd, bhe) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], bbh), bah) -> new_ltEs5(vyw31000, vyw32000, bbh) 25.30/10.80 new_ltEs11(Nothing, Just(vyw32000), ccg) -> True 25.30/10.80 new_compare28(vyw31000, vyw32000, True, bge, bgf, bgg) -> EQ 25.30/10.80 new_esEs4(Nothing, Nothing, bd) -> True 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dac)) -> new_ltEs6(vyw31001, vyw32001, dac) 25.30/10.80 new_esEs4(Nothing, Just(vyw3000), bd) -> False 25.30/10.80 new_esEs4(Just(vyw500), Nothing, bd) -> False 25.30/10.80 new_esEs20(vyw500, vyw3000, app(ty_[], bae)) -> new_esEs17(vyw500, vyw3000, bae) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_[], bdc)) -> new_ltEs5(vyw31000, vyw32000, bdc) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, bah) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.80 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fh, ga, gb) -> new_asAs(new_esEs25(vyw500, vyw3000, fh), new_asAs(new_esEs24(vyw501, vyw3001, ga), new_esEs23(vyw502, vyw3002, gb))) 25.30/10.80 new_esEs30(vyw21, vyw16, app(ty_Ratio, chc)) -> new_esEs13(vyw21, vyw16, chc) 25.30/10.80 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.30/10.80 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(ty_Ratio, cae)) -> new_esEs13(vyw501, vyw3001, cae) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(app(ty_Either, gc), gd)) -> new_esEs6(vyw501, vyw3001, gc, gd) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, ccg)) -> new_ltEs11(vyw3100, vyw3200, ccg) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.30/10.80 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vyw500, vyw3000, cbe, cbf) 25.30/10.80 new_ltEs9(True, False) -> False 25.30/10.80 new_esEs9(EQ, EQ) -> True 25.30/10.80 new_lt12(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_lt6(vyw31000, vyw32000, eh, fa) 25.30/10.80 new_lt11(vyw31001, vyw32001, app(ty_[], bgb)) -> new_lt18(vyw31001, vyw32001, bgb) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(ty_[], bgb)) -> new_esEs17(vyw31001, vyw32001, bgb) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.30/10.80 new_esEs29(vyw50, vyw300, app(ty_Ratio, fd)) -> new_esEs13(vyw50, vyw300, fd) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.80 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.30/10.80 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.30/10.80 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.30/10.80 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vyw31000, vyw32000, bcf, bcg, bch) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, cde), cdf)) -> new_ltEs8(vyw31000, vyw32000, cde, cdf) 25.30/10.80 new_compare24(vyw31000, vyw32000, True) -> EQ 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_esEs7(vyw31000, vyw32000, dce, dcf) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(app(ty_Either, he), hf)) -> new_esEs6(vyw500, vyw3000, he, hf) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.80 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.30/10.80 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.30/10.80 new_compare30(vyw31000, vyw32000, app(ty_[], ddg)) -> new_compare0(vyw31000, vyw32000, ddg) 25.30/10.80 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.30/10.80 new_compare23(Nothing, Just(vyw3200), False, cgf) -> LT 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.30/10.80 new_esEs29(vyw50, vyw300, app(ty_Maybe, bd)) -> new_esEs4(vyw50, vyw300, bd) 25.30/10.80 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.30/10.80 new_compare111(vyw86, vyw87, False, dcg) -> GT 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.30/10.80 new_compare110(vyw31000, vyw32000, True, bge, bgf, bgg) -> LT 25.30/10.80 new_ltEs6(vyw3100, vyw3200, eg) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, eg), GT)) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, bea)) -> new_ltEs6(vyw31002, vyw32002, bea) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw501, vyw3001, gf, gg) 25.30/10.80 new_compare23(Nothing, Nothing, False, cgf) -> LT 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, bca), bcb), bah) -> new_ltEs17(vyw31000, vyw32000, bca, bcb) 25.30/10.80 new_ltEs8(Left(vyw31000), Right(vyw32000), bcc, bah) -> True 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cch)) -> new_ltEs6(vyw31000, vyw32000, cch) 25.30/10.80 new_not(False) -> True 25.30/10.80 new_lt11(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_lt4(vyw31001, vyw32001, bfc) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_esEs13(vyw31000, vyw32000, dbe) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(ty_[], cbc)) -> new_esEs17(vyw501, vyw3001, cbc) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, dbc), dbd)) -> new_ltEs17(vyw31001, vyw32001, dbc, dbd) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.30/10.80 new_esEs9(GT, GT) -> True 25.30/10.80 new_compare0(:(vyw31000, vyw31001), [], da) -> GT 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.80 new_esEs29(vyw50, vyw300, app(app(ty_Either, fb), fc)) -> new_esEs6(vyw50, vyw300, fb, fc) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_compare27(vyw31000, vyw32000, bge, bgf, bgg) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs5(vyw31000, vyw32000, dbg, dbh, dca) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(vyw3100, vyw3200, cgg, cgh) 25.30/10.80 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.30/10.80 new_esEs29(vyw50, vyw300, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw50, vyw300, ff, fg) 25.30/10.80 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, bah) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.30/10.80 new_esEs9(EQ, GT) -> False 25.30/10.80 new_esEs9(GT, EQ) -> False 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(ty_[], beh)) -> new_ltEs5(vyw31002, vyw32002, beh) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.30/10.80 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.30/10.80 new_compare11(vyw31000, vyw32000, True, ee, ef) -> LT 25.30/10.80 new_esEs30(vyw21, vyw16, app(app(ty_Either, cha), chb)) -> new_esEs6(vyw21, vyw16, cha, chb) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.80 new_compare12(vyw31000, vyw32000, eh, fa) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, eh, fa), eh, fa) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_lt15(vyw31000, vyw32000, dbf) 25.30/10.80 new_esEs8(True, True) -> True 25.30/10.80 new_lt11(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_lt6(vyw31001, vyw32001, bfh, bga) 25.30/10.80 new_compare29(vyw31000, vyw32000, False, eh, fa) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, eh, fa), eh, fa) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.30/10.80 new_compare10(vyw31000, vyw32000, True) -> LT 25.30/10.80 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.30/10.80 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.30/10.80 new_primPlusNat1(Zero, Zero) -> Zero 25.30/10.80 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), da) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, da), da) 25.30/10.80 new_compare13(vyw31000, vyw32000, bag) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, bag), bag) 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(ty_[], bgh)) -> new_esEs17(vyw31000, vyw32000, bgh) 25.30/10.80 new_compare111(vyw86, vyw87, True, dcg) -> LT 25.30/10.80 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccf)) -> new_esEs4(vyw500, vyw3000, ccf) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.30/10.80 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.30/10.80 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(ty_[], dcd)) -> new_lt18(vyw31000, vyw32000, dcd) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(app(ty_Either, dc), dd)) -> new_esEs6(vyw500, vyw3000, dc, dd) 25.30/10.80 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.30/10.80 new_lt18(vyw31000, vyw32000, bgh) -> new_esEs9(new_compare0(vyw31000, vyw32000, bgh), LT) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.30/10.80 new_esEs12(@0, @0) -> True 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.80 new_compare29(vyw31000, vyw32000, True, eh, fa) -> EQ 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.30/10.80 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Char) -> new_esEs10(vyw21, vyw16) 25.30/10.80 new_lt6(vyw31000, vyw32000, eh, fa) -> new_esEs9(new_compare12(vyw31000, vyw32000, eh, fa), LT) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw31001, vyw32001, bgc, bgd) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Int) -> new_esEs16(vyw21, vyw16) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_ltEs11(Just(vyw31000), Nothing, ccg) -> False 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(vyw31002, vyw32002, bfa, bfb) 25.30/10.80 new_ltEs11(Nothing, Nothing, ccg) -> True 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, bh), ca)) -> new_esEs7(vyw500, vyw3000, bh, ca) 25.30/10.80 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.80 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.30/10.80 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_esEs6(vyw31000, vyw32000, dcb, dcc) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.30/10.80 new_primEqNat0(Zero, Zero) -> True 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.30/10.80 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Bool) -> new_esEs8(vyw21, vyw16) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(ty_[], dbb)) -> new_ltEs5(vyw31001, vyw32001, dbb) 25.30/10.80 new_compare210(vyw31000, vyw32000, False, ee, ef) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, ee, ef), ee, ef) 25.30/10.80 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.30/10.80 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.30/10.80 new_esEs9(LT, GT) -> False 25.30/10.80 new_esEs9(GT, LT) -> False 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Ratio, bcd)) -> new_ltEs6(vyw31000, vyw32000, bcd) 25.30/10.80 new_esEs17(:(vyw500, vyw501), [], db) -> False 25.30/10.80 new_esEs17([], :(vyw3000, vyw3001), db) -> False 25.30/10.80 new_asAs(False, vyw93) -> False 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Ordering) -> new_esEs9(vyw50, vyw300) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_lt17(vyw31000, vyw32000, dbg, dbh, dca) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.30/10.80 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Bool) -> new_esEs8(vyw50, vyw300) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Ordering) -> new_esEs9(vyw21, vyw16) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_@2, bdd), bde)) -> new_ltEs17(vyw31000, vyw32000, bdd, bde) 25.30/10.80 new_lt4(vyw31000, vyw32000, cg) -> new_esEs9(new_compare7(vyw31000, vyw32000, cg), LT) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Char) -> new_esEs10(vyw50, vyw300) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw500, vyw3000, hh, baa) 25.30/10.80 25.30/10.80 The set Q consists of the following terms: 25.30/10.80 25.30/10.80 new_lt12(x0, x1, ty_Integer) 25.30/10.80 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.30/10.80 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.30/10.80 new_lt19(x0, x1) 25.30/10.80 new_esEs28(x0, x1, ty_Ordering) 25.30/10.80 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs29(x0, x1, ty_Integer) 25.30/10.80 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_ltEs20(x0, x1, ty_@0) 25.30/10.80 new_lt20(x0, x1, ty_Float) 25.30/10.80 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_compare0([], [], x0) 25.30/10.80 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs19(x0, x1, ty_@0) 25.30/10.80 new_esEs30(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs16(x0, x1) 25.30/10.80 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs28(x0, x1, ty_Double) 25.30/10.80 new_esEs23(x0, x1, ty_Int) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs22(x0, x1, ty_Int) 25.30/10.80 new_esEs30(x0, x1, ty_@0) 25.30/10.80 new_ltEs20(x0, x1, ty_Bool) 25.30/10.80 new_primPlusNat1(Zero, Zero) 25.30/10.80 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.30/10.80 new_compare16(x0, x1, False) 25.30/10.80 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs22(x0, x1, ty_Char) 25.30/10.80 new_esEs23(x0, x1, ty_Ordering) 25.30/10.80 new_esEs19(x0, x1, ty_Bool) 25.30/10.80 new_primMulNat0(Zero, Succ(x0)) 25.30/10.80 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_compare30(x0, x1, ty_Ordering) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.30/10.80 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_compare30(x0, x1, ty_Int) 25.30/10.80 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.30/10.80 new_primMulNat0(Succ(x0), Succ(x1)) 25.30/10.80 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_primEqInt(Pos(Zero), Pos(Zero)) 25.30/10.80 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_primCompAux00(x0, GT) 25.30/10.80 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs23(x0, x1, ty_Char) 25.30/10.80 new_esEs20(x0, x1, ty_Integer) 25.30/10.80 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.30/10.80 new_esEs29(x0, x1, ty_Bool) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.30/10.80 new_esEs4(Nothing, Nothing, x0) 25.30/10.80 new_ltEs6(x0, x1, x2) 25.30/10.80 new_lt17(x0, x1, x2, x3, x4) 25.30/10.80 new_esEs24(x0, x1, app(ty_[], x2)) 25.30/10.80 new_primEqInt(Neg(Zero), Neg(Zero)) 25.30/10.80 new_pePe(True, x0) 25.30/10.80 new_ltEs18(x0, x1, ty_Float) 25.30/10.80 new_compare30(x0, x1, ty_Char) 25.30/10.80 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_lt13(x0, x1) 25.30/10.80 new_esEs23(x0, x1, ty_Double) 25.30/10.80 new_compare29(x0, x1, False, x2, x3) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs21(x0, x1, ty_@0) 25.30/10.80 new_ltEs16(GT, EQ) 25.30/10.80 new_ltEs16(EQ, GT) 25.30/10.80 new_primCmpNat0(Succ(x0), Zero) 25.30/10.80 new_compare30(x0, x1, ty_Double) 25.30/10.80 new_lt5(x0, x1) 25.30/10.80 new_compare25(@0, @0) 25.30/10.80 new_ltEs9(True, True) 25.30/10.80 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.30/10.80 new_esEs21(x0, x1, ty_Int) 25.30/10.80 new_esEs19(x0, x1, ty_Char) 25.30/10.80 new_esEs9(LT, LT) 25.30/10.80 new_ltEs16(LT, LT) 25.30/10.80 new_esEs21(x0, x1, ty_Integer) 25.30/10.80 new_esEs4(Just(x0), Nothing, x1) 25.30/10.80 new_esEs30(x0, x1, ty_Int) 25.30/10.80 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.30/10.80 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.30/10.80 new_esEs24(x0, x1, ty_Int) 25.30/10.80 new_esEs19(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs9(EQ, GT) 25.30/10.80 new_esEs9(GT, EQ) 25.30/10.80 new_lt11(x0, x1, ty_Integer) 25.30/10.80 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.30/10.80 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.30/10.80 new_esEs18(x0, x1, ty_Ordering) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.30/10.80 new_esEs18(x0, x1, ty_Integer) 25.30/10.80 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs8(False, True) 25.30/10.80 new_esEs8(True, False) 25.30/10.80 new_esEs29(x0, x1, ty_Float) 25.30/10.80 new_lt11(x0, x1, ty_Bool) 25.30/10.80 new_ltEs20(x0, x1, ty_Integer) 25.30/10.80 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs21(x0, x1, ty_Char) 25.30/10.80 new_lt12(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs8(True, True) 25.30/10.80 new_lt7(x0, x1) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.30/10.80 new_lt6(x0, x1, x2, x3) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.30/10.80 new_esEs21(x0, x1, ty_Bool) 25.30/10.80 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_primEqInt(Pos(Zero), Neg(Zero)) 25.30/10.80 new_primEqInt(Neg(Zero), Pos(Zero)) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.30/10.80 new_compare23(Nothing, Just(x0), False, x1) 25.30/10.80 new_compare210(x0, x1, False, x2, x3) 25.30/10.80 new_compare11(x0, x1, True, x2, x3) 25.30/10.80 new_esEs24(x0, x1, ty_Double) 25.30/10.80 new_esEs30(x0, x1, ty_Bool) 25.30/10.80 new_ltEs19(x0, x1, ty_Double) 25.30/10.80 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.30/10.80 new_esEs22(x0, x1, ty_Ordering) 25.30/10.80 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.30/10.80 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.30/10.80 new_esEs28(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs30(x0, x1, ty_Char) 25.30/10.80 new_ltEs20(x0, x1, ty_Ordering) 25.30/10.80 new_esEs29(x0, x1, ty_@0) 25.30/10.80 new_esEs24(x0, x1, ty_Char) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.30/10.80 new_esEs19(x0, x1, ty_Int) 25.30/10.80 new_compare8(Integer(x0), Integer(x1)) 25.30/10.80 new_esEs30(x0, x1, ty_Double) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.30/10.80 new_compare19(x0, x1, False, x2, x3) 25.30/10.80 new_compare23(Just(x0), Nothing, False, x1) 25.30/10.80 new_primPlusNat0(Zero, x0) 25.30/10.80 new_esEs27(x0, x1, ty_Int) 25.30/10.80 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs19(x0, x1, ty_Double) 25.30/10.80 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs22(x0, x1, ty_Integer) 25.30/10.80 new_esEs28(x0, x1, ty_Bool) 25.30/10.80 new_ltEs19(x0, x1, ty_Int) 25.30/10.80 new_ltEs20(x0, x1, ty_Double) 25.30/10.80 new_esEs25(x0, x1, ty_Char) 25.30/10.80 new_ltEs5(x0, x1, x2) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.30/10.80 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.30/10.80 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.30/10.80 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs29(x0, x1, ty_Char) 25.30/10.80 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare30(x0, x1, ty_@0) 25.30/10.80 new_lt20(x0, x1, ty_@0) 25.30/10.80 new_esEs24(x0, x1, ty_@0) 25.30/10.80 new_esEs19(x0, x1, ty_Float) 25.30/10.80 new_ltEs16(GT, GT) 25.30/10.80 new_esEs23(x0, x1, ty_@0) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.30/10.80 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.30/10.80 new_esEs21(x0, x1, ty_Double) 25.30/10.80 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare110(x0, x1, False, x2, x3, x4) 25.30/10.80 new_compare23(x0, x1, True, x2) 25.30/10.80 new_lt20(x0, x1, app(ty_[], x2)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.30/10.80 new_compare24(x0, x1, False) 25.30/10.80 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_ltEs19(x0, x1, ty_Float) 25.30/10.80 new_esEs10(Char(x0), Char(x1)) 25.30/10.80 new_compare210(x0, x1, True, x2, x3) 25.30/10.80 new_ltEs16(LT, EQ) 25.30/10.80 new_ltEs16(EQ, LT) 25.30/10.80 new_esEs30(x0, x1, ty_Float) 25.30/10.80 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.30/10.80 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.30/10.80 new_ltEs11(Just(x0), Nothing, x1) 25.30/10.80 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare6(Char(x0), Char(x1)) 25.30/10.80 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.30/10.80 new_asAs(False, x0) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.30/10.80 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs25(x0, x1, ty_Int) 25.30/10.80 new_esEs29(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_primEqNat0(Zero, Succ(x0)) 25.30/10.80 new_esEs21(x0, x1, ty_Ordering) 25.30/10.80 new_ltEs7(x0, x1) 25.30/10.80 new_compare211(x0, x1, True) 25.30/10.80 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs22(x0, x1, ty_Bool) 25.30/10.80 new_lt11(x0, x1, ty_Char) 25.30/10.80 new_esEs17([], :(x0, x1), x2) 25.30/10.80 new_ltEs18(x0, x1, ty_Integer) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.30/10.80 new_esEs22(x0, x1, app(ty_[], x2)) 25.30/10.80 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.30/10.80 new_ltEs9(False, True) 25.30/10.80 new_ltEs9(True, False) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.30/10.80 new_esEs17(:(x0, x1), [], x2) 25.30/10.80 new_ltEs14(x0, x1) 25.30/10.80 new_esEs24(x0, x1, ty_Integer) 25.30/10.80 new_primEqNat0(Succ(x0), Succ(x1)) 25.30/10.80 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.30/10.80 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.30/10.80 new_ltEs15(x0, x1) 25.30/10.80 new_lt12(x0, x1, ty_@0) 25.30/10.80 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_lt11(x0, x1, ty_Int) 25.30/10.80 new_compare23(Just(x0), Just(x1), False, x2) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.30/10.80 new_esEs18(x0, x1, ty_Bool) 25.30/10.80 new_esEs25(x0, x1, ty_Float) 25.30/10.80 new_esEs20(x0, x1, ty_Float) 25.30/10.80 new_esEs18(x0, x1, ty_Float) 25.30/10.80 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs20(x0, x1, ty_Bool) 25.30/10.80 new_lt10(x0, x1, x2, x3) 25.30/10.80 new_esEs24(x0, x1, ty_Ordering) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.30/10.80 new_compare0(:(x0, x1), [], x2) 25.30/10.80 new_compare18(x0, x1, x2, x3) 25.30/10.80 new_esEs23(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs29(x0, x1, ty_Ordering) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.30/10.80 new_compare23(Nothing, Nothing, False, x0) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.30/10.80 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs18(x0, x1, ty_Char) 25.30/10.80 new_compare28(x0, x1, True, x2, x3, x4) 25.30/10.80 new_primPlusNat1(Succ(x0), Zero) 25.30/10.80 new_ltEs18(x0, x1, ty_Bool) 25.30/10.80 new_lt9(x0, x1) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.30/10.80 new_esEs20(x0, x1, ty_Int) 25.30/10.80 new_pePe(False, x0) 25.30/10.80 new_esEs28(x0, x1, ty_Char) 25.30/10.80 new_lt11(x0, x1, ty_Float) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.30/10.80 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.30/10.80 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.30/10.80 new_lt12(x0, x1, ty_Double) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.30/10.80 new_compare10(x0, x1, False) 25.30/10.80 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs18(x0, x1, ty_Int) 25.30/10.80 new_esEs20(x0, x1, ty_Char) 25.30/10.80 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs11(Nothing, Just(x0), x1) 25.30/10.80 new_esEs22(x0, x1, ty_Float) 25.30/10.80 new_compare26(x0, x1) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.30/10.80 new_esEs28(x0, x1, ty_Int) 25.30/10.80 new_esEs4(Nothing, Just(x0), x1) 25.30/10.80 new_esEs25(x0, x1, ty_Integer) 25.30/10.80 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.30/10.80 new_esEs17([], [], x0) 25.30/10.80 new_esEs9(EQ, EQ) 25.30/10.80 new_lt20(x0, x1, ty_Double) 25.30/10.80 new_ltEs16(EQ, EQ) 25.30/10.80 new_primCompAux00(x0, LT) 25.30/10.80 new_esEs27(x0, x1, ty_Integer) 25.30/10.80 new_compare30(x0, x1, ty_Float) 25.30/10.80 new_ltEs18(x0, x1, ty_Char) 25.30/10.80 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_@0) 25.30/10.80 new_primEqNat0(Succ(x0), Zero) 25.30/10.80 new_primMulNat0(Zero, Zero) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.30/10.80 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_lt20(x0, x1, ty_Ordering) 25.30/10.80 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_lt18(x0, x1, x2) 25.30/10.80 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.30/10.80 new_ltEs20(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.30/10.80 new_esEs28(x0, x1, ty_Float) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.30/10.80 new_ltEs18(x0, x1, ty_Int) 25.30/10.80 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_lt11(x0, x1, ty_Double) 25.30/10.80 new_esEs24(x0, x1, ty_Float) 25.30/10.80 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_primMulInt(Pos(x0), Pos(x1)) 25.30/10.80 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_ltEs18(x0, x1, ty_Ordering) 25.30/10.80 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_ltEs19(x0, x1, ty_@0) 25.30/10.80 new_compare12(x0, x1, x2, x3) 25.30/10.80 new_compare11(x0, x1, False, x2, x3) 25.30/10.80 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.30/10.80 new_ltEs11(Nothing, Nothing, x0) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.30/10.80 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.30/10.80 new_lt16(x0, x1) 25.30/10.80 new_primCmpNat0(Zero, Succ(x0)) 25.30/10.80 new_ltEs19(x0, x1, app(ty_[], x2)) 25.30/10.80 new_ltEs19(x0, x1, ty_Integer) 25.30/10.80 new_lt8(x0, x1) 25.30/10.80 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.30/10.80 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.30/10.80 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.30/10.80 new_compare30(x0, x1, app(ty_[], x2)) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.30/10.80 new_esEs21(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.30/10.80 new_sr0(Integer(x0), Integer(x1)) 25.30/10.80 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.30/10.80 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.30/10.80 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs20(x0, x1, ty_Ordering) 25.30/10.80 new_not(True) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Int) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.30/10.80 new_compare29(x0, x1, True, x2, x3) 25.30/10.80 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.30/10.80 new_primPlusNat1(Zero, Succ(x0)) 25.30/10.80 new_compare0([], :(x0, x1), x2) 25.30/10.80 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs29(x0, x1, ty_Double) 25.30/10.80 new_lt11(x0, x1, ty_Ordering) 25.30/10.80 new_esEs25(x0, x1, ty_Bool) 25.30/10.80 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.30/10.80 new_primMulInt(Pos(x0), Neg(x1)) 25.30/10.80 new_primMulInt(Neg(x0), Pos(x1)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.30/10.80 new_primCompAux00(x0, EQ) 25.30/10.80 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.30/10.80 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.30/10.80 new_lt12(x0, x1, ty_Ordering) 25.30/10.80 new_esEs28(x0, x1, ty_Integer) 25.30/10.80 new_lt14(x0, x1) 25.30/10.80 new_ltEs19(x0, x1, ty_Char) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.30/10.80 new_esEs24(x0, x1, ty_Bool) 25.30/10.80 new_esEs20(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs9(LT, EQ) 25.30/10.80 new_esEs9(EQ, LT) 25.30/10.80 new_compare24(x0, x1, True) 25.30/10.80 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Double) 25.30/10.80 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.30/10.80 new_esEs9(GT, GT) 25.30/10.80 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs16(LT, GT) 25.30/10.80 new_ltEs16(GT, LT) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.30/10.80 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.30/10.80 new_ltEs10(x0, x1) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.30/10.80 new_compare30(x0, x1, ty_Integer) 25.30/10.80 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_compare27(x0, x1, x2, x3, x4) 25.30/10.80 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Char) 25.30/10.80 new_esEs23(x0, x1, ty_Float) 25.30/10.80 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_asAs(True, x0) 25.30/10.80 new_primMulNat0(Succ(x0), Zero) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.30/10.80 new_compare111(x0, x1, True, x2) 25.30/10.80 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.30/10.80 new_ltEs19(x0, x1, ty_Bool) 25.30/10.80 new_esEs29(x0, x1, ty_Int) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.30/10.80 new_esEs9(LT, GT) 25.30/10.80 new_esEs9(GT, LT) 25.30/10.80 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.30/10.80 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.30/10.80 new_compare30(x0, x1, ty_Bool) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.30/10.80 new_lt20(x0, x1, ty_Bool) 25.30/10.80 new_esEs23(x0, x1, ty_Bool) 25.30/10.80 new_esEs19(x0, x1, ty_Ordering) 25.30/10.80 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_lt15(x0, x1, x2) 25.30/10.80 new_esEs25(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs20(x0, x1, ty_Float) 25.30/10.80 new_esEs12(@0, @0) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.30/10.80 new_compare9(x0, x1) 25.30/10.80 new_lt11(x0, x1, ty_@0) 25.30/10.80 new_compare16(x0, x1, True) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Float) 25.30/10.80 new_primPlusNat0(Succ(x0), x1) 25.30/10.80 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.30/10.80 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.30/10.80 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_primCompAux0(x0, x1, x2, x3) 25.30/10.80 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs18(x0, x1, app(ty_[], x2)) 25.30/10.80 new_compare28(x0, x1, False, x2, x3, x4) 25.30/10.80 new_esEs25(x0, x1, ty_Ordering) 25.30/10.80 new_compare10(x0, x1, True) 25.30/10.80 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.30/10.80 new_esEs21(x0, x1, ty_Float) 25.30/10.80 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.30/10.80 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.30/10.80 new_ltEs19(x0, x1, ty_Ordering) 25.30/10.80 new_compare19(x0, x1, True, x2, x3) 25.30/10.80 new_esEs26(x0, x1, ty_Int) 25.30/10.80 new_esEs25(x0, x1, ty_Double) 25.30/10.80 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare111(x0, x1, False, x2) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.30/10.80 new_lt20(x0, x1, ty_Integer) 25.30/10.80 new_ltEs4(x0, x1) 25.30/10.80 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_primEqNat0(Zero, Zero) 25.30/10.80 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.30/10.80 new_lt20(x0, x1, ty_Char) 25.30/10.80 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.30/10.80 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.30/10.80 new_ltEs9(False, False) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.30/10.80 new_not(False) 25.30/10.80 new_esEs25(x0, x1, ty_@0) 25.30/10.80 new_esEs22(x0, x1, ty_@0) 25.30/10.80 new_ltEs20(x0, x1, ty_Char) 25.30/10.80 new_esEs8(False, False) 25.30/10.80 new_esEs30(x0, x1, ty_Integer) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.30/10.80 new_ltEs18(x0, x1, ty_@0) 25.30/10.80 new_esEs19(x0, x1, ty_Integer) 25.30/10.80 new_esEs22(x0, x1, ty_Double) 25.30/10.80 new_compare15(x0, x1) 25.30/10.80 new_primMulInt(Neg(x0), Neg(x1)) 25.30/10.80 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_lt11(x0, x1, app(ty_[], x2)) 25.30/10.80 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.30/10.80 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.30/10.80 new_lt12(x0, x1, ty_Bool) 25.30/10.80 new_ltEs12(x0, x1) 25.30/10.80 new_lt12(x0, x1, ty_Float) 25.30/10.80 new_compare13(x0, x1, x2) 25.30/10.80 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.30/10.80 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs26(x0, x1, ty_Integer) 25.30/10.80 new_esEs18(x0, x1, ty_@0) 25.30/10.80 new_sr(x0, x1) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.30/10.80 new_esEs30(x0, x1, ty_Ordering) 25.30/10.80 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.30/10.80 new_compare110(x0, x1, True, x2, x3, x4) 25.30/10.80 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_compare211(x0, x1, False) 25.30/10.80 new_lt20(x0, x1, ty_Int) 25.30/10.80 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs18(x0, x1, ty_Double) 25.30/10.80 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs23(x0, x1, ty_Integer) 25.30/10.80 new_esEs20(x0, x1, ty_@0) 25.30/10.80 new_primPlusNat1(Succ(x0), Succ(x1)) 25.30/10.80 new_esEs28(x0, x1, ty_@0) 25.30/10.80 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_ltEs18(x0, x1, ty_Double) 25.30/10.80 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_ltEs20(x0, x1, ty_Int) 25.30/10.80 new_esEs20(x0, x1, ty_Double) 25.30/10.80 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.30/10.80 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.30/10.80 new_ltEs18(x0, x1, app(ty_[], x2)) 25.30/10.80 new_lt12(x0, x1, ty_Char) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.30/10.80 new_primCmpNat0(Succ(x0), Succ(x1)) 25.30/10.80 new_lt12(x0, x1, ty_Int) 25.30/10.80 new_primCmpNat0(Zero, Zero) 25.30/10.80 new_esEs6(Left(x0), Right(x1), x2, x3) 25.30/10.80 new_esEs6(Right(x0), Left(x1), x2, x3) 25.30/10.80 new_esEs14(Integer(x0), Integer(x1)) 25.30/10.80 new_lt4(x0, x1, x2) 25.30/10.80 new_compare0(:(x0, x1), :(x2, x3), x4) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.30/10.80 25.30/10.80 We have to consider all minimal (P,Q,R)-chains. 25.30/10.80 ---------------------------------------- 25.30/10.80 25.30/10.80 (33) TransformationProof (EQUIVALENT) 25.30/10.80 By rewriting [LPAR04] the rule new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), LT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: 25.30/10.80 25.30/10.80 (new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, LT), h, ba),new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, LT), h, ba)) 25.30/10.80 25.30/10.80 25.30/10.80 ---------------------------------------- 25.30/10.80 25.30/10.80 (34) 25.30/10.80 Obligation: 25.30/10.80 Q DP problem: 25.30/10.80 The TRS P consists of the following rules: 25.30/10.80 25.30/10.80 new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw20, Just(vyw21), bb, bc) 25.30/10.80 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM03(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Just(vyw300), new_esEs29(vyw50, vyw300, ba), ba), LT), h, ba) 25.30/10.80 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, bb, bc) -> new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_esEs9(new_compare23(Just(vyw21), Just(vyw16), new_esEs30(vyw21, vyw16, bc), bc), GT), bb, bc) 25.30/10.80 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw19, Just(vyw21), bb, bc) 25.30/10.80 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw33, Just(vyw50), h, ba) 25.30/10.80 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), GT), h, ba) 25.30/10.80 new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Just(vyw50), h, ba) 25.30/10.80 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, LT), h, ba) 25.30/10.80 25.30/10.80 The TRS R consists of the following rules: 25.30/10.80 25.30/10.80 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.30/10.80 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.30/10.80 new_lt10(vyw31000, vyw32000, ee, ef) -> new_esEs9(new_compare18(vyw31000, vyw32000, ee, ef), LT) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(ty_[], caa)) -> new_esEs17(vyw502, vyw3002, caa) 25.30/10.80 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), cgg, cgh) -> new_pePe(new_lt20(vyw31000, vyw32000, cgg), new_asAs(new_esEs28(vyw31000, vyw32000, cgg), new_ltEs20(vyw31001, vyw32001, cgh))) 25.30/10.80 new_pePe(True, vyw101) -> True 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.30/10.80 new_compare23(vyw310, vyw320, True, cgf) -> EQ 25.30/10.80 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.30/10.80 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.30/10.80 new_esEs29(vyw50, vyw300, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vyw50, vyw300, fh, ga, gb) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.30/10.80 new_esEs9(LT, EQ) -> False 25.30/10.80 new_esEs9(EQ, LT) -> False 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(ty_[], da)) -> new_ltEs5(vyw3100, vyw3200, da) 25.30/10.80 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.30/10.80 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dch)) -> new_compare7(vyw31000, vyw32000, dch) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.80 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.80 new_lt12(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_lt4(vyw31000, vyw32000, cg) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, bbb), bah) -> new_ltEs11(vyw31000, vyw32000, bbb) 25.30/10.80 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), bdf, bdg, bdh) -> new_pePe(new_lt12(vyw31000, vyw32000, bdf), new_asAs(new_esEs22(vyw31000, vyw32000, bdf), new_pePe(new_lt11(vyw31001, vyw32001, bdg), new_asAs(new_esEs21(vyw31001, vyw32001, bdg), new_ltEs18(vyw31002, vyw32002, bdh))))) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.80 new_primCompAux0(vyw31000, vyw32000, vyw102, da) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, da)) 25.30/10.80 new_compare30(vyw31000, vyw32000, app(app(ty_@2, ddh), dea)) -> new_compare18(vyw31000, vyw32000, ddh, dea) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.30/10.80 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.30/10.80 new_lt12(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31000, vyw32000, ee, ef) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.80 new_compare25(@0, @0) -> EQ 25.30/10.80 new_ltEs9(False, True) -> True 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, fc) -> new_esEs9(vyw500, vyw3000) 25.30/10.80 new_compare210(vyw31000, vyw32000, True, ee, ef) -> EQ 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, fc) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(vyw500, vyw3000, bab, bac, bad) 25.30/10.80 new_esEs8(False, True) -> False 25.30/10.80 new_esEs8(True, False) -> False 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_esEs4(vyw31000, vyw32000, bag) 25.30/10.80 new_compare19(vyw31000, vyw32000, True, eh, fa) -> LT 25.30/10.80 new_lt20(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_lt6(vyw31000, vyw32000, dcb, dcc) 25.30/10.80 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.80 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_esEs13(vyw31000, vyw32000, cg) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.30/10.80 new_compare23(Just(vyw3100), Just(vyw3200), False, cgf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, cgf), cgf) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, dah), dba)) -> new_ltEs8(vyw31001, vyw32001, dah, dba) 25.30/10.80 new_not(True) -> False 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_primCompAux00(vyw112, LT) -> LT 25.30/10.80 new_primCmpNat0(Zero, Zero) -> EQ 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.30/10.80 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(vyw31000, vyw32000, bge, bgf, bgg) 25.30/10.80 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare27(vyw31000, vyw32000, ddb, ddc, ddd) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], cfb), fc) -> new_esEs17(vyw500, vyw3000, cfb) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw500, vyw3000, dh, ea, eb) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(ty_Ratio, bhc)) -> new_esEs13(vyw502, vyw3002, bhc) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs13(vyw31000, vyw32000, cdb, cdc, cdd) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_@0) -> new_esEs12(vyw21, vyw16) 25.30/10.80 new_ltEs16(GT, EQ) -> False 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.30/10.80 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.80 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, bbf), bbg), bah) -> new_ltEs8(vyw31000, vyw32000, bbf, bbg) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(vyw3100, vyw3200, bdf, bdg, bdh) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.80 new_lt12(vyw31000, vyw32000, app(ty_[], bgh)) -> new_lt18(vyw31000, vyw32000, bgh) 25.30/10.80 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.80 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.30/10.80 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(vyw501, vyw3001, gh, ha, hb) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, fc) -> new_esEs12(vyw500, vyw3000) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31000, vyw32000, ee, ef) 25.30/10.80 new_primCompAux00(vyw112, GT) -> GT 25.30/10.80 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(vyw500, vyw3000, ccb, ccc, ccd) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs13(vyw31001, vyw32001, dae, daf, dag) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.30/10.80 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.30/10.80 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.30/10.80 new_ltEs16(LT, LT) -> True 25.30/10.80 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw501, vyw3001, cah, cba, cbb) 25.30/10.80 new_esEs30(vyw21, vyw16, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(vyw21, vyw16, chf, chg, chh) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, bah) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.30/10.80 new_compare16(vyw31000, vyw32000, False) -> GT 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.30/10.80 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, fc) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.30/10.80 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.30/10.80 new_compare28(vyw31000, vyw32000, False, bge, bgf, bgg) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.30/10.80 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.30/10.80 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt17(vyw31001, vyw32001, bfe, bff, bfg) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fc) -> new_esEs5(vyw500, vyw3000, ceg, ceh, cfa) 25.30/10.80 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.80 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, bah) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(vyw31001, vyw32001, bfe, bff, bfg) 25.30/10.80 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.30/10.80 new_compare110(vyw31000, vyw32000, False, bge, bgf, bgg) -> GT 25.30/10.80 new_pePe(False, vyw101) -> vyw101 25.30/10.80 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.80 new_ltEs5(vyw3100, vyw3200, da) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, da), GT)) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_ltEs9(True, True) -> True 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_esEs6(vyw31000, vyw32000, eh, fa) 25.30/10.80 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.30/10.80 new_ltEs16(LT, GT) -> True 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_lt11(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw31001, vyw32001, bgc, bgd) 25.30/10.80 new_esEs17([], [], db) -> True 25.30/10.80 new_ltEs16(LT, EQ) -> True 25.30/10.80 new_ltEs16(EQ, LT) -> False 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Float) -> new_esEs11(vyw21, vyw16) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], cdg)) -> new_ltEs5(vyw31000, vyw32000, cdg) 25.30/10.80 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_compare11(vyw31000, vyw32000, False, ee, ef) -> GT 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, bah) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cab)) -> new_esEs4(vyw502, vyw3002, cab) 25.30/10.80 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.30/10.80 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.30/10.80 new_compare30(vyw31000, vyw32000, app(app(ty_Either, dde), ddf)) -> new_compare12(vyw31000, vyw32000, dde, ddf) 25.30/10.80 new_esEs30(vyw21, vyw16, app(ty_[], daa)) -> new_esEs17(vyw21, vyw16, daa) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(ty_Ratio, de)) -> new_esEs13(vyw500, vyw3000, de) 25.30/10.80 new_ltEs16(GT, LT) -> False 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(vyw500, vyw3000, cb, cc, cd) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(ty_Maybe, hd)) -> new_esEs4(vyw501, vyw3001, hd) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, bah) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw31002, vyw32002, bec, bed, bee) 25.30/10.80 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(ty_[], ec)) -> new_esEs17(vyw500, vyw3000, ec) 25.30/10.80 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.30/10.80 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(app(ty_Either, cac), cad)) -> new_esEs6(vyw501, vyw3001, cac, cad) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_esEs8(False, False) -> True 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, ceb), cec), fc) -> new_esEs6(vyw500, vyw3000, ceb, cec) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.30/10.80 new_ltEs8(Right(vyw31000), Left(vyw32000), bcc, bah) -> False 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.30/10.80 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.30/10.80 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Integer) -> new_esEs14(vyw50, vyw300) 25.30/10.80 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, ced), fc) -> new_esEs13(vyw500, vyw3000, ced) 25.30/10.80 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ff, fg) -> new_asAs(new_esEs20(vyw500, vyw3000, ff), new_esEs19(vyw501, vyw3001, fg)) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(vyw502, vyw3002, bhf, bhg, bhh) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.30/10.80 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, fc) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.30/10.80 new_compare18(vyw31000, vyw32000, ee, ef) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, ee, ef), ee, ef) 25.30/10.80 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.30/10.80 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, fc) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.30/10.80 new_compare30(vyw31000, vyw32000, app(ty_Maybe, dda)) -> new_compare13(vyw31000, vyw32000, dda) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, cee), cef), fc) -> new_esEs7(vyw500, vyw3000, cee, cef) 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(ty_[], dcd)) -> new_esEs17(vyw31000, vyw32000, dcd) 25.30/10.80 new_ltEs16(EQ, GT) -> True 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_Either, bda), bdb)) -> new_ltEs8(vyw31000, vyw32000, bda, bdb) 25.30/10.80 new_ltEs16(EQ, EQ) -> True 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bg)) -> new_esEs13(vyw500, vyw3000, bg) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, bcc), bah)) -> new_ltEs8(vyw3100, vyw3200, bcc, bah) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Float) -> new_esEs11(vyw50, vyw300) 25.30/10.80 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(ty_Maybe, baf)) -> new_esEs4(vyw500, vyw3000, baf) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.30/10.80 new_esEs29(vyw50, vyw300, app(ty_[], db)) -> new_esEs17(vyw50, vyw300, db) 25.30/10.80 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.30/10.80 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.30/10.80 new_esEs9(LT, LT) -> True 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_lt17(vyw31000, vyw32000, bge, bgf, bgg) -> new_esEs9(new_compare27(vyw31000, vyw32000, bge, bgf, bgg), LT) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, bah) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.80 new_compare23(Just(vyw3100), Nothing, False, cgf) -> GT 25.30/10.80 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, bba), bah) -> new_ltEs6(vyw31000, vyw32000, bba) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, cda)) -> new_ltEs11(vyw31000, vyw32000, cda) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.80 new_compare19(vyw31000, vyw32000, False, eh, fa) -> GT 25.30/10.80 new_lt12(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_lt15(vyw31000, vyw32000, bag) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Double) -> new_esEs15(vyw50, vyw300) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.30/10.80 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), db) -> new_asAs(new_esEs18(vyw500, vyw3000, db), new_esEs17(vyw501, vyw3001, db)) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_esEs4(vyw31001, vyw32001, bfd) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.30/10.80 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.80 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.30/10.80 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), fd) -> new_asAs(new_esEs27(vyw500, vyw3000, fd), new_esEs26(vyw501, vyw3001, fd)) 25.30/10.80 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbh), cca)) -> new_esEs7(vyw500, vyw3000, cbh, cca) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Maybe, bce)) -> new_ltEs11(vyw31000, vyw32000, bce) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_esEs13(vyw31001, vyw32001, bfc) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Double) -> new_esEs15(vyw21, vyw16) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs4(vyw500, vyw3000, cf) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, bef), beg)) -> new_ltEs8(vyw31002, vyw32002, bef, beg) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(app(ty_Either, bha), bhb)) -> new_esEs6(vyw502, vyw3002, bha, bhb) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw31001, vyw32001, bfh, bga) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, fc) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.30/10.80 new_compare16(vyw31000, vyw32000, True) -> LT 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.30/10.80 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.30/10.80 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.80 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.80 new_esEs30(vyw21, vyw16, app(ty_Maybe, dab)) -> new_esEs4(vyw21, vyw16, dab) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, dad)) -> new_ltEs11(vyw31001, vyw32001, dad) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cbd)) -> new_esEs4(vyw501, vyw3001, cbd) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], ce)) -> new_esEs17(vyw500, vyw3000, ce) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Int) -> new_esEs16(vyw50, vyw300) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw31000, vyw32000, bge, bgf, bgg) 25.30/10.80 new_lt15(vyw31000, vyw32000, bag) -> new_esEs9(new_compare13(vyw31000, vyw32000, bag), LT) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.80 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, cdh), cea)) -> new_ltEs17(vyw31000, vyw32000, cdh, cea) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(ty_Maybe, ed)) -> new_esEs4(vyw500, vyw3000, ed) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, be), bf)) -> new_esEs6(vyw500, vyw3000, be, bf) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, eg)) -> new_ltEs6(vyw3100, vyw3200, eg) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(ty_Ratio, hg)) -> new_esEs13(vyw500, vyw3000, hg) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cbg)) -> new_esEs13(vyw500, vyw3000, cbg) 25.30/10.80 new_compare0([], :(vyw32000, vyw32001), da) -> LT 25.30/10.80 new_asAs(True, vyw93) -> vyw93 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.30/10.80 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Integer) -> new_esEs14(vyw21, vyw16) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(ty_[], hc)) -> new_esEs17(vyw501, vyw3001, hc) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.30/10.80 new_esEs25(vyw500, vyw3000, app(ty_[], cce)) -> new_esEs17(vyw500, vyw3000, cce) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, fc) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_lt4(vyw31000, vyw32000, dbe) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_lt10(vyw31000, vyw32000, dce, dcf) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.30/10.80 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs6(Left(vyw500), Right(vyw3000), fb, fc) -> False 25.30/10.80 new_esEs6(Right(vyw500), Left(vyw3000), fb, fc) -> False 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, bah) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(ty_Ratio, ge)) -> new_esEs13(vyw501, vyw3001, ge) 25.30/10.80 new_lt11(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_lt15(vyw31001, vyw32001, bfd) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, bbc), bbd), bbe), bah) -> new_ltEs13(vyw31000, vyw32000, bbc, bbd, bbe) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(app(ty_@2, df), dg)) -> new_esEs7(vyw500, vyw3000, df, dg) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(app(ty_@2, caf), cag)) -> new_esEs7(vyw501, vyw3001, caf, cag) 25.30/10.80 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.30/10.80 new_esEs30(vyw21, vyw16, app(app(ty_@2, chd), che)) -> new_esEs7(vyw21, vyw16, chd, che) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.80 new_primCompAux00(vyw112, EQ) -> vyw112 25.30/10.80 new_compare0([], [], da) -> EQ 25.30/10.80 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.30/10.80 new_ltEs16(GT, GT) -> True 25.30/10.80 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.30/10.80 new_ltEs9(False, False) -> True 25.30/10.80 new_primMulNat0(Zero, Zero) -> Zero 25.30/10.80 new_compare10(vyw31000, vyw32000, False) -> GT 25.30/10.80 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.80 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfc), fc) -> new_esEs4(vyw500, vyw3000, cfc) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, beb)) -> new_ltEs11(vyw31002, vyw32002, beb) 25.30/10.80 new_compare211(vyw31000, vyw32000, True) -> EQ 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_esEs4(vyw31000, vyw32000, dbf) 25.30/10.80 new_esEs23(vyw502, vyw3002, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw502, vyw3002, bhd, bhe) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], bbh), bah) -> new_ltEs5(vyw31000, vyw32000, bbh) 25.30/10.80 new_ltEs11(Nothing, Just(vyw32000), ccg) -> True 25.30/10.80 new_compare28(vyw31000, vyw32000, True, bge, bgf, bgg) -> EQ 25.30/10.80 new_esEs4(Nothing, Nothing, bd) -> True 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dac)) -> new_ltEs6(vyw31001, vyw32001, dac) 25.30/10.80 new_esEs4(Nothing, Just(vyw3000), bd) -> False 25.30/10.80 new_esEs4(Just(vyw500), Nothing, bd) -> False 25.30/10.80 new_esEs20(vyw500, vyw3000, app(ty_[], bae)) -> new_esEs17(vyw500, vyw3000, bae) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_[], bdc)) -> new_ltEs5(vyw31000, vyw32000, bdc) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, bah) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.80 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fh, ga, gb) -> new_asAs(new_esEs25(vyw500, vyw3000, fh), new_asAs(new_esEs24(vyw501, vyw3001, ga), new_esEs23(vyw502, vyw3002, gb))) 25.30/10.80 new_esEs30(vyw21, vyw16, app(ty_Ratio, chc)) -> new_esEs13(vyw21, vyw16, chc) 25.30/10.80 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.30/10.80 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.30/10.80 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(ty_Ratio, cae)) -> new_esEs13(vyw501, vyw3001, cae) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(app(ty_Either, gc), gd)) -> new_esEs6(vyw501, vyw3001, gc, gd) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, ccg)) -> new_ltEs11(vyw3100, vyw3200, ccg) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.30/10.80 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vyw500, vyw3000, cbe, cbf) 25.30/10.80 new_ltEs9(True, False) -> False 25.30/10.80 new_esEs9(EQ, EQ) -> True 25.30/10.80 new_lt12(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_lt6(vyw31000, vyw32000, eh, fa) 25.30/10.80 new_lt11(vyw31001, vyw32001, app(ty_[], bgb)) -> new_lt18(vyw31001, vyw32001, bgb) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(ty_[], bgb)) -> new_esEs17(vyw31001, vyw32001, bgb) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.30/10.80 new_esEs29(vyw50, vyw300, app(ty_Ratio, fd)) -> new_esEs13(vyw50, vyw300, fd) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.80 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.30/10.80 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.30/10.80 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.30/10.80 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vyw31000, vyw32000, bcf, bcg, bch) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, cde), cdf)) -> new_ltEs8(vyw31000, vyw32000, cde, cdf) 25.30/10.80 new_compare24(vyw31000, vyw32000, True) -> EQ 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_esEs7(vyw31000, vyw32000, dce, dcf) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(app(ty_Either, he), hf)) -> new_esEs6(vyw500, vyw3000, he, hf) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.80 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.30/10.80 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.30/10.80 new_compare30(vyw31000, vyw32000, app(ty_[], ddg)) -> new_compare0(vyw31000, vyw32000, ddg) 25.30/10.80 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.30/10.80 new_compare23(Nothing, Just(vyw3200), False, cgf) -> LT 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.30/10.80 new_esEs29(vyw50, vyw300, app(ty_Maybe, bd)) -> new_esEs4(vyw50, vyw300, bd) 25.30/10.80 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.30/10.80 new_compare111(vyw86, vyw87, False, dcg) -> GT 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.30/10.80 new_compare110(vyw31000, vyw32000, True, bge, bgf, bgg) -> LT 25.30/10.80 new_ltEs6(vyw3100, vyw3200, eg) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, eg), GT)) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, bea)) -> new_ltEs6(vyw31002, vyw32002, bea) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.30/10.80 new_esEs19(vyw501, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw501, vyw3001, gf, gg) 25.30/10.80 new_compare23(Nothing, Nothing, False, cgf) -> LT 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, bca), bcb), bah) -> new_ltEs17(vyw31000, vyw32000, bca, bcb) 25.30/10.80 new_ltEs8(Left(vyw31000), Right(vyw32000), bcc, bah) -> True 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cch)) -> new_ltEs6(vyw31000, vyw32000, cch) 25.30/10.80 new_not(False) -> True 25.30/10.80 new_lt11(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_lt4(vyw31001, vyw32001, bfc) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_esEs13(vyw31000, vyw32000, dbe) 25.30/10.80 new_esEs24(vyw501, vyw3001, app(ty_[], cbc)) -> new_esEs17(vyw501, vyw3001, cbc) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, dbc), dbd)) -> new_ltEs17(vyw31001, vyw32001, dbc, dbd) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.80 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.30/10.80 new_esEs9(GT, GT) -> True 25.30/10.80 new_compare0(:(vyw31000, vyw31001), [], da) -> GT 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.80 new_esEs29(vyw50, vyw300, app(app(ty_Either, fb), fc)) -> new_esEs6(vyw50, vyw300, fb, fc) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_compare27(vyw31000, vyw32000, bge, bgf, bgg) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs5(vyw31000, vyw32000, dbg, dbh, dca) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.30/10.80 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(vyw3100, vyw3200, cgg, cgh) 25.30/10.80 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.30/10.80 new_esEs29(vyw50, vyw300, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw50, vyw300, ff, fg) 25.30/10.80 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.30/10.80 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, bah) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.30/10.80 new_esEs9(EQ, GT) -> False 25.30/10.80 new_esEs9(GT, EQ) -> False 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(ty_[], beh)) -> new_ltEs5(vyw31002, vyw32002, beh) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.30/10.80 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.30/10.80 new_compare11(vyw31000, vyw32000, True, ee, ef) -> LT 25.30/10.80 new_esEs30(vyw21, vyw16, app(app(ty_Either, cha), chb)) -> new_esEs6(vyw21, vyw16, cha, chb) 25.30/10.80 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.80 new_compare12(vyw31000, vyw32000, eh, fa) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, eh, fa), eh, fa) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_lt15(vyw31000, vyw32000, dbf) 25.30/10.80 new_esEs8(True, True) -> True 25.30/10.80 new_lt11(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_lt6(vyw31001, vyw32001, bfh, bga) 25.30/10.80 new_compare29(vyw31000, vyw32000, False, eh, fa) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, eh, fa), eh, fa) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.30/10.80 new_compare10(vyw31000, vyw32000, True) -> LT 25.30/10.80 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.30/10.80 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.30/10.80 new_primPlusNat1(Zero, Zero) -> Zero 25.30/10.80 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), da) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, da), da) 25.30/10.80 new_compare13(vyw31000, vyw32000, bag) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, bag), bag) 25.30/10.80 new_esEs22(vyw31000, vyw32000, app(ty_[], bgh)) -> new_esEs17(vyw31000, vyw32000, bgh) 25.30/10.80 new_compare111(vyw86, vyw87, True, dcg) -> LT 25.30/10.80 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccf)) -> new_esEs4(vyw500, vyw3000, ccf) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.30/10.80 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.80 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.30/10.80 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.30/10.80 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(ty_[], dcd)) -> new_lt18(vyw31000, vyw32000, dcd) 25.30/10.80 new_esEs18(vyw500, vyw3000, app(app(ty_Either, dc), dd)) -> new_esEs6(vyw500, vyw3000, dc, dd) 25.30/10.80 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.30/10.80 new_lt18(vyw31000, vyw32000, bgh) -> new_esEs9(new_compare0(vyw31000, vyw32000, bgh), LT) 25.30/10.80 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.30/10.80 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.30/10.80 new_esEs12(@0, @0) -> True 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.80 new_compare29(vyw31000, vyw32000, True, eh, fa) -> EQ 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.30/10.80 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Char) -> new_esEs10(vyw21, vyw16) 25.30/10.80 new_lt6(vyw31000, vyw32000, eh, fa) -> new_esEs9(new_compare12(vyw31000, vyw32000, eh, fa), LT) 25.30/10.80 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw31001, vyw32001, bgc, bgd) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Int) -> new_esEs16(vyw21, vyw16) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.80 new_ltEs11(Just(vyw31000), Nothing, ccg) -> False 25.30/10.80 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.30/10.80 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.30/10.80 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(vyw31002, vyw32002, bfa, bfb) 25.30/10.80 new_ltEs11(Nothing, Nothing, ccg) -> True 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, bh), ca)) -> new_esEs7(vyw500, vyw3000, bh, ca) 25.30/10.80 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.30/10.80 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.80 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.30/10.80 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.30/10.80 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_esEs6(vyw31000, vyw32000, dcb, dcc) 25.30/10.80 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.30/10.80 new_primEqNat0(Zero, Zero) -> True 25.30/10.80 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.30/10.80 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.30/10.80 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.80 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Bool) -> new_esEs8(vyw21, vyw16) 25.30/10.80 new_ltEs20(vyw31001, vyw32001, app(ty_[], dbb)) -> new_ltEs5(vyw31001, vyw32001, dbb) 25.30/10.80 new_compare210(vyw31000, vyw32000, False, ee, ef) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, ee, ef), ee, ef) 25.30/10.80 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.30/10.80 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.30/10.80 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.30/10.80 new_esEs9(LT, GT) -> False 25.30/10.80 new_esEs9(GT, LT) -> False 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Ratio, bcd)) -> new_ltEs6(vyw31000, vyw32000, bcd) 25.30/10.80 new_esEs17(:(vyw500, vyw501), [], db) -> False 25.30/10.80 new_esEs17([], :(vyw3000, vyw3001), db) -> False 25.30/10.80 new_asAs(False, vyw93) -> False 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Ordering) -> new_esEs9(vyw50, vyw300) 25.30/10.80 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_lt17(vyw31000, vyw32000, dbg, dbh, dca) 25.30/10.80 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.30/10.80 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.30/10.80 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Bool) -> new_esEs8(vyw50, vyw300) 25.30/10.80 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.30/10.80 new_esEs30(vyw21, vyw16, ty_Ordering) -> new_esEs9(vyw21, vyw16) 25.30/10.80 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_@2, bdd), bde)) -> new_ltEs17(vyw31000, vyw32000, bdd, bde) 25.30/10.80 new_lt4(vyw31000, vyw32000, cg) -> new_esEs9(new_compare7(vyw31000, vyw32000, cg), LT) 25.30/10.80 new_esEs29(vyw50, vyw300, ty_Char) -> new_esEs10(vyw50, vyw300) 25.30/10.80 new_esEs20(vyw500, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw500, vyw3000, hh, baa) 25.30/10.80 25.30/10.80 The set Q consists of the following terms: 25.30/10.80 25.30/10.80 new_lt12(x0, x1, ty_Integer) 25.30/10.80 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.30/10.80 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.30/10.80 new_lt19(x0, x1) 25.30/10.80 new_esEs28(x0, x1, ty_Ordering) 25.30/10.80 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs29(x0, x1, ty_Integer) 25.30/10.80 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_ltEs20(x0, x1, ty_@0) 25.30/10.80 new_lt20(x0, x1, ty_Float) 25.30/10.80 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_compare0([], [], x0) 25.30/10.80 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs19(x0, x1, ty_@0) 25.30/10.80 new_esEs30(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs16(x0, x1) 25.30/10.80 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs28(x0, x1, ty_Double) 25.30/10.80 new_esEs23(x0, x1, ty_Int) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs22(x0, x1, ty_Int) 25.30/10.80 new_esEs30(x0, x1, ty_@0) 25.30/10.80 new_ltEs20(x0, x1, ty_Bool) 25.30/10.80 new_primPlusNat1(Zero, Zero) 25.30/10.80 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.30/10.80 new_compare16(x0, x1, False) 25.30/10.80 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs22(x0, x1, ty_Char) 25.30/10.80 new_esEs23(x0, x1, ty_Ordering) 25.30/10.80 new_esEs19(x0, x1, ty_Bool) 25.30/10.80 new_primMulNat0(Zero, Succ(x0)) 25.30/10.80 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_compare30(x0, x1, ty_Ordering) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.30/10.80 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_compare30(x0, x1, ty_Int) 25.30/10.80 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.30/10.80 new_primMulNat0(Succ(x0), Succ(x1)) 25.30/10.80 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_primEqInt(Pos(Zero), Pos(Zero)) 25.30/10.80 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_primCompAux00(x0, GT) 25.30/10.80 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs23(x0, x1, ty_Char) 25.30/10.80 new_esEs20(x0, x1, ty_Integer) 25.30/10.80 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.30/10.80 new_esEs29(x0, x1, ty_Bool) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.30/10.80 new_esEs4(Nothing, Nothing, x0) 25.30/10.80 new_ltEs6(x0, x1, x2) 25.30/10.80 new_lt17(x0, x1, x2, x3, x4) 25.30/10.80 new_esEs24(x0, x1, app(ty_[], x2)) 25.30/10.80 new_primEqInt(Neg(Zero), Neg(Zero)) 25.30/10.80 new_pePe(True, x0) 25.30/10.80 new_ltEs18(x0, x1, ty_Float) 25.30/10.80 new_compare30(x0, x1, ty_Char) 25.30/10.80 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_lt13(x0, x1) 25.30/10.80 new_esEs23(x0, x1, ty_Double) 25.30/10.80 new_compare29(x0, x1, False, x2, x3) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs21(x0, x1, ty_@0) 25.30/10.80 new_ltEs16(GT, EQ) 25.30/10.80 new_ltEs16(EQ, GT) 25.30/10.80 new_primCmpNat0(Succ(x0), Zero) 25.30/10.80 new_compare30(x0, x1, ty_Double) 25.30/10.80 new_lt5(x0, x1) 25.30/10.80 new_compare25(@0, @0) 25.30/10.80 new_ltEs9(True, True) 25.30/10.80 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.30/10.80 new_esEs21(x0, x1, ty_Int) 25.30/10.80 new_esEs19(x0, x1, ty_Char) 25.30/10.80 new_esEs9(LT, LT) 25.30/10.80 new_ltEs16(LT, LT) 25.30/10.80 new_esEs21(x0, x1, ty_Integer) 25.30/10.80 new_esEs4(Just(x0), Nothing, x1) 25.30/10.80 new_esEs30(x0, x1, ty_Int) 25.30/10.80 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.30/10.80 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.30/10.80 new_esEs24(x0, x1, ty_Int) 25.30/10.80 new_esEs19(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs9(EQ, GT) 25.30/10.80 new_esEs9(GT, EQ) 25.30/10.80 new_lt11(x0, x1, ty_Integer) 25.30/10.80 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.30/10.80 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.30/10.80 new_esEs18(x0, x1, ty_Ordering) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.30/10.80 new_esEs18(x0, x1, ty_Integer) 25.30/10.80 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs8(False, True) 25.30/10.80 new_esEs8(True, False) 25.30/10.80 new_esEs29(x0, x1, ty_Float) 25.30/10.80 new_lt11(x0, x1, ty_Bool) 25.30/10.80 new_ltEs20(x0, x1, ty_Integer) 25.30/10.80 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs21(x0, x1, ty_Char) 25.30/10.80 new_lt12(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs8(True, True) 25.30/10.80 new_lt7(x0, x1) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.30/10.80 new_lt6(x0, x1, x2, x3) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.30/10.80 new_esEs21(x0, x1, ty_Bool) 25.30/10.80 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_primEqInt(Pos(Zero), Neg(Zero)) 25.30/10.80 new_primEqInt(Neg(Zero), Pos(Zero)) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.30/10.80 new_compare23(Nothing, Just(x0), False, x1) 25.30/10.80 new_compare210(x0, x1, False, x2, x3) 25.30/10.80 new_compare11(x0, x1, True, x2, x3) 25.30/10.80 new_esEs24(x0, x1, ty_Double) 25.30/10.80 new_esEs30(x0, x1, ty_Bool) 25.30/10.80 new_ltEs19(x0, x1, ty_Double) 25.30/10.80 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.30/10.80 new_esEs22(x0, x1, ty_Ordering) 25.30/10.80 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.30/10.80 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.30/10.80 new_esEs28(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs30(x0, x1, ty_Char) 25.30/10.80 new_ltEs20(x0, x1, ty_Ordering) 25.30/10.80 new_esEs29(x0, x1, ty_@0) 25.30/10.80 new_esEs24(x0, x1, ty_Char) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.30/10.80 new_esEs19(x0, x1, ty_Int) 25.30/10.80 new_compare8(Integer(x0), Integer(x1)) 25.30/10.80 new_esEs30(x0, x1, ty_Double) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.30/10.80 new_compare19(x0, x1, False, x2, x3) 25.30/10.80 new_compare23(Just(x0), Nothing, False, x1) 25.30/10.80 new_primPlusNat0(Zero, x0) 25.30/10.80 new_esEs27(x0, x1, ty_Int) 25.30/10.80 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs19(x0, x1, ty_Double) 25.30/10.80 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs22(x0, x1, ty_Integer) 25.30/10.80 new_esEs28(x0, x1, ty_Bool) 25.30/10.80 new_ltEs19(x0, x1, ty_Int) 25.30/10.80 new_ltEs20(x0, x1, ty_Double) 25.30/10.80 new_esEs25(x0, x1, ty_Char) 25.30/10.80 new_ltEs5(x0, x1, x2) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.30/10.80 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.30/10.80 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.30/10.80 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs29(x0, x1, ty_Char) 25.30/10.80 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare30(x0, x1, ty_@0) 25.30/10.80 new_lt20(x0, x1, ty_@0) 25.30/10.80 new_esEs24(x0, x1, ty_@0) 25.30/10.80 new_esEs19(x0, x1, ty_Float) 25.30/10.80 new_ltEs16(GT, GT) 25.30/10.80 new_esEs23(x0, x1, ty_@0) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.30/10.80 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.30/10.80 new_esEs21(x0, x1, ty_Double) 25.30/10.80 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare110(x0, x1, False, x2, x3, x4) 25.30/10.80 new_compare23(x0, x1, True, x2) 25.30/10.80 new_lt20(x0, x1, app(ty_[], x2)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.30/10.80 new_compare24(x0, x1, False) 25.30/10.80 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_ltEs19(x0, x1, ty_Float) 25.30/10.80 new_esEs10(Char(x0), Char(x1)) 25.30/10.80 new_compare210(x0, x1, True, x2, x3) 25.30/10.80 new_ltEs16(LT, EQ) 25.30/10.80 new_ltEs16(EQ, LT) 25.30/10.80 new_esEs30(x0, x1, ty_Float) 25.30/10.80 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.30/10.80 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.30/10.80 new_ltEs11(Just(x0), Nothing, x1) 25.30/10.80 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare6(Char(x0), Char(x1)) 25.30/10.80 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.30/10.80 new_asAs(False, x0) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.30/10.80 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs25(x0, x1, ty_Int) 25.30/10.80 new_esEs29(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_primEqNat0(Zero, Succ(x0)) 25.30/10.80 new_esEs21(x0, x1, ty_Ordering) 25.30/10.80 new_ltEs7(x0, x1) 25.30/10.80 new_compare211(x0, x1, True) 25.30/10.80 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs22(x0, x1, ty_Bool) 25.30/10.80 new_lt11(x0, x1, ty_Char) 25.30/10.80 new_esEs17([], :(x0, x1), x2) 25.30/10.80 new_ltEs18(x0, x1, ty_Integer) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.30/10.80 new_esEs22(x0, x1, app(ty_[], x2)) 25.30/10.80 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.30/10.80 new_ltEs9(False, True) 25.30/10.80 new_ltEs9(True, False) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.30/10.80 new_esEs17(:(x0, x1), [], x2) 25.30/10.80 new_ltEs14(x0, x1) 25.30/10.80 new_esEs24(x0, x1, ty_Integer) 25.30/10.80 new_primEqNat0(Succ(x0), Succ(x1)) 25.30/10.80 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.30/10.80 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.30/10.80 new_ltEs15(x0, x1) 25.30/10.80 new_lt12(x0, x1, ty_@0) 25.30/10.80 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_lt11(x0, x1, ty_Int) 25.30/10.80 new_compare23(Just(x0), Just(x1), False, x2) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.30/10.80 new_esEs18(x0, x1, ty_Bool) 25.30/10.80 new_esEs25(x0, x1, ty_Float) 25.30/10.80 new_esEs20(x0, x1, ty_Float) 25.30/10.80 new_esEs18(x0, x1, ty_Float) 25.30/10.80 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs20(x0, x1, ty_Bool) 25.30/10.80 new_lt10(x0, x1, x2, x3) 25.30/10.80 new_esEs24(x0, x1, ty_Ordering) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.30/10.80 new_compare0(:(x0, x1), [], x2) 25.30/10.80 new_compare18(x0, x1, x2, x3) 25.30/10.80 new_esEs23(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs29(x0, x1, ty_Ordering) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.30/10.80 new_compare23(Nothing, Nothing, False, x0) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.30/10.80 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs18(x0, x1, ty_Char) 25.30/10.80 new_compare28(x0, x1, True, x2, x3, x4) 25.30/10.80 new_primPlusNat1(Succ(x0), Zero) 25.30/10.80 new_ltEs18(x0, x1, ty_Bool) 25.30/10.80 new_lt9(x0, x1) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.30/10.80 new_esEs20(x0, x1, ty_Int) 25.30/10.80 new_pePe(False, x0) 25.30/10.80 new_esEs28(x0, x1, ty_Char) 25.30/10.80 new_lt11(x0, x1, ty_Float) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.30/10.80 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.30/10.80 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.30/10.80 new_lt12(x0, x1, ty_Double) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.30/10.80 new_compare10(x0, x1, False) 25.30/10.80 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs18(x0, x1, ty_Int) 25.30/10.80 new_esEs20(x0, x1, ty_Char) 25.30/10.80 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs11(Nothing, Just(x0), x1) 25.30/10.80 new_esEs22(x0, x1, ty_Float) 25.30/10.80 new_compare26(x0, x1) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.30/10.80 new_esEs28(x0, x1, ty_Int) 25.30/10.80 new_esEs4(Nothing, Just(x0), x1) 25.30/10.80 new_esEs25(x0, x1, ty_Integer) 25.30/10.80 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.30/10.80 new_esEs17([], [], x0) 25.30/10.80 new_esEs9(EQ, EQ) 25.30/10.80 new_lt20(x0, x1, ty_Double) 25.30/10.80 new_ltEs16(EQ, EQ) 25.30/10.80 new_primCompAux00(x0, LT) 25.30/10.80 new_esEs27(x0, x1, ty_Integer) 25.30/10.80 new_compare30(x0, x1, ty_Float) 25.30/10.80 new_ltEs18(x0, x1, ty_Char) 25.30/10.80 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_@0) 25.30/10.80 new_primEqNat0(Succ(x0), Zero) 25.30/10.80 new_primMulNat0(Zero, Zero) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.30/10.80 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_lt20(x0, x1, ty_Ordering) 25.30/10.80 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_lt18(x0, x1, x2) 25.30/10.80 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.30/10.80 new_ltEs20(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.30/10.80 new_esEs28(x0, x1, ty_Float) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.30/10.80 new_ltEs18(x0, x1, ty_Int) 25.30/10.80 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_lt11(x0, x1, ty_Double) 25.30/10.80 new_esEs24(x0, x1, ty_Float) 25.30/10.80 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_primMulInt(Pos(x0), Pos(x1)) 25.30/10.80 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_ltEs18(x0, x1, ty_Ordering) 25.30/10.80 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_ltEs19(x0, x1, ty_@0) 25.30/10.80 new_compare12(x0, x1, x2, x3) 25.30/10.80 new_compare11(x0, x1, False, x2, x3) 25.30/10.80 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.30/10.80 new_ltEs11(Nothing, Nothing, x0) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.30/10.80 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.30/10.80 new_lt16(x0, x1) 25.30/10.80 new_primCmpNat0(Zero, Succ(x0)) 25.30/10.80 new_ltEs19(x0, x1, app(ty_[], x2)) 25.30/10.80 new_ltEs19(x0, x1, ty_Integer) 25.30/10.80 new_lt8(x0, x1) 25.30/10.80 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.30/10.80 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.30/10.80 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.30/10.80 new_compare30(x0, x1, app(ty_[], x2)) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.30/10.80 new_esEs21(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.30/10.80 new_sr0(Integer(x0), Integer(x1)) 25.30/10.80 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.30/10.80 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.30/10.80 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs20(x0, x1, ty_Ordering) 25.30/10.80 new_not(True) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Int) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.30/10.80 new_compare29(x0, x1, True, x2, x3) 25.30/10.80 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.30/10.80 new_primPlusNat1(Zero, Succ(x0)) 25.30/10.80 new_compare0([], :(x0, x1), x2) 25.30/10.80 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_esEs29(x0, x1, ty_Double) 25.30/10.80 new_lt11(x0, x1, ty_Ordering) 25.30/10.80 new_esEs25(x0, x1, ty_Bool) 25.30/10.80 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.30/10.80 new_primMulInt(Pos(x0), Neg(x1)) 25.30/10.80 new_primMulInt(Neg(x0), Pos(x1)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.30/10.80 new_primCompAux00(x0, EQ) 25.30/10.80 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.30/10.80 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.30/10.80 new_lt12(x0, x1, ty_Ordering) 25.30/10.80 new_esEs28(x0, x1, ty_Integer) 25.30/10.80 new_lt14(x0, x1) 25.30/10.80 new_ltEs19(x0, x1, ty_Char) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.30/10.80 new_esEs24(x0, x1, ty_Bool) 25.30/10.80 new_esEs20(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs9(LT, EQ) 25.30/10.80 new_esEs9(EQ, LT) 25.30/10.80 new_compare24(x0, x1, True) 25.30/10.80 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Double) 25.30/10.80 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.30/10.80 new_esEs9(GT, GT) 25.30/10.80 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs16(LT, GT) 25.30/10.80 new_ltEs16(GT, LT) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.30/10.80 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.30/10.80 new_ltEs10(x0, x1) 25.30/10.80 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.30/10.80 new_compare30(x0, x1, ty_Integer) 25.30/10.80 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_compare27(x0, x1, x2, x3, x4) 25.30/10.80 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Char) 25.30/10.80 new_esEs23(x0, x1, ty_Float) 25.30/10.80 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_asAs(True, x0) 25.30/10.80 new_primMulNat0(Succ(x0), Zero) 25.30/10.80 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.30/10.80 new_compare111(x0, x1, True, x2) 25.30/10.80 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.30/10.80 new_ltEs19(x0, x1, ty_Bool) 25.30/10.80 new_esEs29(x0, x1, ty_Int) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.30/10.80 new_esEs9(LT, GT) 25.30/10.80 new_esEs9(GT, LT) 25.30/10.80 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.30/10.80 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.30/10.80 new_compare30(x0, x1, ty_Bool) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.30/10.80 new_lt20(x0, x1, ty_Bool) 25.30/10.80 new_esEs23(x0, x1, ty_Bool) 25.30/10.80 new_esEs19(x0, x1, ty_Ordering) 25.30/10.80 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_lt15(x0, x1, x2) 25.30/10.80 new_esEs25(x0, x1, app(ty_[], x2)) 25.30/10.80 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs20(x0, x1, ty_Float) 25.30/10.80 new_esEs12(@0, @0) 25.30/10.80 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.30/10.80 new_compare9(x0, x1) 25.30/10.80 new_lt11(x0, x1, ty_@0) 25.30/10.80 new_compare16(x0, x1, True) 25.30/10.80 new_esEs4(Just(x0), Just(x1), ty_Float) 25.30/10.80 new_primPlusNat0(Succ(x0), x1) 25.30/10.80 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.30/10.80 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.30/10.80 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.80 new_primCompAux0(x0, x1, x2, x3) 25.30/10.80 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_esEs18(x0, x1, app(ty_[], x2)) 25.30/10.80 new_compare28(x0, x1, False, x2, x3, x4) 25.30/10.80 new_esEs25(x0, x1, ty_Ordering) 25.30/10.80 new_compare10(x0, x1, True) 25.30/10.80 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.30/10.80 new_esEs21(x0, x1, ty_Float) 25.30/10.80 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.30/10.80 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.30/10.80 new_ltEs19(x0, x1, ty_Ordering) 25.30/10.80 new_compare19(x0, x1, True, x2, x3) 25.30/10.80 new_esEs26(x0, x1, ty_Int) 25.30/10.80 new_esEs25(x0, x1, ty_Double) 25.30/10.80 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.30/10.80 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.30/10.80 new_compare111(x0, x1, False, x2) 25.30/10.80 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.30/10.80 new_lt20(x0, x1, ty_Integer) 25.30/10.80 new_ltEs4(x0, x1) 25.30/10.80 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.30/10.80 new_primEqNat0(Zero, Zero) 25.30/10.80 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.30/10.80 new_lt20(x0, x1, ty_Char) 25.30/10.80 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.30/10.80 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.30/10.80 new_ltEs9(False, False) 25.30/10.80 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.30/10.80 new_not(False) 25.30/10.80 new_esEs25(x0, x1, ty_@0) 25.30/10.80 new_esEs22(x0, x1, ty_@0) 25.30/10.80 new_ltEs20(x0, x1, ty_Char) 25.30/10.80 new_esEs8(False, False) 25.30/10.80 new_esEs30(x0, x1, ty_Integer) 25.30/10.80 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.30/10.80 new_ltEs18(x0, x1, ty_@0) 25.30/10.80 new_esEs19(x0, x1, ty_Integer) 25.30/10.81 new_esEs22(x0, x1, ty_Double) 25.30/10.81 new_compare15(x0, x1) 25.30/10.81 new_primMulInt(Neg(x0), Neg(x1)) 25.30/10.81 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.30/10.81 new_lt11(x0, x1, app(ty_[], x2)) 25.30/10.81 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.30/10.81 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.30/10.81 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.30/10.81 new_lt12(x0, x1, ty_Bool) 25.30/10.81 new_ltEs12(x0, x1) 25.30/10.81 new_lt12(x0, x1, ty_Float) 25.30/10.81 new_compare13(x0, x1, x2) 25.30/10.81 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.30/10.81 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.30/10.81 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.30/10.81 new_esEs26(x0, x1, ty_Integer) 25.30/10.81 new_esEs18(x0, x1, ty_@0) 25.30/10.81 new_sr(x0, x1) 25.30/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.30/10.81 new_esEs30(x0, x1, ty_Ordering) 25.30/10.81 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.81 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.30/10.81 new_compare110(x0, x1, True, x2, x3, x4) 25.30/10.81 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.81 new_compare211(x0, x1, False) 25.30/10.81 new_lt20(x0, x1, ty_Int) 25.30/10.81 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.81 new_esEs18(x0, x1, ty_Double) 25.30/10.81 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.81 new_esEs23(x0, x1, ty_Integer) 25.30/10.81 new_esEs20(x0, x1, ty_@0) 25.30/10.81 new_primPlusNat1(Succ(x0), Succ(x1)) 25.30/10.81 new_esEs28(x0, x1, ty_@0) 25.30/10.81 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.30/10.81 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.30/10.81 new_ltEs18(x0, x1, ty_Double) 25.30/10.81 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.30/10.81 new_ltEs20(x0, x1, ty_Int) 25.30/10.81 new_esEs20(x0, x1, ty_Double) 25.30/10.81 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.30/10.81 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.30/10.81 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.30/10.81 new_ltEs18(x0, x1, app(ty_[], x2)) 25.30/10.81 new_lt12(x0, x1, ty_Char) 25.30/10.81 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.30/10.81 new_primCmpNat0(Succ(x0), Succ(x1)) 25.30/10.81 new_lt12(x0, x1, ty_Int) 25.30/10.81 new_primCmpNat0(Zero, Zero) 25.30/10.81 new_esEs6(Left(x0), Right(x1), x2, x3) 25.30/10.81 new_esEs6(Right(x0), Left(x1), x2, x3) 25.30/10.81 new_esEs14(Integer(x0), Integer(x1)) 25.30/10.81 new_lt4(x0, x1, x2) 25.30/10.81 new_compare0(:(x0, x1), :(x2, x3), x4) 25.30/10.81 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.30/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.30/10.81 25.30/10.81 We have to consider all minimal (P,Q,R)-chains. 25.30/10.81 ---------------------------------------- 25.30/10.81 25.30/10.81 (35) DependencyGraphProof (EQUIVALENT) 25.30/10.81 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. 25.30/10.81 ---------------------------------------- 25.30/10.81 25.30/10.81 (36) 25.30/10.81 Obligation: 25.30/10.81 Q DP problem: 25.30/10.81 The TRS P consists of the following rules: 25.30/10.81 25.30/10.81 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM03(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Just(vyw300), new_esEs29(vyw50, vyw300, ba), ba), LT), h, ba) 25.30/10.81 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, bb, bc) -> new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_esEs9(new_compare23(Just(vyw21), Just(vyw16), new_esEs30(vyw21, vyw16, bc), bc), GT), bb, bc) 25.30/10.81 new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw20, Just(vyw21), bb, bc) 25.30/10.81 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, LT), h, ba) 25.30/10.81 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), GT), h, ba) 25.30/10.81 new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Just(vyw50), h, ba) 25.30/10.81 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw19, Just(vyw21), bb, bc) 25.30/10.81 25.30/10.81 The TRS R consists of the following rules: 25.30/10.81 25.30/10.81 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.30/10.81 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.30/10.81 new_lt10(vyw31000, vyw32000, ee, ef) -> new_esEs9(new_compare18(vyw31000, vyw32000, ee, ef), LT) 25.30/10.81 new_esEs23(vyw502, vyw3002, app(ty_[], caa)) -> new_esEs17(vyw502, vyw3002, caa) 25.30/10.81 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), cgg, cgh) -> new_pePe(new_lt20(vyw31000, vyw32000, cgg), new_asAs(new_esEs28(vyw31000, vyw32000, cgg), new_ltEs20(vyw31001, vyw32001, cgh))) 25.30/10.81 new_pePe(True, vyw101) -> True 25.30/10.81 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.30/10.81 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.30/10.81 new_compare23(vyw310, vyw320, True, cgf) -> EQ 25.30/10.81 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.30/10.81 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.30/10.81 new_esEs29(vyw50, vyw300, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vyw50, vyw300, fh, ga, gb) 25.30/10.81 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.30/10.81 new_esEs9(LT, EQ) -> False 25.30/10.81 new_esEs9(EQ, LT) -> False 25.30/10.81 new_ltEs19(vyw3100, vyw3200, app(ty_[], da)) -> new_ltEs5(vyw3100, vyw3200, da) 25.30/10.81 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.30/10.81 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.30/10.81 new_esEs29(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.81 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.30/10.81 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.30/10.81 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dch)) -> new_compare7(vyw31000, vyw32000, dch) 25.30/10.81 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.81 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.30/10.81 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.81 new_lt12(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_lt4(vyw31000, vyw32000, cg) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, bbb), bah) -> new_ltEs11(vyw31000, vyw32000, bbb) 25.30/10.81 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), bdf, bdg, bdh) -> new_pePe(new_lt12(vyw31000, vyw32000, bdf), new_asAs(new_esEs22(vyw31000, vyw32000, bdf), new_pePe(new_lt11(vyw31001, vyw32001, bdg), new_asAs(new_esEs21(vyw31001, vyw32001, bdg), new_ltEs18(vyw31002, vyw32002, bdh))))) 25.30/10.81 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.81 new_primCompAux0(vyw31000, vyw32000, vyw102, da) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, da)) 25.30/10.81 new_compare30(vyw31000, vyw32000, app(app(ty_@2, ddh), dea)) -> new_compare18(vyw31000, vyw32000, ddh, dea) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.81 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.30/10.81 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.30/10.81 new_lt12(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31000, vyw32000, ee, ef) 25.30/10.81 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.81 new_compare25(@0, @0) -> EQ 25.30/10.81 new_ltEs9(False, True) -> True 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, fc) -> new_esEs9(vyw500, vyw3000) 25.30/10.81 new_compare210(vyw31000, vyw32000, True, ee, ef) -> EQ 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, fc) -> new_esEs8(vyw500, vyw3000) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.81 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.30/10.81 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(vyw500, vyw3000, bab, bac, bad) 25.30/10.81 new_esEs8(False, True) -> False 25.30/10.81 new_esEs8(True, False) -> False 25.30/10.81 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_esEs4(vyw31000, vyw32000, bag) 25.30/10.81 new_compare19(vyw31000, vyw32000, True, eh, fa) -> LT 25.30/10.81 new_lt20(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_lt6(vyw31000, vyw32000, dcb, dcc) 25.30/10.81 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.81 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.30/10.81 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_esEs13(vyw31000, vyw32000, cg) 25.30/10.81 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.30/10.81 new_compare23(Just(vyw3100), Just(vyw3200), False, cgf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, cgf), cgf) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, dah), dba)) -> new_ltEs8(vyw31001, vyw32001, dah, dba) 25.30/10.81 new_not(True) -> False 25.30/10.81 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.81 new_primCompAux00(vyw112, LT) -> LT 25.30/10.81 new_primCmpNat0(Zero, Zero) -> EQ 25.30/10.81 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.30/10.81 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(vyw31000, vyw32000, bge, bgf, bgg) 25.30/10.81 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare27(vyw31000, vyw32000, ddb, ddc, ddd) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], cfb), fc) -> new_esEs17(vyw500, vyw3000, cfb) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.81 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw500, vyw3000, dh, ea, eb) 25.30/10.81 new_esEs23(vyw502, vyw3002, app(ty_Ratio, bhc)) -> new_esEs13(vyw502, vyw3002, bhc) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs13(vyw31000, vyw32000, cdb, cdc, cdd) 25.30/10.81 new_esEs30(vyw21, vyw16, ty_@0) -> new_esEs12(vyw21, vyw16) 25.30/10.81 new_ltEs16(GT, EQ) -> False 25.30/10.81 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.30/10.81 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.30/10.81 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.81 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, bbf), bbg), bah) -> new_ltEs8(vyw31000, vyw32000, bbf, bbg) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(vyw3100, vyw3200, bdf, bdg, bdh) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.81 new_lt12(vyw31000, vyw32000, app(ty_[], bgh)) -> new_lt18(vyw31000, vyw32000, bgh) 25.30/10.81 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.81 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.30/10.81 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.30/10.81 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.81 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(vyw501, vyw3001, gh, ha, hb) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, fc) -> new_esEs12(vyw500, vyw3000) 25.30/10.81 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.30/10.81 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.30/10.81 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31000, vyw32000, ee, ef) 25.30/10.81 new_primCompAux00(vyw112, GT) -> GT 25.30/10.81 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(vyw500, vyw3000, ccb, ccc, ccd) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.81 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.30/10.81 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.81 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs13(vyw31001, vyw32001, dae, daf, dag) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.81 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.30/10.81 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.81 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.30/10.81 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.30/10.81 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.30/10.81 new_ltEs16(LT, LT) -> True 25.30/10.81 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw501, vyw3001, cah, cba, cbb) 25.30/10.81 new_esEs30(vyw21, vyw16, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(vyw21, vyw16, chf, chg, chh) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, bah) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.81 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.30/10.81 new_compare16(vyw31000, vyw32000, False) -> GT 25.30/10.81 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.30/10.81 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, fc) -> new_esEs14(vyw500, vyw3000) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.30/10.81 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.30/10.81 new_compare28(vyw31000, vyw32000, False, bge, bgf, bgg) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.30/10.81 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.30/10.81 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.30/10.81 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt17(vyw31001, vyw32001, bfe, bff, bfg) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fc) -> new_esEs5(vyw500, vyw3000, ceg, ceh, cfa) 25.30/10.81 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.81 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.81 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, bah) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.81 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(vyw31001, vyw32001, bfe, bff, bfg) 25.30/10.81 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.30/10.81 new_compare110(vyw31000, vyw32000, False, bge, bgf, bgg) -> GT 25.30/10.81 new_pePe(False, vyw101) -> vyw101 25.30/10.81 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.81 new_ltEs5(vyw3100, vyw3200, da) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, da), GT)) 25.30/10.81 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.30/10.81 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.81 new_ltEs9(True, True) -> True 25.30/10.81 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_esEs6(vyw31000, vyw32000, eh, fa) 25.30/10.81 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.30/10.81 new_ltEs16(LT, GT) -> True 25.30/10.81 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.81 new_lt11(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw31001, vyw32001, bgc, bgd) 25.30/10.81 new_esEs17([], [], db) -> True 25.30/10.81 new_ltEs16(LT, EQ) -> True 25.30/10.81 new_ltEs16(EQ, LT) -> False 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.81 new_esEs30(vyw21, vyw16, ty_Float) -> new_esEs11(vyw21, vyw16) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], cdg)) -> new_ltEs5(vyw31000, vyw32000, cdg) 25.30/10.81 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.81 new_compare11(vyw31000, vyw32000, False, ee, ef) -> GT 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, bah) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.81 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cab)) -> new_esEs4(vyw502, vyw3002, cab) 25.30/10.81 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.30/10.81 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.30/10.81 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.30/10.81 new_compare30(vyw31000, vyw32000, app(app(ty_Either, dde), ddf)) -> new_compare12(vyw31000, vyw32000, dde, ddf) 25.30/10.81 new_esEs30(vyw21, vyw16, app(ty_[], daa)) -> new_esEs17(vyw21, vyw16, daa) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.30/10.81 new_esEs18(vyw500, vyw3000, app(ty_Ratio, de)) -> new_esEs13(vyw500, vyw3000, de) 25.30/10.81 new_ltEs16(GT, LT) -> False 25.30/10.81 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(vyw500, vyw3000, cb, cc, cd) 25.30/10.81 new_esEs19(vyw501, vyw3001, app(ty_Maybe, hd)) -> new_esEs4(vyw501, vyw3001, hd) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, bah) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw31002, vyw32002, bec, bed, bee) 25.30/10.81 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.81 new_esEs18(vyw500, vyw3000, app(ty_[], ec)) -> new_esEs17(vyw500, vyw3000, ec) 25.30/10.81 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.30/10.81 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.30/10.81 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.81 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.30/10.81 new_esEs24(vyw501, vyw3001, app(app(ty_Either, cac), cad)) -> new_esEs6(vyw501, vyw3001, cac, cad) 25.30/10.81 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.81 new_esEs8(False, False) -> True 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, ceb), cec), fc) -> new_esEs6(vyw500, vyw3000, ceb, cec) 25.30/10.81 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.30/10.81 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.30/10.81 new_ltEs8(Right(vyw31000), Left(vyw32000), bcc, bah) -> False 25.30/10.81 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.30/10.81 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.30/10.81 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.30/10.81 new_esEs29(vyw50, vyw300, ty_Integer) -> new_esEs14(vyw50, vyw300) 25.30/10.81 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, ced), fc) -> new_esEs13(vyw500, vyw3000, ced) 25.30/10.81 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ff, fg) -> new_asAs(new_esEs20(vyw500, vyw3000, ff), new_esEs19(vyw501, vyw3001, fg)) 25.30/10.81 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.30/10.81 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(vyw502, vyw3002, bhf, bhg, bhh) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.30/10.81 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.81 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.30/10.81 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, fc) -> new_esEs16(vyw500, vyw3000) 25.30/10.81 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.30/10.81 new_compare18(vyw31000, vyw32000, ee, ef) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, ee, ef), ee, ef) 25.30/10.81 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.30/10.81 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.30/10.81 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, fc) -> new_esEs10(vyw500, vyw3000) 25.30/10.81 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.30/10.81 new_compare30(vyw31000, vyw32000, app(ty_Maybe, dda)) -> new_compare13(vyw31000, vyw32000, dda) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, cee), cef), fc) -> new_esEs7(vyw500, vyw3000, cee, cef) 25.30/10.81 new_esEs28(vyw31000, vyw32000, app(ty_[], dcd)) -> new_esEs17(vyw31000, vyw32000, dcd) 25.30/10.81 new_ltEs16(EQ, GT) -> True 25.30/10.81 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_Either, bda), bdb)) -> new_ltEs8(vyw31000, vyw32000, bda, bdb) 25.30/10.81 new_ltEs16(EQ, EQ) -> True 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bg)) -> new_esEs13(vyw500, vyw3000, bg) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, bcc), bah)) -> new_ltEs8(vyw3100, vyw3200, bcc, bah) 25.30/10.81 new_esEs29(vyw50, vyw300, ty_Float) -> new_esEs11(vyw50, vyw300) 25.30/10.81 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.30/10.81 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.30/10.81 new_esEs20(vyw500, vyw3000, app(ty_Maybe, baf)) -> new_esEs4(vyw500, vyw3000, baf) 25.30/10.81 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.30/10.81 new_esEs29(vyw50, vyw300, app(ty_[], db)) -> new_esEs17(vyw50, vyw300, db) 25.30/10.81 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.30/10.81 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.30/10.81 new_esEs9(LT, LT) -> True 25.30/10.81 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.81 new_lt17(vyw31000, vyw32000, bge, bgf, bgg) -> new_esEs9(new_compare27(vyw31000, vyw32000, bge, bgf, bgg), LT) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, bah) -> new_ltEs9(vyw31000, vyw32000) 25.30/10.81 new_compare23(Just(vyw3100), Nothing, False, cgf) -> GT 25.30/10.81 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.30/10.81 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, bba), bah) -> new_ltEs6(vyw31000, vyw32000, bba) 25.30/10.81 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, cda)) -> new_ltEs11(vyw31000, vyw32000, cda) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.81 new_compare19(vyw31000, vyw32000, False, eh, fa) -> GT 25.30/10.81 new_lt12(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_lt15(vyw31000, vyw32000, bag) 25.30/10.81 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.30/10.81 new_esEs29(vyw50, vyw300, ty_Double) -> new_esEs15(vyw50, vyw300) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.30/10.81 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), db) -> new_asAs(new_esEs18(vyw500, vyw3000, db), new_esEs17(vyw501, vyw3001, db)) 25.30/10.81 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_esEs4(vyw31001, vyw32001, bfd) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.30/10.81 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.30/10.81 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.81 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.30/10.81 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), fd) -> new_asAs(new_esEs27(vyw500, vyw3000, fd), new_esEs26(vyw501, vyw3001, fd)) 25.30/10.81 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbh), cca)) -> new_esEs7(vyw500, vyw3000, cbh, cca) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Maybe, bce)) -> new_ltEs11(vyw31000, vyw32000, bce) 25.30/10.81 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_esEs13(vyw31001, vyw32001, bfc) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.30/10.81 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.30/10.81 new_esEs30(vyw21, vyw16, ty_Double) -> new_esEs15(vyw21, vyw16) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs4(vyw500, vyw3000, cf) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, bef), beg)) -> new_ltEs8(vyw31002, vyw32002, bef, beg) 25.30/10.81 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.30/10.81 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.30/10.81 new_esEs23(vyw502, vyw3002, app(app(ty_Either, bha), bhb)) -> new_esEs6(vyw502, vyw3002, bha, bhb) 25.30/10.81 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.81 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw31001, vyw32001, bfh, bga) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, fc) -> new_esEs11(vyw500, vyw3000) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.30/10.81 new_compare16(vyw31000, vyw32000, True) -> LT 25.30/10.81 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.30/10.81 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.30/10.81 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.81 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.30/10.81 new_esEs30(vyw21, vyw16, app(ty_Maybe, dab)) -> new_esEs4(vyw21, vyw16, dab) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, dad)) -> new_ltEs11(vyw31001, vyw32001, dad) 25.30/10.81 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cbd)) -> new_esEs4(vyw501, vyw3001, cbd) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], ce)) -> new_esEs17(vyw500, vyw3000, ce) 25.30/10.81 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.30/10.81 new_esEs29(vyw50, vyw300, ty_Int) -> new_esEs16(vyw50, vyw300) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.81 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw31000, vyw32000, bge, bgf, bgg) 25.30/10.81 new_lt15(vyw31000, vyw32000, bag) -> new_esEs9(new_compare13(vyw31000, vyw32000, bag), LT) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.30/10.81 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.81 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, cdh), cea)) -> new_ltEs17(vyw31000, vyw32000, cdh, cea) 25.30/10.81 new_esEs18(vyw500, vyw3000, app(ty_Maybe, ed)) -> new_esEs4(vyw500, vyw3000, ed) 25.30/10.81 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.81 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.81 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, be), bf)) -> new_esEs6(vyw500, vyw3000, be, bf) 25.30/10.81 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, eg)) -> new_ltEs6(vyw3100, vyw3200, eg) 25.30/10.81 new_esEs20(vyw500, vyw3000, app(ty_Ratio, hg)) -> new_esEs13(vyw500, vyw3000, hg) 25.30/10.81 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.81 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cbg)) -> new_esEs13(vyw500, vyw3000, cbg) 25.30/10.81 new_compare0([], :(vyw32000, vyw32001), da) -> LT 25.30/10.81 new_asAs(True, vyw93) -> vyw93 25.30/10.81 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.30/10.81 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.30/10.81 new_esEs30(vyw21, vyw16, ty_Integer) -> new_esEs14(vyw21, vyw16) 25.30/10.81 new_esEs19(vyw501, vyw3001, app(ty_[], hc)) -> new_esEs17(vyw501, vyw3001, hc) 25.30/10.81 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.30/10.81 new_esEs25(vyw500, vyw3000, app(ty_[], cce)) -> new_esEs17(vyw500, vyw3000, cce) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, fc) -> new_esEs15(vyw500, vyw3000) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.30/10.81 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_lt4(vyw31000, vyw32000, dbe) 25.30/10.81 new_lt20(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_lt10(vyw31000, vyw32000, dce, dcf) 25.30/10.81 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.30/10.81 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.81 new_esEs6(Left(vyw500), Right(vyw3000), fb, fc) -> False 25.30/10.81 new_esEs6(Right(vyw500), Left(vyw3000), fb, fc) -> False 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, bah) -> new_ltEs12(vyw31000, vyw32000) 25.30/10.81 new_esEs19(vyw501, vyw3001, app(ty_Ratio, ge)) -> new_esEs13(vyw501, vyw3001, ge) 25.30/10.81 new_lt11(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_lt15(vyw31001, vyw32001, bfd) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, bbc), bbd), bbe), bah) -> new_ltEs13(vyw31000, vyw32000, bbc, bbd, bbe) 25.30/10.81 new_esEs18(vyw500, vyw3000, app(app(ty_@2, df), dg)) -> new_esEs7(vyw500, vyw3000, df, dg) 25.30/10.81 new_esEs24(vyw501, vyw3001, app(app(ty_@2, caf), cag)) -> new_esEs7(vyw501, vyw3001, caf, cag) 25.30/10.81 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.30/10.81 new_esEs30(vyw21, vyw16, app(app(ty_@2, chd), che)) -> new_esEs7(vyw21, vyw16, chd, che) 25.30/10.81 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.30/10.81 new_primCompAux00(vyw112, EQ) -> vyw112 25.30/10.81 new_compare0([], [], da) -> EQ 25.30/10.81 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.30/10.81 new_ltEs16(GT, GT) -> True 25.30/10.81 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.30/10.81 new_ltEs9(False, False) -> True 25.30/10.81 new_primMulNat0(Zero, Zero) -> Zero 25.30/10.81 new_compare10(vyw31000, vyw32000, False) -> GT 25.30/10.81 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.30/10.81 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.30/10.81 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.30/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfc), fc) -> new_esEs4(vyw500, vyw3000, cfc) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, beb)) -> new_ltEs11(vyw31002, vyw32002, beb) 25.30/10.81 new_compare211(vyw31000, vyw32000, True) -> EQ 25.30/10.81 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_esEs4(vyw31000, vyw32000, dbf) 25.30/10.81 new_esEs23(vyw502, vyw3002, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw502, vyw3002, bhd, bhe) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], bbh), bah) -> new_ltEs5(vyw31000, vyw32000, bbh) 25.30/10.81 new_ltEs11(Nothing, Just(vyw32000), ccg) -> True 25.30/10.81 new_compare28(vyw31000, vyw32000, True, bge, bgf, bgg) -> EQ 25.30/10.81 new_esEs4(Nothing, Nothing, bd) -> True 25.30/10.81 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dac)) -> new_ltEs6(vyw31001, vyw32001, dac) 25.30/10.81 new_esEs4(Nothing, Just(vyw3000), bd) -> False 25.30/10.81 new_esEs4(Just(vyw500), Nothing, bd) -> False 25.30/10.81 new_esEs20(vyw500, vyw3000, app(ty_[], bae)) -> new_esEs17(vyw500, vyw3000, bae) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_[], bdc)) -> new_ltEs5(vyw31000, vyw32000, bdc) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.30/10.81 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.81 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, bah) -> new_ltEs16(vyw31000, vyw32000) 25.30/10.81 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fh, ga, gb) -> new_asAs(new_esEs25(vyw500, vyw3000, fh), new_asAs(new_esEs24(vyw501, vyw3001, ga), new_esEs23(vyw502, vyw3002, gb))) 25.30/10.81 new_esEs30(vyw21, vyw16, app(ty_Ratio, chc)) -> new_esEs13(vyw21, vyw16, chc) 25.30/10.81 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.30/10.81 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.30/10.81 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.30/10.81 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.30/10.81 new_esEs24(vyw501, vyw3001, app(ty_Ratio, cae)) -> new_esEs13(vyw501, vyw3001, cae) 25.30/10.81 new_esEs19(vyw501, vyw3001, app(app(ty_Either, gc), gd)) -> new_esEs6(vyw501, vyw3001, gc, gd) 25.30/10.81 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, ccg)) -> new_ltEs11(vyw3100, vyw3200, ccg) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.30/10.81 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vyw500, vyw3000, cbe, cbf) 25.30/10.81 new_ltEs9(True, False) -> False 25.30/10.81 new_esEs9(EQ, EQ) -> True 25.30/10.81 new_lt12(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_lt6(vyw31000, vyw32000, eh, fa) 25.30/10.81 new_lt11(vyw31001, vyw32001, app(ty_[], bgb)) -> new_lt18(vyw31001, vyw32001, bgb) 25.30/10.81 new_esEs21(vyw31001, vyw32001, app(ty_[], bgb)) -> new_esEs17(vyw31001, vyw32001, bgb) 25.30/10.81 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.30/10.81 new_esEs29(vyw50, vyw300, app(ty_Ratio, fd)) -> new_esEs13(vyw50, vyw300, fd) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.81 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.30/10.81 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.30/10.81 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.30/10.81 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.30/10.81 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vyw31000, vyw32000, bcf, bcg, bch) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, cde), cdf)) -> new_ltEs8(vyw31000, vyw32000, cde, cdf) 25.30/10.81 new_compare24(vyw31000, vyw32000, True) -> EQ 25.30/10.81 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_esEs7(vyw31000, vyw32000, dce, dcf) 25.30/10.81 new_esEs20(vyw500, vyw3000, app(app(ty_Either, he), hf)) -> new_esEs6(vyw500, vyw3000, he, hf) 25.30/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.81 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.30/10.81 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.30/10.81 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.30/10.81 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.30/10.81 new_compare30(vyw31000, vyw32000, app(ty_[], ddg)) -> new_compare0(vyw31000, vyw32000, ddg) 25.30/10.81 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.30/10.81 new_compare23(Nothing, Just(vyw3200), False, cgf) -> LT 25.30/10.81 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.30/10.81 new_esEs29(vyw50, vyw300, app(ty_Maybe, bd)) -> new_esEs4(vyw50, vyw300, bd) 25.30/10.81 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.30/10.81 new_compare111(vyw86, vyw87, False, dcg) -> GT 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.30/10.81 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.30/10.81 new_compare110(vyw31000, vyw32000, True, bge, bgf, bgg) -> LT 25.30/10.81 new_ltEs6(vyw3100, vyw3200, eg) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, eg), GT)) 25.30/10.81 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.30/10.81 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, bea)) -> new_ltEs6(vyw31002, vyw32002, bea) 25.30/10.81 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.30/10.81 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.30/10.81 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.30/10.81 new_esEs19(vyw501, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw501, vyw3001, gf, gg) 25.30/10.81 new_compare23(Nothing, Nothing, False, cgf) -> LT 25.30/10.81 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.30/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, bca), bcb), bah) -> new_ltEs17(vyw31000, vyw32000, bca, bcb) 25.30/10.81 new_ltEs8(Left(vyw31000), Right(vyw32000), bcc, bah) -> True 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cch)) -> new_ltEs6(vyw31000, vyw32000, cch) 25.30/10.81 new_not(False) -> True 25.30/10.81 new_lt11(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_lt4(vyw31001, vyw32001, bfc) 25.30/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.30/10.81 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_esEs13(vyw31000, vyw32000, dbe) 25.30/10.81 new_esEs24(vyw501, vyw3001, app(ty_[], cbc)) -> new_esEs17(vyw501, vyw3001, cbc) 25.30/10.81 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, dbc), dbd)) -> new_ltEs17(vyw31001, vyw32001, dbc, dbd) 25.30/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.30/10.81 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.30/10.81 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.30/10.81 new_esEs9(GT, GT) -> True 25.30/10.81 new_compare0(:(vyw31000, vyw31001), [], da) -> GT 25.30/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.81 new_esEs29(vyw50, vyw300, app(app(ty_Either, fb), fc)) -> new_esEs6(vyw50, vyw300, fb, fc) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_compare27(vyw31000, vyw32000, bge, bgf, bgg) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.81 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs5(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(vyw3100, vyw3200, cgg, cgh) 25.34/10.81 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.34/10.81 new_esEs29(vyw50, vyw300, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw50, vyw300, ff, fg) 25.34/10.81 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, bah) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.81 new_esEs9(EQ, GT) -> False 25.34/10.81 new_esEs9(GT, EQ) -> False 25.34/10.81 new_ltEs18(vyw31002, vyw32002, app(ty_[], beh)) -> new_ltEs5(vyw31002, vyw32002, beh) 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.34/10.81 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.34/10.81 new_compare11(vyw31000, vyw32000, True, ee, ef) -> LT 25.34/10.81 new_esEs30(vyw21, vyw16, app(app(ty_Either, cha), chb)) -> new_esEs6(vyw21, vyw16, cha, chb) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.81 new_compare12(vyw31000, vyw32000, eh, fa) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.81 new_lt20(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_lt15(vyw31000, vyw32000, dbf) 25.34/10.81 new_esEs8(True, True) -> True 25.34/10.81 new_lt11(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_lt6(vyw31001, vyw32001, bfh, bga) 25.34/10.81 new_compare29(vyw31000, vyw32000, False, eh, fa) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.81 new_compare10(vyw31000, vyw32000, True) -> LT 25.34/10.81 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.34/10.81 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.34/10.81 new_primPlusNat1(Zero, Zero) -> Zero 25.34/10.81 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), da) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, da), da) 25.34/10.81 new_compare13(vyw31000, vyw32000, bag) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, bag), bag) 25.34/10.81 new_esEs22(vyw31000, vyw32000, app(ty_[], bgh)) -> new_esEs17(vyw31000, vyw32000, bgh) 25.34/10.81 new_compare111(vyw86, vyw87, True, dcg) -> LT 25.34/10.81 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccf)) -> new_esEs4(vyw500, vyw3000, ccf) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.81 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.34/10.81 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.34/10.81 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.81 new_lt20(vyw31000, vyw32000, app(ty_[], dcd)) -> new_lt18(vyw31000, vyw32000, dcd) 25.34/10.81 new_esEs18(vyw500, vyw3000, app(app(ty_Either, dc), dd)) -> new_esEs6(vyw500, vyw3000, dc, dd) 25.34/10.81 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.34/10.81 new_lt18(vyw31000, vyw32000, bgh) -> new_esEs9(new_compare0(vyw31000, vyw32000, bgh), LT) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.34/10.81 new_esEs12(@0, @0) -> True 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.81 new_compare29(vyw31000, vyw32000, True, eh, fa) -> EQ 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.34/10.81 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Char) -> new_esEs10(vyw21, vyw16) 25.34/10.81 new_lt6(vyw31000, vyw32000, eh, fa) -> new_esEs9(new_compare12(vyw31000, vyw32000, eh, fa), LT) 25.34/10.81 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw31001, vyw32001, bgc, bgd) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Int) -> new_esEs16(vyw21, vyw16) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.81 new_ltEs11(Just(vyw31000), Nothing, ccg) -> False 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(vyw31002, vyw32002, bfa, bfb) 25.34/10.81 new_ltEs11(Nothing, Nothing, ccg) -> True 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, bh), ca)) -> new_esEs7(vyw500, vyw3000, bh, ca) 25.34/10.81 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.81 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.34/10.81 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.34/10.81 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_esEs6(vyw31000, vyw32000, dcb, dcc) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.81 new_primEqNat0(Zero, Zero) -> True 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.34/10.81 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Bool) -> new_esEs8(vyw21, vyw16) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, app(ty_[], dbb)) -> new_ltEs5(vyw31001, vyw32001, dbb) 25.34/10.81 new_compare210(vyw31000, vyw32000, False, ee, ef) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.81 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.34/10.81 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.34/10.81 new_esEs9(LT, GT) -> False 25.34/10.81 new_esEs9(GT, LT) -> False 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Ratio, bcd)) -> new_ltEs6(vyw31000, vyw32000, bcd) 25.34/10.81 new_esEs17(:(vyw500, vyw501), [], db) -> False 25.34/10.81 new_esEs17([], :(vyw3000, vyw3001), db) -> False 25.34/10.81 new_asAs(False, vyw93) -> False 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Ordering) -> new_esEs9(vyw50, vyw300) 25.34/10.81 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_lt17(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.81 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Bool) -> new_esEs8(vyw50, vyw300) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Ordering) -> new_esEs9(vyw21, vyw16) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_@2, bdd), bde)) -> new_ltEs17(vyw31000, vyw32000, bdd, bde) 25.34/10.81 new_lt4(vyw31000, vyw32000, cg) -> new_esEs9(new_compare7(vyw31000, vyw32000, cg), LT) 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Char) -> new_esEs10(vyw50, vyw300) 25.34/10.81 new_esEs20(vyw500, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw500, vyw3000, hh, baa) 25.34/10.81 25.34/10.81 The set Q consists of the following terms: 25.34/10.81 25.34/10.81 new_lt12(x0, x1, ty_Integer) 25.34/10.81 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.34/10.81 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.81 new_lt19(x0, x1) 25.34/10.81 new_esEs28(x0, x1, ty_Ordering) 25.34/10.81 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs29(x0, x1, ty_Integer) 25.34/10.81 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_ltEs20(x0, x1, ty_@0) 25.34/10.81 new_lt20(x0, x1, ty_Float) 25.34/10.81 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_compare0([], [], x0) 25.34/10.81 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs19(x0, x1, ty_@0) 25.34/10.81 new_esEs30(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs16(x0, x1) 25.34/10.81 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs28(x0, x1, ty_Double) 25.34/10.81 new_esEs23(x0, x1, ty_Int) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs22(x0, x1, ty_Int) 25.34/10.81 new_esEs30(x0, x1, ty_@0) 25.34/10.81 new_ltEs20(x0, x1, ty_Bool) 25.34/10.81 new_primPlusNat1(Zero, Zero) 25.34/10.81 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.34/10.81 new_compare16(x0, x1, False) 25.34/10.81 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs22(x0, x1, ty_Char) 25.34/10.81 new_esEs23(x0, x1, ty_Ordering) 25.34/10.81 new_esEs19(x0, x1, ty_Bool) 25.34/10.81 new_primMulNat0(Zero, Succ(x0)) 25.34/10.81 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_compare30(x0, x1, ty_Ordering) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.81 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_compare30(x0, x1, ty_Int) 25.34/10.81 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.81 new_primMulNat0(Succ(x0), Succ(x1)) 25.34/10.81 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_primEqInt(Pos(Zero), Pos(Zero)) 25.34/10.81 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_primCompAux00(x0, GT) 25.34/10.81 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs23(x0, x1, ty_Char) 25.34/10.81 new_esEs20(x0, x1, ty_Integer) 25.34/10.81 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.81 new_esEs29(x0, x1, ty_Bool) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.81 new_esEs4(Nothing, Nothing, x0) 25.34/10.81 new_ltEs6(x0, x1, x2) 25.34/10.81 new_lt17(x0, x1, x2, x3, x4) 25.34/10.81 new_esEs24(x0, x1, app(ty_[], x2)) 25.34/10.81 new_primEqInt(Neg(Zero), Neg(Zero)) 25.34/10.81 new_pePe(True, x0) 25.34/10.81 new_ltEs18(x0, x1, ty_Float) 25.34/10.81 new_compare30(x0, x1, ty_Char) 25.34/10.81 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_lt13(x0, x1) 25.34/10.81 new_esEs23(x0, x1, ty_Double) 25.34/10.81 new_compare29(x0, x1, False, x2, x3) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs21(x0, x1, ty_@0) 25.34/10.81 new_ltEs16(GT, EQ) 25.34/10.81 new_ltEs16(EQ, GT) 25.34/10.81 new_primCmpNat0(Succ(x0), Zero) 25.34/10.81 new_compare30(x0, x1, ty_Double) 25.34/10.81 new_lt5(x0, x1) 25.34/10.81 new_compare25(@0, @0) 25.34/10.81 new_ltEs9(True, True) 25.34/10.81 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.81 new_esEs21(x0, x1, ty_Int) 25.34/10.81 new_esEs19(x0, x1, ty_Char) 25.34/10.81 new_esEs9(LT, LT) 25.34/10.81 new_ltEs16(LT, LT) 25.34/10.81 new_esEs21(x0, x1, ty_Integer) 25.34/10.81 new_esEs4(Just(x0), Nothing, x1) 25.34/10.81 new_esEs30(x0, x1, ty_Int) 25.34/10.81 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.81 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.81 new_esEs24(x0, x1, ty_Int) 25.34/10.81 new_esEs19(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs9(EQ, GT) 25.34/10.81 new_esEs9(GT, EQ) 25.34/10.81 new_lt11(x0, x1, ty_Integer) 25.34/10.81 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.34/10.81 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.34/10.81 new_esEs18(x0, x1, ty_Ordering) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.34/10.81 new_esEs18(x0, x1, ty_Integer) 25.34/10.81 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs8(False, True) 25.34/10.81 new_esEs8(True, False) 25.34/10.81 new_esEs29(x0, x1, ty_Float) 25.34/10.81 new_lt11(x0, x1, ty_Bool) 25.34/10.81 new_ltEs20(x0, x1, ty_Integer) 25.34/10.81 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs21(x0, x1, ty_Char) 25.34/10.81 new_lt12(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs8(True, True) 25.34/10.81 new_lt7(x0, x1) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.81 new_lt6(x0, x1, x2, x3) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.81 new_esEs21(x0, x1, ty_Bool) 25.34/10.81 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_primEqInt(Pos(Zero), Neg(Zero)) 25.34/10.81 new_primEqInt(Neg(Zero), Pos(Zero)) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.81 new_compare23(Nothing, Just(x0), False, x1) 25.34/10.81 new_compare210(x0, x1, False, x2, x3) 25.34/10.81 new_compare11(x0, x1, True, x2, x3) 25.34/10.81 new_esEs24(x0, x1, ty_Double) 25.34/10.81 new_esEs30(x0, x1, ty_Bool) 25.34/10.81 new_ltEs19(x0, x1, ty_Double) 25.34/10.81 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.34/10.81 new_esEs22(x0, x1, ty_Ordering) 25.34/10.81 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.34/10.81 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.34/10.81 new_esEs28(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs30(x0, x1, ty_Char) 25.34/10.81 new_ltEs20(x0, x1, ty_Ordering) 25.34/10.81 new_esEs29(x0, x1, ty_@0) 25.34/10.81 new_esEs24(x0, x1, ty_Char) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.34/10.81 new_esEs19(x0, x1, ty_Int) 25.34/10.81 new_compare8(Integer(x0), Integer(x1)) 25.34/10.81 new_esEs30(x0, x1, ty_Double) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.34/10.81 new_compare19(x0, x1, False, x2, x3) 25.34/10.81 new_compare23(Just(x0), Nothing, False, x1) 25.34/10.81 new_primPlusNat0(Zero, x0) 25.34/10.81 new_esEs27(x0, x1, ty_Int) 25.34/10.81 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs19(x0, x1, ty_Double) 25.34/10.81 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs22(x0, x1, ty_Integer) 25.34/10.81 new_esEs28(x0, x1, ty_Bool) 25.34/10.81 new_ltEs19(x0, x1, ty_Int) 25.34/10.81 new_ltEs20(x0, x1, ty_Double) 25.34/10.81 new_esEs25(x0, x1, ty_Char) 25.34/10.81 new_ltEs5(x0, x1, x2) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.81 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.81 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.81 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs29(x0, x1, ty_Char) 25.34/10.81 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare30(x0, x1, ty_@0) 25.34/10.81 new_lt20(x0, x1, ty_@0) 25.34/10.81 new_esEs24(x0, x1, ty_@0) 25.34/10.81 new_esEs19(x0, x1, ty_Float) 25.34/10.81 new_ltEs16(GT, GT) 25.34/10.81 new_esEs23(x0, x1, ty_@0) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.34/10.81 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.81 new_esEs21(x0, x1, ty_Double) 25.34/10.81 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare110(x0, x1, False, x2, x3, x4) 25.34/10.81 new_compare23(x0, x1, True, x2) 25.34/10.81 new_lt20(x0, x1, app(ty_[], x2)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.81 new_compare24(x0, x1, False) 25.34/10.81 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_ltEs19(x0, x1, ty_Float) 25.34/10.81 new_esEs10(Char(x0), Char(x1)) 25.34/10.81 new_compare210(x0, x1, True, x2, x3) 25.34/10.81 new_ltEs16(LT, EQ) 25.34/10.81 new_ltEs16(EQ, LT) 25.34/10.81 new_esEs30(x0, x1, ty_Float) 25.34/10.81 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.81 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.81 new_ltEs11(Just(x0), Nothing, x1) 25.34/10.81 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare6(Char(x0), Char(x1)) 25.34/10.81 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.81 new_asAs(False, x0) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.34/10.81 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs25(x0, x1, ty_Int) 25.34/10.81 new_esEs29(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_primEqNat0(Zero, Succ(x0)) 25.34/10.81 new_esEs21(x0, x1, ty_Ordering) 25.34/10.81 new_ltEs7(x0, x1) 25.34/10.81 new_compare211(x0, x1, True) 25.34/10.81 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs22(x0, x1, ty_Bool) 25.34/10.81 new_lt11(x0, x1, ty_Char) 25.34/10.81 new_esEs17([], :(x0, x1), x2) 25.34/10.81 new_ltEs18(x0, x1, ty_Integer) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.81 new_esEs22(x0, x1, app(ty_[], x2)) 25.34/10.81 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.81 new_ltEs9(False, True) 25.34/10.81 new_ltEs9(True, False) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.34/10.81 new_esEs17(:(x0, x1), [], x2) 25.34/10.81 new_ltEs14(x0, x1) 25.34/10.81 new_esEs24(x0, x1, ty_Integer) 25.34/10.81 new_primEqNat0(Succ(x0), Succ(x1)) 25.34/10.81 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.34/10.81 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.34/10.81 new_ltEs15(x0, x1) 25.34/10.81 new_lt12(x0, x1, ty_@0) 25.34/10.81 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_lt11(x0, x1, ty_Int) 25.34/10.81 new_compare23(Just(x0), Just(x1), False, x2) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.34/10.81 new_esEs18(x0, x1, ty_Bool) 25.34/10.81 new_esEs25(x0, x1, ty_Float) 25.34/10.81 new_esEs20(x0, x1, ty_Float) 25.34/10.81 new_esEs18(x0, x1, ty_Float) 25.34/10.81 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs20(x0, x1, ty_Bool) 25.34/10.81 new_lt10(x0, x1, x2, x3) 25.34/10.81 new_esEs24(x0, x1, ty_Ordering) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.34/10.81 new_compare0(:(x0, x1), [], x2) 25.34/10.81 new_compare18(x0, x1, x2, x3) 25.34/10.81 new_esEs23(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs29(x0, x1, ty_Ordering) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.34/10.81 new_compare23(Nothing, Nothing, False, x0) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.81 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs18(x0, x1, ty_Char) 25.34/10.81 new_compare28(x0, x1, True, x2, x3, x4) 25.34/10.81 new_primPlusNat1(Succ(x0), Zero) 25.34/10.81 new_ltEs18(x0, x1, ty_Bool) 25.34/10.81 new_lt9(x0, x1) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.34/10.81 new_esEs20(x0, x1, ty_Int) 25.34/10.81 new_pePe(False, x0) 25.34/10.81 new_esEs28(x0, x1, ty_Char) 25.34/10.81 new_lt11(x0, x1, ty_Float) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.34/10.81 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.81 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.34/10.81 new_lt12(x0, x1, ty_Double) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.34/10.81 new_compare10(x0, x1, False) 25.34/10.81 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs18(x0, x1, ty_Int) 25.34/10.81 new_esEs20(x0, x1, ty_Char) 25.34/10.81 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_ltEs11(Nothing, Just(x0), x1) 25.34/10.81 new_esEs22(x0, x1, ty_Float) 25.34/10.81 new_compare26(x0, x1) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.81 new_esEs28(x0, x1, ty_Int) 25.34/10.81 new_esEs4(Nothing, Just(x0), x1) 25.34/10.81 new_esEs25(x0, x1, ty_Integer) 25.34/10.81 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.34/10.81 new_esEs17([], [], x0) 25.34/10.81 new_esEs9(EQ, EQ) 25.34/10.81 new_lt20(x0, x1, ty_Double) 25.34/10.81 new_ltEs16(EQ, EQ) 25.34/10.81 new_primCompAux00(x0, LT) 25.34/10.81 new_esEs27(x0, x1, ty_Integer) 25.34/10.81 new_compare30(x0, x1, ty_Float) 25.34/10.81 new_ltEs18(x0, x1, ty_Char) 25.34/10.81 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_@0) 25.34/10.81 new_primEqNat0(Succ(x0), Zero) 25.34/10.81 new_primMulNat0(Zero, Zero) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.34/10.81 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_lt20(x0, x1, ty_Ordering) 25.34/10.81 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_lt18(x0, x1, x2) 25.34/10.81 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.34/10.81 new_ltEs20(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.34/10.81 new_esEs28(x0, x1, ty_Float) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.34/10.81 new_ltEs18(x0, x1, ty_Int) 25.34/10.81 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_lt11(x0, x1, ty_Double) 25.34/10.81 new_esEs24(x0, x1, ty_Float) 25.34/10.81 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_primMulInt(Pos(x0), Pos(x1)) 25.34/10.81 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_ltEs18(x0, x1, ty_Ordering) 25.34/10.81 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_ltEs19(x0, x1, ty_@0) 25.34/10.81 new_compare12(x0, x1, x2, x3) 25.34/10.81 new_compare11(x0, x1, False, x2, x3) 25.34/10.81 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.34/10.81 new_ltEs11(Nothing, Nothing, x0) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.81 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.81 new_lt16(x0, x1) 25.34/10.81 new_primCmpNat0(Zero, Succ(x0)) 25.34/10.81 new_ltEs19(x0, x1, app(ty_[], x2)) 25.34/10.81 new_ltEs19(x0, x1, ty_Integer) 25.34/10.81 new_lt8(x0, x1) 25.34/10.81 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.34/10.81 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.34/10.81 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.34/10.81 new_compare30(x0, x1, app(ty_[], x2)) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.81 new_esEs21(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.81 new_sr0(Integer(x0), Integer(x1)) 25.34/10.81 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.34/10.81 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.81 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs20(x0, x1, ty_Ordering) 25.34/10.81 new_not(True) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_Int) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.81 new_compare29(x0, x1, True, x2, x3) 25.34/10.81 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.81 new_primPlusNat1(Zero, Succ(x0)) 25.34/10.81 new_compare0([], :(x0, x1), x2) 25.34/10.81 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs29(x0, x1, ty_Double) 25.34/10.81 new_lt11(x0, x1, ty_Ordering) 25.34/10.81 new_esEs25(x0, x1, ty_Bool) 25.34/10.81 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.34/10.81 new_primMulInt(Pos(x0), Neg(x1)) 25.34/10.81 new_primMulInt(Neg(x0), Pos(x1)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.34/10.81 new_primCompAux00(x0, EQ) 25.34/10.81 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.34/10.81 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.81 new_lt12(x0, x1, ty_Ordering) 25.34/10.81 new_esEs28(x0, x1, ty_Integer) 25.34/10.81 new_lt14(x0, x1) 25.34/10.81 new_ltEs19(x0, x1, ty_Char) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.81 new_esEs24(x0, x1, ty_Bool) 25.34/10.81 new_esEs20(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs9(LT, EQ) 25.34/10.81 new_esEs9(EQ, LT) 25.34/10.81 new_compare24(x0, x1, True) 25.34/10.81 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_Double) 25.34/10.81 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.34/10.81 new_esEs9(GT, GT) 25.34/10.81 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_ltEs16(LT, GT) 25.34/10.81 new_ltEs16(GT, LT) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.34/10.81 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.34/10.81 new_ltEs10(x0, x1) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.81 new_compare30(x0, x1, ty_Integer) 25.34/10.81 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_compare27(x0, x1, x2, x3, x4) 25.34/10.81 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_Char) 25.34/10.81 new_esEs23(x0, x1, ty_Float) 25.34/10.81 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_asAs(True, x0) 25.34/10.81 new_primMulNat0(Succ(x0), Zero) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.34/10.81 new_compare111(x0, x1, True, x2) 25.34/10.81 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.34/10.81 new_ltEs19(x0, x1, ty_Bool) 25.34/10.81 new_esEs29(x0, x1, ty_Int) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.81 new_esEs9(LT, GT) 25.34/10.81 new_esEs9(GT, LT) 25.34/10.81 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.34/10.81 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.81 new_compare30(x0, x1, ty_Bool) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.81 new_lt20(x0, x1, ty_Bool) 25.34/10.81 new_esEs23(x0, x1, ty_Bool) 25.34/10.81 new_esEs19(x0, x1, ty_Ordering) 25.34/10.81 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_lt15(x0, x1, x2) 25.34/10.81 new_esEs25(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_ltEs20(x0, x1, ty_Float) 25.34/10.81 new_esEs12(@0, @0) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.81 new_compare9(x0, x1) 25.34/10.81 new_lt11(x0, x1, ty_@0) 25.34/10.81 new_compare16(x0, x1, True) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_Float) 25.34/10.81 new_primPlusNat0(Succ(x0), x1) 25.34/10.81 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.34/10.81 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.34/10.81 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_primCompAux0(x0, x1, x2, x3) 25.34/10.81 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs18(x0, x1, app(ty_[], x2)) 25.34/10.81 new_compare28(x0, x1, False, x2, x3, x4) 25.34/10.81 new_esEs25(x0, x1, ty_Ordering) 25.34/10.81 new_compare10(x0, x1, True) 25.34/10.81 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.81 new_esEs21(x0, x1, ty_Float) 25.34/10.81 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.34/10.81 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.34/10.81 new_ltEs19(x0, x1, ty_Ordering) 25.34/10.81 new_compare19(x0, x1, True, x2, x3) 25.34/10.81 new_esEs26(x0, x1, ty_Int) 25.34/10.81 new_esEs25(x0, x1, ty_Double) 25.34/10.81 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare111(x0, x1, False, x2) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.34/10.81 new_lt20(x0, x1, ty_Integer) 25.34/10.81 new_ltEs4(x0, x1) 25.34/10.81 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_primEqNat0(Zero, Zero) 25.34/10.81 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.81 new_lt20(x0, x1, ty_Char) 25.34/10.81 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.81 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.81 new_ltEs9(False, False) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.81 new_not(False) 25.34/10.81 new_esEs25(x0, x1, ty_@0) 25.34/10.81 new_esEs22(x0, x1, ty_@0) 25.34/10.81 new_ltEs20(x0, x1, ty_Char) 25.34/10.81 new_esEs8(False, False) 25.34/10.81 new_esEs30(x0, x1, ty_Integer) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.34/10.81 new_ltEs18(x0, x1, ty_@0) 25.34/10.81 new_esEs19(x0, x1, ty_Integer) 25.34/10.81 new_esEs22(x0, x1, ty_Double) 25.34/10.81 new_compare15(x0, x1) 25.34/10.81 new_primMulInt(Neg(x0), Neg(x1)) 25.34/10.81 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_lt11(x0, x1, app(ty_[], x2)) 25.34/10.81 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.34/10.81 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.34/10.81 new_lt12(x0, x1, ty_Bool) 25.34/10.81 new_ltEs12(x0, x1) 25.34/10.81 new_lt12(x0, x1, ty_Float) 25.34/10.81 new_compare13(x0, x1, x2) 25.34/10.81 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.81 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs26(x0, x1, ty_Integer) 25.34/10.81 new_esEs18(x0, x1, ty_@0) 25.34/10.81 new_sr(x0, x1) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.81 new_esEs30(x0, x1, ty_Ordering) 25.34/10.81 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.81 new_compare110(x0, x1, True, x2, x3, x4) 25.34/10.81 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_compare211(x0, x1, False) 25.34/10.81 new_lt20(x0, x1, ty_Int) 25.34/10.81 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs18(x0, x1, ty_Double) 25.34/10.81 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs23(x0, x1, ty_Integer) 25.34/10.81 new_esEs20(x0, x1, ty_@0) 25.34/10.81 new_primPlusNat1(Succ(x0), Succ(x1)) 25.34/10.81 new_esEs28(x0, x1, ty_@0) 25.34/10.81 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_ltEs18(x0, x1, ty_Double) 25.34/10.81 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_ltEs20(x0, x1, ty_Int) 25.34/10.81 new_esEs20(x0, x1, ty_Double) 25.34/10.81 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.81 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.81 new_ltEs18(x0, x1, app(ty_[], x2)) 25.34/10.81 new_lt12(x0, x1, ty_Char) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.81 new_primCmpNat0(Succ(x0), Succ(x1)) 25.34/10.81 new_lt12(x0, x1, ty_Int) 25.34/10.81 new_primCmpNat0(Zero, Zero) 25.34/10.81 new_esEs6(Left(x0), Right(x1), x2, x3) 25.34/10.81 new_esEs6(Right(x0), Left(x1), x2, x3) 25.34/10.81 new_esEs14(Integer(x0), Integer(x1)) 25.34/10.81 new_lt4(x0, x1, x2) 25.34/10.81 new_compare0(:(x0, x1), :(x2, x3), x4) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.34/10.81 25.34/10.81 We have to consider all minimal (P,Q,R)-chains. 25.34/10.81 ---------------------------------------- 25.34/10.81 25.34/10.81 (37) TransformationProof (EQUIVALENT) 25.34/10.81 By rewriting [LPAR04] the rule new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, LT), h, ba) at position [6] we obtained the following new rules [LPAR04]: 25.34/10.81 25.34/10.81 (new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba),new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba)) 25.34/10.81 25.34/10.81 25.34/10.81 ---------------------------------------- 25.34/10.81 25.34/10.81 (38) 25.34/10.81 Obligation: 25.34/10.81 Q DP problem: 25.34/10.81 The TRS P consists of the following rules: 25.34/10.81 25.34/10.81 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM03(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Just(vyw300), new_esEs29(vyw50, vyw300, ba), ba), LT), h, ba) 25.34/10.81 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, bb, bc) -> new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_esEs9(new_compare23(Just(vyw21), Just(vyw16), new_esEs30(vyw21, vyw16, bc), bc), GT), bb, bc) 25.34/10.81 new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw20, Just(vyw21), bb, bc) 25.34/10.81 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), GT), h, ba) 25.34/10.81 new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Just(vyw50), h, ba) 25.34/10.81 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw19, Just(vyw21), bb, bc) 25.34/10.81 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) 25.34/10.81 25.34/10.81 The TRS R consists of the following rules: 25.34/10.81 25.34/10.81 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.34/10.81 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.34/10.81 new_lt10(vyw31000, vyw32000, ee, ef) -> new_esEs9(new_compare18(vyw31000, vyw32000, ee, ef), LT) 25.34/10.81 new_esEs23(vyw502, vyw3002, app(ty_[], caa)) -> new_esEs17(vyw502, vyw3002, caa) 25.34/10.81 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), cgg, cgh) -> new_pePe(new_lt20(vyw31000, vyw32000, cgg), new_asAs(new_esEs28(vyw31000, vyw32000, cgg), new_ltEs20(vyw31001, vyw32001, cgh))) 25.34/10.81 new_pePe(True, vyw101) -> True 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.34/10.81 new_compare23(vyw310, vyw320, True, cgf) -> EQ 25.34/10.81 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.34/10.81 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.34/10.81 new_esEs29(vyw50, vyw300, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vyw50, vyw300, fh, ga, gb) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.34/10.81 new_esEs9(LT, EQ) -> False 25.34/10.81 new_esEs9(EQ, LT) -> False 25.34/10.81 new_ltEs19(vyw3100, vyw3200, app(ty_[], da)) -> new_ltEs5(vyw3100, vyw3200, da) 25.34/10.81 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.34/10.81 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.34/10.81 new_esEs29(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.81 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.34/10.81 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dch)) -> new_compare7(vyw31000, vyw32000, dch) 25.34/10.81 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.81 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.34/10.81 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.81 new_lt12(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_lt4(vyw31000, vyw32000, cg) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, bbb), bah) -> new_ltEs11(vyw31000, vyw32000, bbb) 25.34/10.81 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), bdf, bdg, bdh) -> new_pePe(new_lt12(vyw31000, vyw32000, bdf), new_asAs(new_esEs22(vyw31000, vyw32000, bdf), new_pePe(new_lt11(vyw31001, vyw32001, bdg), new_asAs(new_esEs21(vyw31001, vyw32001, bdg), new_ltEs18(vyw31002, vyw32002, bdh))))) 25.34/10.81 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.81 new_primCompAux0(vyw31000, vyw32000, vyw102, da) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, da)) 25.34/10.81 new_compare30(vyw31000, vyw32000, app(app(ty_@2, ddh), dea)) -> new_compare18(vyw31000, vyw32000, ddh, dea) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.81 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.34/10.81 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.34/10.81 new_lt12(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31000, vyw32000, ee, ef) 25.34/10.81 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.81 new_compare25(@0, @0) -> EQ 25.34/10.81 new_ltEs9(False, True) -> True 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, fc) -> new_esEs9(vyw500, vyw3000) 25.34/10.81 new_compare210(vyw31000, vyw32000, True, ee, ef) -> EQ 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, fc) -> new_esEs8(vyw500, vyw3000) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.34/10.81 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(vyw500, vyw3000, bab, bac, bad) 25.34/10.81 new_esEs8(False, True) -> False 25.34/10.81 new_esEs8(True, False) -> False 25.34/10.81 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_esEs4(vyw31000, vyw32000, bag) 25.34/10.81 new_compare19(vyw31000, vyw32000, True, eh, fa) -> LT 25.34/10.81 new_lt20(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_lt6(vyw31000, vyw32000, dcb, dcc) 25.34/10.81 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.81 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.34/10.81 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_esEs13(vyw31000, vyw32000, cg) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.34/10.81 new_compare23(Just(vyw3100), Just(vyw3200), False, cgf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, cgf), cgf) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, dah), dba)) -> new_ltEs8(vyw31001, vyw32001, dah, dba) 25.34/10.81 new_not(True) -> False 25.34/10.81 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.81 new_primCompAux00(vyw112, LT) -> LT 25.34/10.81 new_primCmpNat0(Zero, Zero) -> EQ 25.34/10.81 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.81 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(vyw31000, vyw32000, bge, bgf, bgg) 25.34/10.81 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare27(vyw31000, vyw32000, ddb, ddc, ddd) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], cfb), fc) -> new_esEs17(vyw500, vyw3000, cfb) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.81 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw500, vyw3000, dh, ea, eb) 25.34/10.81 new_esEs23(vyw502, vyw3002, app(ty_Ratio, bhc)) -> new_esEs13(vyw502, vyw3002, bhc) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs13(vyw31000, vyw32000, cdb, cdc, cdd) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_@0) -> new_esEs12(vyw21, vyw16) 25.34/10.81 new_ltEs16(GT, EQ) -> False 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.34/10.81 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.81 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, bbf), bbg), bah) -> new_ltEs8(vyw31000, vyw32000, bbf, bbg) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(vyw3100, vyw3200, bdf, bdg, bdh) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.81 new_lt12(vyw31000, vyw32000, app(ty_[], bgh)) -> new_lt18(vyw31000, vyw32000, bgh) 25.34/10.81 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.81 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.34/10.81 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.81 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(vyw501, vyw3001, gh, ha, hb) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, fc) -> new_esEs12(vyw500, vyw3000) 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.34/10.81 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31000, vyw32000, ee, ef) 25.34/10.81 new_primCompAux00(vyw112, GT) -> GT 25.34/10.81 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(vyw500, vyw3000, ccb, ccc, ccd) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.81 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs13(vyw31001, vyw32001, dae, daf, dag) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.81 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.34/10.81 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.81 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.34/10.81 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.34/10.81 new_ltEs16(LT, LT) -> True 25.34/10.81 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw501, vyw3001, cah, cba, cbb) 25.34/10.81 new_esEs30(vyw21, vyw16, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(vyw21, vyw16, chf, chg, chh) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, bah) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.34/10.81 new_compare16(vyw31000, vyw32000, False) -> GT 25.34/10.81 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.34/10.81 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, fc) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.34/10.81 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.34/10.81 new_compare28(vyw31000, vyw32000, False, bge, bgf, bgg) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.34/10.81 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.34/10.81 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt17(vyw31001, vyw32001, bfe, bff, bfg) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fc) -> new_esEs5(vyw500, vyw3000, ceg, ceh, cfa) 25.34/10.81 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.81 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, bah) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.81 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(vyw31001, vyw32001, bfe, bff, bfg) 25.34/10.81 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.34/10.81 new_compare110(vyw31000, vyw32000, False, bge, bgf, bgg) -> GT 25.34/10.81 new_pePe(False, vyw101) -> vyw101 25.34/10.81 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.81 new_ltEs5(vyw3100, vyw3200, da) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, da), GT)) 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.34/10.81 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_ltEs9(True, True) -> True 25.34/10.81 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_esEs6(vyw31000, vyw32000, eh, fa) 25.34/10.81 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.34/10.81 new_ltEs16(LT, GT) -> True 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.81 new_lt11(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw31001, vyw32001, bgc, bgd) 25.34/10.81 new_esEs17([], [], db) -> True 25.34/10.81 new_ltEs16(LT, EQ) -> True 25.34/10.81 new_ltEs16(EQ, LT) -> False 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Float) -> new_esEs11(vyw21, vyw16) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], cdg)) -> new_ltEs5(vyw31000, vyw32000, cdg) 25.34/10.81 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_compare11(vyw31000, vyw32000, False, ee, ef) -> GT 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, bah) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.81 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cab)) -> new_esEs4(vyw502, vyw3002, cab) 25.34/10.81 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.34/10.81 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.34/10.81 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.34/10.81 new_compare30(vyw31000, vyw32000, app(app(ty_Either, dde), ddf)) -> new_compare12(vyw31000, vyw32000, dde, ddf) 25.34/10.81 new_esEs30(vyw21, vyw16, app(ty_[], daa)) -> new_esEs17(vyw21, vyw16, daa) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.34/10.81 new_esEs18(vyw500, vyw3000, app(ty_Ratio, de)) -> new_esEs13(vyw500, vyw3000, de) 25.34/10.81 new_ltEs16(GT, LT) -> False 25.34/10.81 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(vyw500, vyw3000, cb, cc, cd) 25.34/10.81 new_esEs19(vyw501, vyw3001, app(ty_Maybe, hd)) -> new_esEs4(vyw501, vyw3001, hd) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, bah) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw31002, vyw32002, bec, bed, bee) 25.34/10.81 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.81 new_esEs18(vyw500, vyw3000, app(ty_[], ec)) -> new_esEs17(vyw500, vyw3000, ec) 25.34/10.81 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.34/10.81 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.81 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.81 new_esEs24(vyw501, vyw3001, app(app(ty_Either, cac), cad)) -> new_esEs6(vyw501, vyw3001, cac, cad) 25.34/10.81 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.81 new_esEs8(False, False) -> True 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, ceb), cec), fc) -> new_esEs6(vyw500, vyw3000, ceb, cec) 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.34/10.81 new_ltEs8(Right(vyw31000), Left(vyw32000), bcc, bah) -> False 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.81 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.34/10.81 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Integer) -> new_esEs14(vyw50, vyw300) 25.34/10.81 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, ced), fc) -> new_esEs13(vyw500, vyw3000, ced) 25.34/10.81 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ff, fg) -> new_asAs(new_esEs20(vyw500, vyw3000, ff), new_esEs19(vyw501, vyw3001, fg)) 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.34/10.81 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(vyw502, vyw3002, bhf, bhg, bhh) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.34/10.81 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, fc) -> new_esEs16(vyw500, vyw3000) 25.34/10.81 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.34/10.81 new_compare18(vyw31000, vyw32000, ee, ef) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.81 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.34/10.81 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, fc) -> new_esEs10(vyw500, vyw3000) 25.34/10.81 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.34/10.81 new_compare30(vyw31000, vyw32000, app(ty_Maybe, dda)) -> new_compare13(vyw31000, vyw32000, dda) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, cee), cef), fc) -> new_esEs7(vyw500, vyw3000, cee, cef) 25.34/10.81 new_esEs28(vyw31000, vyw32000, app(ty_[], dcd)) -> new_esEs17(vyw31000, vyw32000, dcd) 25.34/10.81 new_ltEs16(EQ, GT) -> True 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_Either, bda), bdb)) -> new_ltEs8(vyw31000, vyw32000, bda, bdb) 25.34/10.81 new_ltEs16(EQ, EQ) -> True 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bg)) -> new_esEs13(vyw500, vyw3000, bg) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, bcc), bah)) -> new_ltEs8(vyw3100, vyw3200, bcc, bah) 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Float) -> new_esEs11(vyw50, vyw300) 25.34/10.81 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.81 new_esEs20(vyw500, vyw3000, app(ty_Maybe, baf)) -> new_esEs4(vyw500, vyw3000, baf) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.81 new_esEs29(vyw50, vyw300, app(ty_[], db)) -> new_esEs17(vyw50, vyw300, db) 25.34/10.81 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.34/10.81 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.34/10.81 new_esEs9(LT, LT) -> True 25.34/10.81 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.81 new_lt17(vyw31000, vyw32000, bge, bgf, bgg) -> new_esEs9(new_compare27(vyw31000, vyw32000, bge, bgf, bgg), LT) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, bah) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.81 new_compare23(Just(vyw3100), Nothing, False, cgf) -> GT 25.34/10.81 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, bba), bah) -> new_ltEs6(vyw31000, vyw32000, bba) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, cda)) -> new_ltEs11(vyw31000, vyw32000, cda) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.81 new_compare19(vyw31000, vyw32000, False, eh, fa) -> GT 25.34/10.81 new_lt12(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_lt15(vyw31000, vyw32000, bag) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Double) -> new_esEs15(vyw50, vyw300) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.34/10.81 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), db) -> new_asAs(new_esEs18(vyw500, vyw3000, db), new_esEs17(vyw501, vyw3001, db)) 25.34/10.81 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_esEs4(vyw31001, vyw32001, bfd) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.81 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.81 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.34/10.81 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), fd) -> new_asAs(new_esEs27(vyw500, vyw3000, fd), new_esEs26(vyw501, vyw3001, fd)) 25.34/10.81 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbh), cca)) -> new_esEs7(vyw500, vyw3000, cbh, cca) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Maybe, bce)) -> new_ltEs11(vyw31000, vyw32000, bce) 25.34/10.81 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_esEs13(vyw31001, vyw32001, bfc) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.34/10.81 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Double) -> new_esEs15(vyw21, vyw16) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs4(vyw500, vyw3000, cf) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, bef), beg)) -> new_ltEs8(vyw31002, vyw32002, bef, beg) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.34/10.81 new_esEs23(vyw502, vyw3002, app(app(ty_Either, bha), bhb)) -> new_esEs6(vyw502, vyw3002, bha, bhb) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.81 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw31001, vyw32001, bfh, bga) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, fc) -> new_esEs11(vyw500, vyw3000) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.34/10.81 new_compare16(vyw31000, vyw32000, True) -> LT 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.34/10.81 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.34/10.81 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.81 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.81 new_esEs30(vyw21, vyw16, app(ty_Maybe, dab)) -> new_esEs4(vyw21, vyw16, dab) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, dad)) -> new_ltEs11(vyw31001, vyw32001, dad) 25.34/10.81 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cbd)) -> new_esEs4(vyw501, vyw3001, cbd) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], ce)) -> new_esEs17(vyw500, vyw3000, ce) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Int) -> new_esEs16(vyw50, vyw300) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.81 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw31000, vyw32000, bge, bgf, bgg) 25.34/10.81 new_lt15(vyw31000, vyw32000, bag) -> new_esEs9(new_compare13(vyw31000, vyw32000, bag), LT) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.81 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, cdh), cea)) -> new_ltEs17(vyw31000, vyw32000, cdh, cea) 25.34/10.81 new_esEs18(vyw500, vyw3000, app(ty_Maybe, ed)) -> new_esEs4(vyw500, vyw3000, ed) 25.34/10.81 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.81 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.81 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, be), bf)) -> new_esEs6(vyw500, vyw3000, be, bf) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, eg)) -> new_ltEs6(vyw3100, vyw3200, eg) 25.34/10.81 new_esEs20(vyw500, vyw3000, app(ty_Ratio, hg)) -> new_esEs13(vyw500, vyw3000, hg) 25.34/10.81 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.81 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cbg)) -> new_esEs13(vyw500, vyw3000, cbg) 25.34/10.81 new_compare0([], :(vyw32000, vyw32001), da) -> LT 25.34/10.81 new_asAs(True, vyw93) -> vyw93 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.34/10.81 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Integer) -> new_esEs14(vyw21, vyw16) 25.34/10.81 new_esEs19(vyw501, vyw3001, app(ty_[], hc)) -> new_esEs17(vyw501, vyw3001, hc) 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.34/10.81 new_esEs25(vyw500, vyw3000, app(ty_[], cce)) -> new_esEs17(vyw500, vyw3000, cce) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, fc) -> new_esEs15(vyw500, vyw3000) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.34/10.81 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_lt4(vyw31000, vyw32000, dbe) 25.34/10.81 new_lt20(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_lt10(vyw31000, vyw32000, dce, dcf) 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.34/10.81 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.81 new_esEs6(Left(vyw500), Right(vyw3000), fb, fc) -> False 25.34/10.81 new_esEs6(Right(vyw500), Left(vyw3000), fb, fc) -> False 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, bah) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.81 new_esEs19(vyw501, vyw3001, app(ty_Ratio, ge)) -> new_esEs13(vyw501, vyw3001, ge) 25.34/10.81 new_lt11(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_lt15(vyw31001, vyw32001, bfd) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, bbc), bbd), bbe), bah) -> new_ltEs13(vyw31000, vyw32000, bbc, bbd, bbe) 25.34/10.81 new_esEs18(vyw500, vyw3000, app(app(ty_@2, df), dg)) -> new_esEs7(vyw500, vyw3000, df, dg) 25.34/10.81 new_esEs24(vyw501, vyw3001, app(app(ty_@2, caf), cag)) -> new_esEs7(vyw501, vyw3001, caf, cag) 25.34/10.81 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.34/10.81 new_esEs30(vyw21, vyw16, app(app(ty_@2, chd), che)) -> new_esEs7(vyw21, vyw16, chd, che) 25.34/10.81 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.81 new_primCompAux00(vyw112, EQ) -> vyw112 25.34/10.81 new_compare0([], [], da) -> EQ 25.34/10.81 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.34/10.81 new_ltEs16(GT, GT) -> True 25.34/10.81 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.34/10.81 new_ltEs9(False, False) -> True 25.34/10.81 new_primMulNat0(Zero, Zero) -> Zero 25.34/10.81 new_compare10(vyw31000, vyw32000, False) -> GT 25.34/10.81 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.34/10.81 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.81 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfc), fc) -> new_esEs4(vyw500, vyw3000, cfc) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, beb)) -> new_ltEs11(vyw31002, vyw32002, beb) 25.34/10.81 new_compare211(vyw31000, vyw32000, True) -> EQ 25.34/10.81 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_esEs4(vyw31000, vyw32000, dbf) 25.34/10.81 new_esEs23(vyw502, vyw3002, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw502, vyw3002, bhd, bhe) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], bbh), bah) -> new_ltEs5(vyw31000, vyw32000, bbh) 25.34/10.81 new_ltEs11(Nothing, Just(vyw32000), ccg) -> True 25.34/10.81 new_compare28(vyw31000, vyw32000, True, bge, bgf, bgg) -> EQ 25.34/10.81 new_esEs4(Nothing, Nothing, bd) -> True 25.34/10.81 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dac)) -> new_ltEs6(vyw31001, vyw32001, dac) 25.34/10.81 new_esEs4(Nothing, Just(vyw3000), bd) -> False 25.34/10.81 new_esEs4(Just(vyw500), Nothing, bd) -> False 25.34/10.81 new_esEs20(vyw500, vyw3000, app(ty_[], bae)) -> new_esEs17(vyw500, vyw3000, bae) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_[], bdc)) -> new_ltEs5(vyw31000, vyw32000, bdc) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.81 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, bah) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.81 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fh, ga, gb) -> new_asAs(new_esEs25(vyw500, vyw3000, fh), new_asAs(new_esEs24(vyw501, vyw3001, ga), new_esEs23(vyw502, vyw3002, gb))) 25.34/10.81 new_esEs30(vyw21, vyw16, app(ty_Ratio, chc)) -> new_esEs13(vyw21, vyw16, chc) 25.34/10.81 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.81 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.81 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.34/10.81 new_esEs24(vyw501, vyw3001, app(ty_Ratio, cae)) -> new_esEs13(vyw501, vyw3001, cae) 25.34/10.81 new_esEs19(vyw501, vyw3001, app(app(ty_Either, gc), gd)) -> new_esEs6(vyw501, vyw3001, gc, gd) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, ccg)) -> new_ltEs11(vyw3100, vyw3200, ccg) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.34/10.81 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vyw500, vyw3000, cbe, cbf) 25.34/10.81 new_ltEs9(True, False) -> False 25.34/10.81 new_esEs9(EQ, EQ) -> True 25.34/10.81 new_lt12(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_lt6(vyw31000, vyw32000, eh, fa) 25.34/10.81 new_lt11(vyw31001, vyw32001, app(ty_[], bgb)) -> new_lt18(vyw31001, vyw32001, bgb) 25.34/10.81 new_esEs21(vyw31001, vyw32001, app(ty_[], bgb)) -> new_esEs17(vyw31001, vyw32001, bgb) 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.34/10.81 new_esEs29(vyw50, vyw300, app(ty_Ratio, fd)) -> new_esEs13(vyw50, vyw300, fd) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.81 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.34/10.81 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.34/10.81 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.34/10.81 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vyw31000, vyw32000, bcf, bcg, bch) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, cde), cdf)) -> new_ltEs8(vyw31000, vyw32000, cde, cdf) 25.34/10.81 new_compare24(vyw31000, vyw32000, True) -> EQ 25.34/10.81 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_esEs7(vyw31000, vyw32000, dce, dcf) 25.34/10.81 new_esEs20(vyw500, vyw3000, app(app(ty_Either, he), hf)) -> new_esEs6(vyw500, vyw3000, he, hf) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.81 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.34/10.81 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.34/10.81 new_compare30(vyw31000, vyw32000, app(ty_[], ddg)) -> new_compare0(vyw31000, vyw32000, ddg) 25.34/10.81 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.34/10.81 new_compare23(Nothing, Just(vyw3200), False, cgf) -> LT 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.34/10.81 new_esEs29(vyw50, vyw300, app(ty_Maybe, bd)) -> new_esEs4(vyw50, vyw300, bd) 25.34/10.81 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.34/10.81 new_compare111(vyw86, vyw87, False, dcg) -> GT 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.34/10.81 new_compare110(vyw31000, vyw32000, True, bge, bgf, bgg) -> LT 25.34/10.81 new_ltEs6(vyw3100, vyw3200, eg) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, eg), GT)) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, bea)) -> new_ltEs6(vyw31002, vyw32002, bea) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.81 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.81 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.34/10.81 new_esEs19(vyw501, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw501, vyw3001, gf, gg) 25.34/10.81 new_compare23(Nothing, Nothing, False, cgf) -> LT 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, bca), bcb), bah) -> new_ltEs17(vyw31000, vyw32000, bca, bcb) 25.34/10.81 new_ltEs8(Left(vyw31000), Right(vyw32000), bcc, bah) -> True 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cch)) -> new_ltEs6(vyw31000, vyw32000, cch) 25.34/10.81 new_not(False) -> True 25.34/10.81 new_lt11(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_lt4(vyw31001, vyw32001, bfc) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.34/10.81 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_esEs13(vyw31000, vyw32000, dbe) 25.34/10.81 new_esEs24(vyw501, vyw3001, app(ty_[], cbc)) -> new_esEs17(vyw501, vyw3001, cbc) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, dbc), dbd)) -> new_ltEs17(vyw31001, vyw32001, dbc, dbd) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.81 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.34/10.81 new_esEs9(GT, GT) -> True 25.34/10.81 new_compare0(:(vyw31000, vyw31001), [], da) -> GT 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.81 new_esEs29(vyw50, vyw300, app(app(ty_Either, fb), fc)) -> new_esEs6(vyw50, vyw300, fb, fc) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_compare27(vyw31000, vyw32000, bge, bgf, bgg) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.81 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs5(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.34/10.81 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(vyw3100, vyw3200, cgg, cgh) 25.34/10.81 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.34/10.81 new_esEs29(vyw50, vyw300, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw50, vyw300, ff, fg) 25.34/10.81 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.34/10.81 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, bah) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.81 new_esEs9(EQ, GT) -> False 25.34/10.81 new_esEs9(GT, EQ) -> False 25.34/10.81 new_ltEs18(vyw31002, vyw32002, app(ty_[], beh)) -> new_ltEs5(vyw31002, vyw32002, beh) 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.34/10.81 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.34/10.81 new_compare11(vyw31000, vyw32000, True, ee, ef) -> LT 25.34/10.81 new_esEs30(vyw21, vyw16, app(app(ty_Either, cha), chb)) -> new_esEs6(vyw21, vyw16, cha, chb) 25.34/10.81 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.81 new_compare12(vyw31000, vyw32000, eh, fa) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.81 new_lt20(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_lt15(vyw31000, vyw32000, dbf) 25.34/10.81 new_esEs8(True, True) -> True 25.34/10.81 new_lt11(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_lt6(vyw31001, vyw32001, bfh, bga) 25.34/10.81 new_compare29(vyw31000, vyw32000, False, eh, fa) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.81 new_compare10(vyw31000, vyw32000, True) -> LT 25.34/10.81 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.34/10.81 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.34/10.81 new_primPlusNat1(Zero, Zero) -> Zero 25.34/10.81 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), da) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, da), da) 25.34/10.81 new_compare13(vyw31000, vyw32000, bag) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, bag), bag) 25.34/10.81 new_esEs22(vyw31000, vyw32000, app(ty_[], bgh)) -> new_esEs17(vyw31000, vyw32000, bgh) 25.34/10.81 new_compare111(vyw86, vyw87, True, dcg) -> LT 25.34/10.81 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccf)) -> new_esEs4(vyw500, vyw3000, ccf) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.81 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.81 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.34/10.81 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.34/10.81 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.81 new_lt20(vyw31000, vyw32000, app(ty_[], dcd)) -> new_lt18(vyw31000, vyw32000, dcd) 25.34/10.81 new_esEs18(vyw500, vyw3000, app(app(ty_Either, dc), dd)) -> new_esEs6(vyw500, vyw3000, dc, dd) 25.34/10.81 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.34/10.81 new_lt18(vyw31000, vyw32000, bgh) -> new_esEs9(new_compare0(vyw31000, vyw32000, bgh), LT) 25.34/10.81 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.34/10.81 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.34/10.81 new_esEs12(@0, @0) -> True 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.81 new_compare29(vyw31000, vyw32000, True, eh, fa) -> EQ 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.34/10.81 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Char) -> new_esEs10(vyw21, vyw16) 25.34/10.81 new_lt6(vyw31000, vyw32000, eh, fa) -> new_esEs9(new_compare12(vyw31000, vyw32000, eh, fa), LT) 25.34/10.81 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw31001, vyw32001, bgc, bgd) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Int) -> new_esEs16(vyw21, vyw16) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.81 new_ltEs11(Just(vyw31000), Nothing, ccg) -> False 25.34/10.81 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.34/10.81 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.34/10.81 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(vyw31002, vyw32002, bfa, bfb) 25.34/10.81 new_ltEs11(Nothing, Nothing, ccg) -> True 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, bh), ca)) -> new_esEs7(vyw500, vyw3000, bh, ca) 25.34/10.81 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.34/10.81 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.81 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.34/10.81 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.34/10.81 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_esEs6(vyw31000, vyw32000, dcb, dcc) 25.34/10.81 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.81 new_primEqNat0(Zero, Zero) -> True 25.34/10.81 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.34/10.81 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.34/10.81 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.81 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Bool) -> new_esEs8(vyw21, vyw16) 25.34/10.81 new_ltEs20(vyw31001, vyw32001, app(ty_[], dbb)) -> new_ltEs5(vyw31001, vyw32001, dbb) 25.34/10.81 new_compare210(vyw31000, vyw32000, False, ee, ef) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.81 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.34/10.81 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.34/10.81 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.34/10.81 new_esEs9(LT, GT) -> False 25.34/10.81 new_esEs9(GT, LT) -> False 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Ratio, bcd)) -> new_ltEs6(vyw31000, vyw32000, bcd) 25.34/10.81 new_esEs17(:(vyw500, vyw501), [], db) -> False 25.34/10.81 new_esEs17([], :(vyw3000, vyw3001), db) -> False 25.34/10.81 new_asAs(False, vyw93) -> False 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Ordering) -> new_esEs9(vyw50, vyw300) 25.34/10.81 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_lt17(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.81 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.81 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.34/10.81 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Bool) -> new_esEs8(vyw50, vyw300) 25.34/10.81 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.81 new_esEs30(vyw21, vyw16, ty_Ordering) -> new_esEs9(vyw21, vyw16) 25.34/10.81 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_@2, bdd), bde)) -> new_ltEs17(vyw31000, vyw32000, bdd, bde) 25.34/10.81 new_lt4(vyw31000, vyw32000, cg) -> new_esEs9(new_compare7(vyw31000, vyw32000, cg), LT) 25.34/10.81 new_esEs29(vyw50, vyw300, ty_Char) -> new_esEs10(vyw50, vyw300) 25.34/10.81 new_esEs20(vyw500, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw500, vyw3000, hh, baa) 25.34/10.81 25.34/10.81 The set Q consists of the following terms: 25.34/10.81 25.34/10.81 new_lt12(x0, x1, ty_Integer) 25.34/10.81 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.34/10.81 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.81 new_lt19(x0, x1) 25.34/10.81 new_esEs28(x0, x1, ty_Ordering) 25.34/10.81 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs29(x0, x1, ty_Integer) 25.34/10.81 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_ltEs20(x0, x1, ty_@0) 25.34/10.81 new_lt20(x0, x1, ty_Float) 25.34/10.81 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_compare0([], [], x0) 25.34/10.81 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs19(x0, x1, ty_@0) 25.34/10.81 new_esEs30(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs16(x0, x1) 25.34/10.81 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_esEs28(x0, x1, ty_Double) 25.34/10.81 new_esEs23(x0, x1, ty_Int) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs22(x0, x1, ty_Int) 25.34/10.81 new_esEs30(x0, x1, ty_@0) 25.34/10.81 new_ltEs20(x0, x1, ty_Bool) 25.34/10.81 new_primPlusNat1(Zero, Zero) 25.34/10.81 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.34/10.81 new_compare16(x0, x1, False) 25.34/10.81 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs22(x0, x1, ty_Char) 25.34/10.81 new_esEs23(x0, x1, ty_Ordering) 25.34/10.81 new_esEs19(x0, x1, ty_Bool) 25.34/10.81 new_primMulNat0(Zero, Succ(x0)) 25.34/10.81 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_compare30(x0, x1, ty_Ordering) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.81 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_compare30(x0, x1, ty_Int) 25.34/10.81 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.81 new_primMulNat0(Succ(x0), Succ(x1)) 25.34/10.81 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_primEqInt(Pos(Zero), Pos(Zero)) 25.34/10.81 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_primCompAux00(x0, GT) 25.34/10.81 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs23(x0, x1, ty_Char) 25.34/10.81 new_esEs20(x0, x1, ty_Integer) 25.34/10.81 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.81 new_esEs29(x0, x1, ty_Bool) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.81 new_esEs4(Nothing, Nothing, x0) 25.34/10.81 new_ltEs6(x0, x1, x2) 25.34/10.81 new_lt17(x0, x1, x2, x3, x4) 25.34/10.81 new_esEs24(x0, x1, app(ty_[], x2)) 25.34/10.81 new_primEqInt(Neg(Zero), Neg(Zero)) 25.34/10.81 new_pePe(True, x0) 25.34/10.81 new_ltEs18(x0, x1, ty_Float) 25.34/10.81 new_compare30(x0, x1, ty_Char) 25.34/10.81 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_lt13(x0, x1) 25.34/10.81 new_esEs23(x0, x1, ty_Double) 25.34/10.81 new_compare29(x0, x1, False, x2, x3) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs21(x0, x1, ty_@0) 25.34/10.81 new_ltEs16(GT, EQ) 25.34/10.81 new_ltEs16(EQ, GT) 25.34/10.81 new_primCmpNat0(Succ(x0), Zero) 25.34/10.81 new_compare30(x0, x1, ty_Double) 25.34/10.81 new_lt5(x0, x1) 25.34/10.81 new_compare25(@0, @0) 25.34/10.81 new_ltEs9(True, True) 25.34/10.81 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.81 new_esEs21(x0, x1, ty_Int) 25.34/10.81 new_esEs19(x0, x1, ty_Char) 25.34/10.81 new_esEs9(LT, LT) 25.34/10.81 new_ltEs16(LT, LT) 25.34/10.81 new_esEs21(x0, x1, ty_Integer) 25.34/10.81 new_esEs4(Just(x0), Nothing, x1) 25.34/10.81 new_esEs30(x0, x1, ty_Int) 25.34/10.81 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.81 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.81 new_esEs24(x0, x1, ty_Int) 25.34/10.81 new_esEs19(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs9(EQ, GT) 25.34/10.81 new_esEs9(GT, EQ) 25.34/10.81 new_lt11(x0, x1, ty_Integer) 25.34/10.81 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.34/10.81 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.34/10.81 new_esEs18(x0, x1, ty_Ordering) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.34/10.81 new_esEs18(x0, x1, ty_Integer) 25.34/10.81 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs8(False, True) 25.34/10.81 new_esEs8(True, False) 25.34/10.81 new_esEs29(x0, x1, ty_Float) 25.34/10.81 new_lt11(x0, x1, ty_Bool) 25.34/10.81 new_ltEs20(x0, x1, ty_Integer) 25.34/10.81 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs21(x0, x1, ty_Char) 25.34/10.81 new_lt12(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs8(True, True) 25.34/10.81 new_lt7(x0, x1) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.81 new_lt6(x0, x1, x2, x3) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.81 new_esEs21(x0, x1, ty_Bool) 25.34/10.81 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_primEqInt(Pos(Zero), Neg(Zero)) 25.34/10.81 new_primEqInt(Neg(Zero), Pos(Zero)) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.81 new_compare23(Nothing, Just(x0), False, x1) 25.34/10.81 new_compare210(x0, x1, False, x2, x3) 25.34/10.81 new_compare11(x0, x1, True, x2, x3) 25.34/10.81 new_esEs24(x0, x1, ty_Double) 25.34/10.81 new_esEs30(x0, x1, ty_Bool) 25.34/10.81 new_ltEs19(x0, x1, ty_Double) 25.34/10.81 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.34/10.81 new_esEs22(x0, x1, ty_Ordering) 25.34/10.81 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.34/10.81 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.34/10.81 new_esEs28(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs30(x0, x1, ty_Char) 25.34/10.81 new_ltEs20(x0, x1, ty_Ordering) 25.34/10.81 new_esEs29(x0, x1, ty_@0) 25.34/10.81 new_esEs24(x0, x1, ty_Char) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.34/10.81 new_esEs19(x0, x1, ty_Int) 25.34/10.81 new_compare8(Integer(x0), Integer(x1)) 25.34/10.81 new_esEs30(x0, x1, ty_Double) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.34/10.81 new_compare19(x0, x1, False, x2, x3) 25.34/10.81 new_compare23(Just(x0), Nothing, False, x1) 25.34/10.81 new_primPlusNat0(Zero, x0) 25.34/10.81 new_esEs27(x0, x1, ty_Int) 25.34/10.81 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs19(x0, x1, ty_Double) 25.34/10.81 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs22(x0, x1, ty_Integer) 25.34/10.81 new_esEs28(x0, x1, ty_Bool) 25.34/10.81 new_ltEs19(x0, x1, ty_Int) 25.34/10.81 new_ltEs20(x0, x1, ty_Double) 25.34/10.81 new_esEs25(x0, x1, ty_Char) 25.34/10.81 new_ltEs5(x0, x1, x2) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.81 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.81 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.81 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs29(x0, x1, ty_Char) 25.34/10.81 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare30(x0, x1, ty_@0) 25.34/10.81 new_lt20(x0, x1, ty_@0) 25.34/10.81 new_esEs24(x0, x1, ty_@0) 25.34/10.81 new_esEs19(x0, x1, ty_Float) 25.34/10.81 new_ltEs16(GT, GT) 25.34/10.81 new_esEs23(x0, x1, ty_@0) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.34/10.81 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.81 new_esEs21(x0, x1, ty_Double) 25.34/10.81 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare110(x0, x1, False, x2, x3, x4) 25.34/10.81 new_compare23(x0, x1, True, x2) 25.34/10.81 new_lt20(x0, x1, app(ty_[], x2)) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.81 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.81 new_compare24(x0, x1, False) 25.34/10.81 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_ltEs19(x0, x1, ty_Float) 25.34/10.81 new_esEs10(Char(x0), Char(x1)) 25.34/10.81 new_compare210(x0, x1, True, x2, x3) 25.34/10.81 new_ltEs16(LT, EQ) 25.34/10.81 new_ltEs16(EQ, LT) 25.34/10.81 new_esEs30(x0, x1, ty_Float) 25.34/10.81 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.81 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.81 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.81 new_ltEs11(Just(x0), Nothing, x1) 25.34/10.81 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.81 new_compare6(Char(x0), Char(x1)) 25.34/10.81 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.81 new_asAs(False, x0) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.34/10.81 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs25(x0, x1, ty_Int) 25.34/10.81 new_esEs29(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_primEqNat0(Zero, Succ(x0)) 25.34/10.81 new_esEs21(x0, x1, ty_Ordering) 25.34/10.81 new_ltEs7(x0, x1) 25.34/10.81 new_compare211(x0, x1, True) 25.34/10.81 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.34/10.81 new_esEs22(x0, x1, ty_Bool) 25.34/10.81 new_lt11(x0, x1, ty_Char) 25.34/10.81 new_esEs17([], :(x0, x1), x2) 25.34/10.81 new_ltEs18(x0, x1, ty_Integer) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.81 new_esEs22(x0, x1, app(ty_[], x2)) 25.34/10.81 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.81 new_ltEs9(False, True) 25.34/10.81 new_ltEs9(True, False) 25.34/10.81 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.81 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.34/10.81 new_esEs17(:(x0, x1), [], x2) 25.34/10.81 new_ltEs14(x0, x1) 25.34/10.81 new_esEs24(x0, x1, ty_Integer) 25.34/10.81 new_primEqNat0(Succ(x0), Succ(x1)) 25.34/10.81 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.34/10.81 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.34/10.81 new_ltEs15(x0, x1) 25.34/10.81 new_lt12(x0, x1, ty_@0) 25.34/10.81 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_lt11(x0, x1, ty_Int) 25.34/10.81 new_compare23(Just(x0), Just(x1), False, x2) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.34/10.81 new_esEs18(x0, x1, ty_Bool) 25.34/10.81 new_esEs25(x0, x1, ty_Float) 25.34/10.81 new_esEs20(x0, x1, ty_Float) 25.34/10.81 new_esEs18(x0, x1, ty_Float) 25.34/10.81 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.81 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.81 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.81 new_esEs20(x0, x1, ty_Bool) 25.34/10.81 new_lt10(x0, x1, x2, x3) 25.34/10.81 new_esEs24(x0, x1, ty_Ordering) 25.34/10.81 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.34/10.81 new_compare0(:(x0, x1), [], x2) 25.34/10.81 new_compare18(x0, x1, x2, x3) 25.34/10.81 new_esEs23(x0, x1, app(ty_[], x2)) 25.34/10.81 new_esEs29(x0, x1, ty_Ordering) 25.34/10.81 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.81 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.34/10.82 new_compare23(Nothing, Nothing, False, x0) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.82 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs18(x0, x1, ty_Char) 25.34/10.82 new_compare28(x0, x1, True, x2, x3, x4) 25.34/10.82 new_primPlusNat1(Succ(x0), Zero) 25.34/10.82 new_ltEs18(x0, x1, ty_Bool) 25.34/10.82 new_lt9(x0, x1) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.34/10.82 new_esEs20(x0, x1, ty_Int) 25.34/10.82 new_pePe(False, x0) 25.34/10.82 new_esEs28(x0, x1, ty_Char) 25.34/10.82 new_lt11(x0, x1, ty_Float) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.34/10.82 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.82 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.34/10.82 new_lt12(x0, x1, ty_Double) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.34/10.82 new_compare10(x0, x1, False) 25.34/10.82 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs18(x0, x1, ty_Int) 25.34/10.82 new_esEs20(x0, x1, ty_Char) 25.34/10.82 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs11(Nothing, Just(x0), x1) 25.34/10.82 new_esEs22(x0, x1, ty_Float) 25.34/10.82 new_compare26(x0, x1) 25.34/10.82 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.82 new_esEs28(x0, x1, ty_Int) 25.34/10.82 new_esEs4(Nothing, Just(x0), x1) 25.34/10.82 new_esEs25(x0, x1, ty_Integer) 25.34/10.82 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.34/10.82 new_esEs17([], [], x0) 25.34/10.82 new_esEs9(EQ, EQ) 25.34/10.82 new_lt20(x0, x1, ty_Double) 25.34/10.82 new_ltEs16(EQ, EQ) 25.34/10.82 new_primCompAux00(x0, LT) 25.34/10.82 new_esEs27(x0, x1, ty_Integer) 25.34/10.82 new_compare30(x0, x1, ty_Float) 25.34/10.82 new_ltEs18(x0, x1, ty_Char) 25.34/10.82 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_@0) 25.34/10.82 new_primEqNat0(Succ(x0), Zero) 25.34/10.82 new_primMulNat0(Zero, Zero) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.34/10.82 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_lt20(x0, x1, ty_Ordering) 25.34/10.82 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_lt18(x0, x1, x2) 25.34/10.82 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.34/10.82 new_ltEs20(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.34/10.82 new_esEs28(x0, x1, ty_Float) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.34/10.82 new_ltEs18(x0, x1, ty_Int) 25.34/10.82 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_lt11(x0, x1, ty_Double) 25.34/10.82 new_esEs24(x0, x1, ty_Float) 25.34/10.82 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_primMulInt(Pos(x0), Pos(x1)) 25.34/10.82 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_ltEs18(x0, x1, ty_Ordering) 25.34/10.82 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_ltEs19(x0, x1, ty_@0) 25.34/10.82 new_compare12(x0, x1, x2, x3) 25.34/10.82 new_compare11(x0, x1, False, x2, x3) 25.34/10.82 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.34/10.82 new_ltEs11(Nothing, Nothing, x0) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.82 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.82 new_lt16(x0, x1) 25.34/10.82 new_primCmpNat0(Zero, Succ(x0)) 25.34/10.82 new_ltEs19(x0, x1, app(ty_[], x2)) 25.34/10.82 new_ltEs19(x0, x1, ty_Integer) 25.34/10.82 new_lt8(x0, x1) 25.34/10.82 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.34/10.82 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.34/10.82 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.34/10.82 new_compare30(x0, x1, app(ty_[], x2)) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.82 new_esEs21(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.82 new_sr0(Integer(x0), Integer(x1)) 25.34/10.82 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.34/10.82 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.82 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs20(x0, x1, ty_Ordering) 25.34/10.82 new_not(True) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Int) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.82 new_compare29(x0, x1, True, x2, x3) 25.34/10.82 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.82 new_primPlusNat1(Zero, Succ(x0)) 25.34/10.82 new_compare0([], :(x0, x1), x2) 25.34/10.82 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs29(x0, x1, ty_Double) 25.34/10.82 new_lt11(x0, x1, ty_Ordering) 25.34/10.82 new_esEs25(x0, x1, ty_Bool) 25.34/10.82 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.34/10.82 new_primMulInt(Pos(x0), Neg(x1)) 25.34/10.82 new_primMulInt(Neg(x0), Pos(x1)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.34/10.82 new_primCompAux00(x0, EQ) 25.34/10.82 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.34/10.82 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.82 new_lt12(x0, x1, ty_Ordering) 25.34/10.82 new_esEs28(x0, x1, ty_Integer) 25.34/10.82 new_lt14(x0, x1) 25.34/10.82 new_ltEs19(x0, x1, ty_Char) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.82 new_esEs24(x0, x1, ty_Bool) 25.34/10.82 new_esEs20(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs9(LT, EQ) 25.34/10.82 new_esEs9(EQ, LT) 25.34/10.82 new_compare24(x0, x1, True) 25.34/10.82 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Double) 25.34/10.82 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.34/10.82 new_esEs9(GT, GT) 25.34/10.82 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs16(LT, GT) 25.34/10.82 new_ltEs16(GT, LT) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.34/10.82 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.34/10.82 new_ltEs10(x0, x1) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.82 new_compare30(x0, x1, ty_Integer) 25.34/10.82 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_compare27(x0, x1, x2, x3, x4) 25.34/10.82 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Char) 25.34/10.82 new_esEs23(x0, x1, ty_Float) 25.34/10.82 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_asAs(True, x0) 25.34/10.82 new_primMulNat0(Succ(x0), Zero) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.34/10.82 new_compare111(x0, x1, True, x2) 25.34/10.82 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.34/10.82 new_ltEs19(x0, x1, ty_Bool) 25.34/10.82 new_esEs29(x0, x1, ty_Int) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.82 new_esEs9(LT, GT) 25.34/10.82 new_esEs9(GT, LT) 25.34/10.82 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.34/10.82 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.82 new_compare30(x0, x1, ty_Bool) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.82 new_lt20(x0, x1, ty_Bool) 25.34/10.82 new_esEs23(x0, x1, ty_Bool) 25.34/10.82 new_esEs19(x0, x1, ty_Ordering) 25.34/10.82 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_lt15(x0, x1, x2) 25.34/10.82 new_esEs25(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs20(x0, x1, ty_Float) 25.34/10.82 new_esEs12(@0, @0) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.82 new_compare9(x0, x1) 25.34/10.82 new_lt11(x0, x1, ty_@0) 25.34/10.82 new_compare16(x0, x1, True) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Float) 25.34/10.82 new_primPlusNat0(Succ(x0), x1) 25.34/10.82 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.34/10.82 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.34/10.82 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_primCompAux0(x0, x1, x2, x3) 25.34/10.82 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs18(x0, x1, app(ty_[], x2)) 25.34/10.82 new_compare28(x0, x1, False, x2, x3, x4) 25.34/10.82 new_esEs25(x0, x1, ty_Ordering) 25.34/10.82 new_compare10(x0, x1, True) 25.34/10.82 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.82 new_esEs21(x0, x1, ty_Float) 25.34/10.82 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.34/10.82 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.34/10.82 new_ltEs19(x0, x1, ty_Ordering) 25.34/10.82 new_compare19(x0, x1, True, x2, x3) 25.34/10.82 new_esEs26(x0, x1, ty_Int) 25.34/10.82 new_esEs25(x0, x1, ty_Double) 25.34/10.82 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.34/10.82 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_compare111(x0, x1, False, x2) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.34/10.82 new_lt20(x0, x1, ty_Integer) 25.34/10.82 new_ltEs4(x0, x1) 25.34/10.82 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_primEqNat0(Zero, Zero) 25.34/10.82 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.82 new_lt20(x0, x1, ty_Char) 25.34/10.82 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.82 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.82 new_ltEs9(False, False) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.82 new_not(False) 25.34/10.82 new_esEs25(x0, x1, ty_@0) 25.34/10.82 new_esEs22(x0, x1, ty_@0) 25.34/10.82 new_ltEs20(x0, x1, ty_Char) 25.34/10.82 new_esEs8(False, False) 25.34/10.82 new_esEs30(x0, x1, ty_Integer) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.34/10.82 new_ltEs18(x0, x1, ty_@0) 25.34/10.82 new_esEs19(x0, x1, ty_Integer) 25.34/10.82 new_esEs22(x0, x1, ty_Double) 25.34/10.82 new_compare15(x0, x1) 25.34/10.82 new_primMulInt(Neg(x0), Neg(x1)) 25.34/10.82 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_lt11(x0, x1, app(ty_[], x2)) 25.34/10.82 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.34/10.82 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.34/10.82 new_lt12(x0, x1, ty_Bool) 25.34/10.82 new_ltEs12(x0, x1) 25.34/10.82 new_lt12(x0, x1, ty_Float) 25.34/10.82 new_compare13(x0, x1, x2) 25.34/10.82 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.82 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs26(x0, x1, ty_Integer) 25.34/10.82 new_esEs18(x0, x1, ty_@0) 25.34/10.82 new_sr(x0, x1) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.82 new_esEs30(x0, x1, ty_Ordering) 25.34/10.82 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.82 new_compare110(x0, x1, True, x2, x3, x4) 25.34/10.82 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_compare211(x0, x1, False) 25.34/10.82 new_lt20(x0, x1, ty_Int) 25.34/10.82 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs18(x0, x1, ty_Double) 25.34/10.82 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs23(x0, x1, ty_Integer) 25.34/10.82 new_esEs20(x0, x1, ty_@0) 25.34/10.82 new_primPlusNat1(Succ(x0), Succ(x1)) 25.34/10.82 new_esEs28(x0, x1, ty_@0) 25.34/10.82 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_ltEs18(x0, x1, ty_Double) 25.34/10.82 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_ltEs20(x0, x1, ty_Int) 25.34/10.82 new_esEs20(x0, x1, ty_Double) 25.34/10.82 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.82 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.82 new_ltEs18(x0, x1, app(ty_[], x2)) 25.34/10.82 new_lt12(x0, x1, ty_Char) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.82 new_primCmpNat0(Succ(x0), Succ(x1)) 25.34/10.82 new_lt12(x0, x1, ty_Int) 25.34/10.82 new_primCmpNat0(Zero, Zero) 25.34/10.82 new_esEs6(Left(x0), Right(x1), x2, x3) 25.34/10.82 new_esEs6(Right(x0), Left(x1), x2, x3) 25.34/10.82 new_esEs14(Integer(x0), Integer(x1)) 25.34/10.82 new_lt4(x0, x1, x2) 25.34/10.82 new_compare0(:(x0, x1), :(x2, x3), x4) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.34/10.82 25.34/10.82 We have to consider all minimal (P,Q,R)-chains. 25.34/10.82 ---------------------------------------- 25.34/10.82 25.34/10.82 (39) TransformationProof (EQUIVALENT) 25.34/10.82 By rewriting [LPAR04] the rule new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Nothing, False, ba), GT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: 25.34/10.82 25.34/10.82 (new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, GT), h, ba),new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, GT), h, ba)) 25.34/10.82 25.34/10.82 25.34/10.82 ---------------------------------------- 25.34/10.82 25.34/10.82 (40) 25.34/10.82 Obligation: 25.34/10.82 Q DP problem: 25.34/10.82 The TRS P consists of the following rules: 25.34/10.82 25.34/10.82 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM03(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Just(vyw300), new_esEs29(vyw50, vyw300, ba), ba), LT), h, ba) 25.34/10.82 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, bb, bc) -> new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_esEs9(new_compare23(Just(vyw21), Just(vyw16), new_esEs30(vyw21, vyw16, bc), bc), GT), bb, bc) 25.34/10.82 new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw20, Just(vyw21), bb, bc) 25.34/10.82 new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Just(vyw50), h, ba) 25.34/10.82 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw19, Just(vyw21), bb, bc) 25.34/10.82 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) 25.34/10.82 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, GT), h, ba) 25.34/10.82 25.34/10.82 The TRS R consists of the following rules: 25.34/10.82 25.34/10.82 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.34/10.82 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.34/10.82 new_lt10(vyw31000, vyw32000, ee, ef) -> new_esEs9(new_compare18(vyw31000, vyw32000, ee, ef), LT) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(ty_[], caa)) -> new_esEs17(vyw502, vyw3002, caa) 25.34/10.82 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), cgg, cgh) -> new_pePe(new_lt20(vyw31000, vyw32000, cgg), new_asAs(new_esEs28(vyw31000, vyw32000, cgg), new_ltEs20(vyw31001, vyw32001, cgh))) 25.34/10.82 new_pePe(True, vyw101) -> True 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.34/10.82 new_compare23(vyw310, vyw320, True, cgf) -> EQ 25.34/10.82 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.34/10.82 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.34/10.82 new_esEs29(vyw50, vyw300, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vyw50, vyw300, fh, ga, gb) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.34/10.82 new_esEs9(LT, EQ) -> False 25.34/10.82 new_esEs9(EQ, LT) -> False 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(ty_[], da)) -> new_ltEs5(vyw3100, vyw3200, da) 25.34/10.82 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dch)) -> new_compare7(vyw31000, vyw32000, dch) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_lt12(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_lt4(vyw31000, vyw32000, cg) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, bbb), bah) -> new_ltEs11(vyw31000, vyw32000, bbb) 25.34/10.82 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), bdf, bdg, bdh) -> new_pePe(new_lt12(vyw31000, vyw32000, bdf), new_asAs(new_esEs22(vyw31000, vyw32000, bdf), new_pePe(new_lt11(vyw31001, vyw32001, bdg), new_asAs(new_esEs21(vyw31001, vyw32001, bdg), new_ltEs18(vyw31002, vyw32002, bdh))))) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_primCompAux0(vyw31000, vyw32000, vyw102, da) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, da)) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(app(ty_@2, ddh), dea)) -> new_compare18(vyw31000, vyw32000, ddh, dea) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.34/10.82 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.34/10.82 new_lt12(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31000, vyw32000, ee, ef) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_compare25(@0, @0) -> EQ 25.34/10.82 new_ltEs9(False, True) -> True 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, fc) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_compare210(vyw31000, vyw32000, True, ee, ef) -> EQ 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, fc) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(vyw500, vyw3000, bab, bac, bad) 25.34/10.82 new_esEs8(False, True) -> False 25.34/10.82 new_esEs8(True, False) -> False 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_esEs4(vyw31000, vyw32000, bag) 25.34/10.82 new_compare19(vyw31000, vyw32000, True, eh, fa) -> LT 25.34/10.82 new_lt20(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_lt6(vyw31000, vyw32000, dcb, dcc) 25.34/10.82 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.82 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_esEs13(vyw31000, vyw32000, cg) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.34/10.82 new_compare23(Just(vyw3100), Just(vyw3200), False, cgf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, cgf), cgf) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, dah), dba)) -> new_ltEs8(vyw31001, vyw32001, dah, dba) 25.34/10.82 new_not(True) -> False 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_primCompAux00(vyw112, LT) -> LT 25.34/10.82 new_primCmpNat0(Zero, Zero) -> EQ 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.82 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(vyw31000, vyw32000, bge, bgf, bgg) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare27(vyw31000, vyw32000, ddb, ddc, ddd) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], cfb), fc) -> new_esEs17(vyw500, vyw3000, cfb) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw500, vyw3000, dh, ea, eb) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(ty_Ratio, bhc)) -> new_esEs13(vyw502, vyw3002, bhc) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs13(vyw31000, vyw32000, cdb, cdc, cdd) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_@0) -> new_esEs12(vyw21, vyw16) 25.34/10.82 new_ltEs16(GT, EQ) -> False 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.34/10.82 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.82 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, bbf), bbg), bah) -> new_ltEs8(vyw31000, vyw32000, bbf, bbg) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(vyw3100, vyw3200, bdf, bdg, bdh) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.82 new_lt12(vyw31000, vyw32000, app(ty_[], bgh)) -> new_lt18(vyw31000, vyw32000, bgh) 25.34/10.82 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.82 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.34/10.82 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(vyw501, vyw3001, gh, ha, hb) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, fc) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31000, vyw32000, ee, ef) 25.34/10.82 new_primCompAux00(vyw112, GT) -> GT 25.34/10.82 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(vyw500, vyw3000, ccb, ccc, ccd) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs13(vyw31001, vyw32001, dae, daf, dag) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.34/10.82 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.34/10.82 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.34/10.82 new_ltEs16(LT, LT) -> True 25.34/10.82 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw501, vyw3001, cah, cba, cbb) 25.34/10.82 new_esEs30(vyw21, vyw16, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(vyw21, vyw16, chf, chg, chh) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, bah) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.34/10.82 new_compare16(vyw31000, vyw32000, False) -> GT 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.34/10.82 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, fc) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.34/10.82 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.34/10.82 new_compare28(vyw31000, vyw32000, False, bge, bgf, bgg) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.34/10.82 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.34/10.82 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt17(vyw31001, vyw32001, bfe, bff, bfg) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fc) -> new_esEs5(vyw500, vyw3000, ceg, ceh, cfa) 25.34/10.82 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.82 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, bah) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(vyw31001, vyw32001, bfe, bff, bfg) 25.34/10.82 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.34/10.82 new_compare110(vyw31000, vyw32000, False, bge, bgf, bgg) -> GT 25.34/10.82 new_pePe(False, vyw101) -> vyw101 25.34/10.82 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.82 new_ltEs5(vyw3100, vyw3200, da) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, da), GT)) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_ltEs9(True, True) -> True 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_esEs6(vyw31000, vyw32000, eh, fa) 25.34/10.82 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.34/10.82 new_ltEs16(LT, GT) -> True 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_lt11(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw31001, vyw32001, bgc, bgd) 25.34/10.82 new_esEs17([], [], db) -> True 25.34/10.82 new_ltEs16(LT, EQ) -> True 25.34/10.82 new_ltEs16(EQ, LT) -> False 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Float) -> new_esEs11(vyw21, vyw16) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], cdg)) -> new_ltEs5(vyw31000, vyw32000, cdg) 25.34/10.82 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_compare11(vyw31000, vyw32000, False, ee, ef) -> GT 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, bah) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cab)) -> new_esEs4(vyw502, vyw3002, cab) 25.34/10.82 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.34/10.82 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(app(ty_Either, dde), ddf)) -> new_compare12(vyw31000, vyw32000, dde, ddf) 25.34/10.82 new_esEs30(vyw21, vyw16, app(ty_[], daa)) -> new_esEs17(vyw21, vyw16, daa) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(ty_Ratio, de)) -> new_esEs13(vyw500, vyw3000, de) 25.34/10.82 new_ltEs16(GT, LT) -> False 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(vyw500, vyw3000, cb, cc, cd) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(ty_Maybe, hd)) -> new_esEs4(vyw501, vyw3001, hd) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, bah) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw31002, vyw32002, bec, bed, bee) 25.34/10.82 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(ty_[], ec)) -> new_esEs17(vyw500, vyw3000, ec) 25.34/10.82 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.34/10.82 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(app(ty_Either, cac), cad)) -> new_esEs6(vyw501, vyw3001, cac, cad) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_esEs8(False, False) -> True 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, ceb), cec), fc) -> new_esEs6(vyw500, vyw3000, ceb, cec) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.34/10.82 new_ltEs8(Right(vyw31000), Left(vyw32000), bcc, bah) -> False 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.82 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.34/10.82 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Integer) -> new_esEs14(vyw50, vyw300) 25.34/10.82 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, ced), fc) -> new_esEs13(vyw500, vyw3000, ced) 25.34/10.82 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ff, fg) -> new_asAs(new_esEs20(vyw500, vyw3000, ff), new_esEs19(vyw501, vyw3001, fg)) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(vyw502, vyw3002, bhf, bhg, bhh) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.34/10.82 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, fc) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.34/10.82 new_compare18(vyw31000, vyw32000, ee, ef) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.82 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.34/10.82 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, fc) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(ty_Maybe, dda)) -> new_compare13(vyw31000, vyw32000, dda) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, cee), cef), fc) -> new_esEs7(vyw500, vyw3000, cee, cef) 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(ty_[], dcd)) -> new_esEs17(vyw31000, vyw32000, dcd) 25.34/10.82 new_ltEs16(EQ, GT) -> True 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_Either, bda), bdb)) -> new_ltEs8(vyw31000, vyw32000, bda, bdb) 25.34/10.82 new_ltEs16(EQ, EQ) -> True 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bg)) -> new_esEs13(vyw500, vyw3000, bg) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, bcc), bah)) -> new_ltEs8(vyw3100, vyw3200, bcc, bah) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Float) -> new_esEs11(vyw50, vyw300) 25.34/10.82 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(ty_Maybe, baf)) -> new_esEs4(vyw500, vyw3000, baf) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.82 new_esEs29(vyw50, vyw300, app(ty_[], db)) -> new_esEs17(vyw50, vyw300, db) 25.34/10.82 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.34/10.82 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.34/10.82 new_esEs9(LT, LT) -> True 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_lt17(vyw31000, vyw32000, bge, bgf, bgg) -> new_esEs9(new_compare27(vyw31000, vyw32000, bge, bgf, bgg), LT) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, bah) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.82 new_compare23(Just(vyw3100), Nothing, False, cgf) -> GT 25.34/10.82 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, bba), bah) -> new_ltEs6(vyw31000, vyw32000, bba) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, cda)) -> new_ltEs11(vyw31000, vyw32000, cda) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.82 new_compare19(vyw31000, vyw32000, False, eh, fa) -> GT 25.34/10.82 new_lt12(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_lt15(vyw31000, vyw32000, bag) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Double) -> new_esEs15(vyw50, vyw300) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.34/10.82 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), db) -> new_asAs(new_esEs18(vyw500, vyw3000, db), new_esEs17(vyw501, vyw3001, db)) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_esEs4(vyw31001, vyw32001, bfd) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.82 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.82 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.34/10.82 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), fd) -> new_asAs(new_esEs27(vyw500, vyw3000, fd), new_esEs26(vyw501, vyw3001, fd)) 25.34/10.82 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbh), cca)) -> new_esEs7(vyw500, vyw3000, cbh, cca) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Maybe, bce)) -> new_ltEs11(vyw31000, vyw32000, bce) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_esEs13(vyw31001, vyw32001, bfc) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Double) -> new_esEs15(vyw21, vyw16) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs4(vyw500, vyw3000, cf) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, bef), beg)) -> new_ltEs8(vyw31002, vyw32002, bef, beg) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(app(ty_Either, bha), bhb)) -> new_esEs6(vyw502, vyw3002, bha, bhb) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw31001, vyw32001, bfh, bga) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, fc) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.34/10.82 new_compare16(vyw31000, vyw32000, True) -> LT 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.34/10.82 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.34/10.82 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.82 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.82 new_esEs30(vyw21, vyw16, app(ty_Maybe, dab)) -> new_esEs4(vyw21, vyw16, dab) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, dad)) -> new_ltEs11(vyw31001, vyw32001, dad) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cbd)) -> new_esEs4(vyw501, vyw3001, cbd) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], ce)) -> new_esEs17(vyw500, vyw3000, ce) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Int) -> new_esEs16(vyw50, vyw300) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw31000, vyw32000, bge, bgf, bgg) 25.34/10.82 new_lt15(vyw31000, vyw32000, bag) -> new_esEs9(new_compare13(vyw31000, vyw32000, bag), LT) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.82 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, cdh), cea)) -> new_ltEs17(vyw31000, vyw32000, cdh, cea) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(ty_Maybe, ed)) -> new_esEs4(vyw500, vyw3000, ed) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, be), bf)) -> new_esEs6(vyw500, vyw3000, be, bf) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, eg)) -> new_ltEs6(vyw3100, vyw3200, eg) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(ty_Ratio, hg)) -> new_esEs13(vyw500, vyw3000, hg) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cbg)) -> new_esEs13(vyw500, vyw3000, cbg) 25.34/10.82 new_compare0([], :(vyw32000, vyw32001), da) -> LT 25.34/10.82 new_asAs(True, vyw93) -> vyw93 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.34/10.82 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Integer) -> new_esEs14(vyw21, vyw16) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(ty_[], hc)) -> new_esEs17(vyw501, vyw3001, hc) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.34/10.82 new_esEs25(vyw500, vyw3000, app(ty_[], cce)) -> new_esEs17(vyw500, vyw3000, cce) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, fc) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_lt4(vyw31000, vyw32000, dbe) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_lt10(vyw31000, vyw32000, dce, dcf) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs6(Left(vyw500), Right(vyw3000), fb, fc) -> False 25.34/10.82 new_esEs6(Right(vyw500), Left(vyw3000), fb, fc) -> False 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, bah) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(ty_Ratio, ge)) -> new_esEs13(vyw501, vyw3001, ge) 25.34/10.82 new_lt11(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_lt15(vyw31001, vyw32001, bfd) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, bbc), bbd), bbe), bah) -> new_ltEs13(vyw31000, vyw32000, bbc, bbd, bbe) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(app(ty_@2, df), dg)) -> new_esEs7(vyw500, vyw3000, df, dg) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(app(ty_@2, caf), cag)) -> new_esEs7(vyw501, vyw3001, caf, cag) 25.34/10.82 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.34/10.82 new_esEs30(vyw21, vyw16, app(app(ty_@2, chd), che)) -> new_esEs7(vyw21, vyw16, chd, che) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_primCompAux00(vyw112, EQ) -> vyw112 25.34/10.82 new_compare0([], [], da) -> EQ 25.34/10.82 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.34/10.82 new_ltEs16(GT, GT) -> True 25.34/10.82 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.34/10.82 new_ltEs9(False, False) -> True 25.34/10.82 new_primMulNat0(Zero, Zero) -> Zero 25.34/10.82 new_compare10(vyw31000, vyw32000, False) -> GT 25.34/10.82 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfc), fc) -> new_esEs4(vyw500, vyw3000, cfc) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, beb)) -> new_ltEs11(vyw31002, vyw32002, beb) 25.34/10.82 new_compare211(vyw31000, vyw32000, True) -> EQ 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_esEs4(vyw31000, vyw32000, dbf) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw502, vyw3002, bhd, bhe) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], bbh), bah) -> new_ltEs5(vyw31000, vyw32000, bbh) 25.34/10.82 new_ltEs11(Nothing, Just(vyw32000), ccg) -> True 25.34/10.82 new_compare28(vyw31000, vyw32000, True, bge, bgf, bgg) -> EQ 25.34/10.82 new_esEs4(Nothing, Nothing, bd) -> True 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dac)) -> new_ltEs6(vyw31001, vyw32001, dac) 25.34/10.82 new_esEs4(Nothing, Just(vyw3000), bd) -> False 25.34/10.82 new_esEs4(Just(vyw500), Nothing, bd) -> False 25.34/10.82 new_esEs20(vyw500, vyw3000, app(ty_[], bae)) -> new_esEs17(vyw500, vyw3000, bae) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_[], bdc)) -> new_ltEs5(vyw31000, vyw32000, bdc) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, bah) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.82 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fh, ga, gb) -> new_asAs(new_esEs25(vyw500, vyw3000, fh), new_asAs(new_esEs24(vyw501, vyw3001, ga), new_esEs23(vyw502, vyw3002, gb))) 25.34/10.82 new_esEs30(vyw21, vyw16, app(ty_Ratio, chc)) -> new_esEs13(vyw21, vyw16, chc) 25.34/10.82 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.82 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(ty_Ratio, cae)) -> new_esEs13(vyw501, vyw3001, cae) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(app(ty_Either, gc), gd)) -> new_esEs6(vyw501, vyw3001, gc, gd) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, ccg)) -> new_ltEs11(vyw3100, vyw3200, ccg) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.34/10.82 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vyw500, vyw3000, cbe, cbf) 25.34/10.82 new_ltEs9(True, False) -> False 25.34/10.82 new_esEs9(EQ, EQ) -> True 25.34/10.82 new_lt12(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_lt6(vyw31000, vyw32000, eh, fa) 25.34/10.82 new_lt11(vyw31001, vyw32001, app(ty_[], bgb)) -> new_lt18(vyw31001, vyw32001, bgb) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(ty_[], bgb)) -> new_esEs17(vyw31001, vyw32001, bgb) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.34/10.82 new_esEs29(vyw50, vyw300, app(ty_Ratio, fd)) -> new_esEs13(vyw50, vyw300, fd) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.82 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.34/10.82 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.34/10.82 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.34/10.82 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vyw31000, vyw32000, bcf, bcg, bch) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, cde), cdf)) -> new_ltEs8(vyw31000, vyw32000, cde, cdf) 25.34/10.82 new_compare24(vyw31000, vyw32000, True) -> EQ 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_esEs7(vyw31000, vyw32000, dce, dcf) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(app(ty_Either, he), hf)) -> new_esEs6(vyw500, vyw3000, he, hf) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.82 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.34/10.82 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.34/10.82 new_compare30(vyw31000, vyw32000, app(ty_[], ddg)) -> new_compare0(vyw31000, vyw32000, ddg) 25.34/10.82 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.34/10.82 new_compare23(Nothing, Just(vyw3200), False, cgf) -> LT 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.34/10.82 new_esEs29(vyw50, vyw300, app(ty_Maybe, bd)) -> new_esEs4(vyw50, vyw300, bd) 25.34/10.82 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.34/10.82 new_compare111(vyw86, vyw87, False, dcg) -> GT 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.34/10.82 new_compare110(vyw31000, vyw32000, True, bge, bgf, bgg) -> LT 25.34/10.82 new_ltEs6(vyw3100, vyw3200, eg) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, eg), GT)) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, bea)) -> new_ltEs6(vyw31002, vyw32002, bea) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw501, vyw3001, gf, gg) 25.34/10.82 new_compare23(Nothing, Nothing, False, cgf) -> LT 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, bca), bcb), bah) -> new_ltEs17(vyw31000, vyw32000, bca, bcb) 25.34/10.82 new_ltEs8(Left(vyw31000), Right(vyw32000), bcc, bah) -> True 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cch)) -> new_ltEs6(vyw31000, vyw32000, cch) 25.34/10.82 new_not(False) -> True 25.34/10.82 new_lt11(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_lt4(vyw31001, vyw32001, bfc) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_esEs13(vyw31000, vyw32000, dbe) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(ty_[], cbc)) -> new_esEs17(vyw501, vyw3001, cbc) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, dbc), dbd)) -> new_ltEs17(vyw31001, vyw32001, dbc, dbd) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.34/10.82 new_esEs9(GT, GT) -> True 25.34/10.82 new_compare0(:(vyw31000, vyw31001), [], da) -> GT 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.82 new_esEs29(vyw50, vyw300, app(app(ty_Either, fb), fc)) -> new_esEs6(vyw50, vyw300, fb, fc) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_compare27(vyw31000, vyw32000, bge, bgf, bgg) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs5(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(vyw3100, vyw3200, cgg, cgh) 25.34/10.82 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.34/10.82 new_esEs29(vyw50, vyw300, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw50, vyw300, ff, fg) 25.34/10.82 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, bah) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.82 new_esEs9(EQ, GT) -> False 25.34/10.82 new_esEs9(GT, EQ) -> False 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(ty_[], beh)) -> new_ltEs5(vyw31002, vyw32002, beh) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.34/10.82 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.34/10.82 new_compare11(vyw31000, vyw32000, True, ee, ef) -> LT 25.34/10.82 new_esEs30(vyw21, vyw16, app(app(ty_Either, cha), chb)) -> new_esEs6(vyw21, vyw16, cha, chb) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.82 new_compare12(vyw31000, vyw32000, eh, fa) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_lt15(vyw31000, vyw32000, dbf) 25.34/10.82 new_esEs8(True, True) -> True 25.34/10.82 new_lt11(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_lt6(vyw31001, vyw32001, bfh, bga) 25.34/10.82 new_compare29(vyw31000, vyw32000, False, eh, fa) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.82 new_compare10(vyw31000, vyw32000, True) -> LT 25.34/10.82 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.34/10.82 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.34/10.82 new_primPlusNat1(Zero, Zero) -> Zero 25.34/10.82 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), da) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, da), da) 25.34/10.82 new_compare13(vyw31000, vyw32000, bag) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, bag), bag) 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(ty_[], bgh)) -> new_esEs17(vyw31000, vyw32000, bgh) 25.34/10.82 new_compare111(vyw86, vyw87, True, dcg) -> LT 25.34/10.82 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccf)) -> new_esEs4(vyw500, vyw3000, ccf) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.34/10.82 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.34/10.82 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(ty_[], dcd)) -> new_lt18(vyw31000, vyw32000, dcd) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(app(ty_Either, dc), dd)) -> new_esEs6(vyw500, vyw3000, dc, dd) 25.34/10.82 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.34/10.82 new_lt18(vyw31000, vyw32000, bgh) -> new_esEs9(new_compare0(vyw31000, vyw32000, bgh), LT) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.34/10.82 new_esEs12(@0, @0) -> True 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.82 new_compare29(vyw31000, vyw32000, True, eh, fa) -> EQ 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.34/10.82 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Char) -> new_esEs10(vyw21, vyw16) 25.34/10.82 new_lt6(vyw31000, vyw32000, eh, fa) -> new_esEs9(new_compare12(vyw31000, vyw32000, eh, fa), LT) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw31001, vyw32001, bgc, bgd) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Int) -> new_esEs16(vyw21, vyw16) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_ltEs11(Just(vyw31000), Nothing, ccg) -> False 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(vyw31002, vyw32002, bfa, bfb) 25.34/10.82 new_ltEs11(Nothing, Nothing, ccg) -> True 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, bh), ca)) -> new_esEs7(vyw500, vyw3000, bh, ca) 25.34/10.82 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.34/10.82 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_esEs6(vyw31000, vyw32000, dcb, dcc) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.82 new_primEqNat0(Zero, Zero) -> True 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.34/10.82 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Bool) -> new_esEs8(vyw21, vyw16) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(ty_[], dbb)) -> new_ltEs5(vyw31001, vyw32001, dbb) 25.34/10.82 new_compare210(vyw31000, vyw32000, False, ee, ef) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.82 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.34/10.82 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.34/10.82 new_esEs9(LT, GT) -> False 25.34/10.82 new_esEs9(GT, LT) -> False 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Ratio, bcd)) -> new_ltEs6(vyw31000, vyw32000, bcd) 25.34/10.82 new_esEs17(:(vyw500, vyw501), [], db) -> False 25.34/10.82 new_esEs17([], :(vyw3000, vyw3001), db) -> False 25.34/10.82 new_asAs(False, vyw93) -> False 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Ordering) -> new_esEs9(vyw50, vyw300) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_lt17(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.82 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Bool) -> new_esEs8(vyw50, vyw300) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Ordering) -> new_esEs9(vyw21, vyw16) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_@2, bdd), bde)) -> new_ltEs17(vyw31000, vyw32000, bdd, bde) 25.34/10.82 new_lt4(vyw31000, vyw32000, cg) -> new_esEs9(new_compare7(vyw31000, vyw32000, cg), LT) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Char) -> new_esEs10(vyw50, vyw300) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw500, vyw3000, hh, baa) 25.34/10.82 25.34/10.82 The set Q consists of the following terms: 25.34/10.82 25.34/10.82 new_lt12(x0, x1, ty_Integer) 25.34/10.82 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.34/10.82 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.82 new_lt19(x0, x1) 25.34/10.82 new_esEs28(x0, x1, ty_Ordering) 25.34/10.82 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs29(x0, x1, ty_Integer) 25.34/10.82 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_ltEs20(x0, x1, ty_@0) 25.34/10.82 new_lt20(x0, x1, ty_Float) 25.34/10.82 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_compare0([], [], x0) 25.34/10.82 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs19(x0, x1, ty_@0) 25.34/10.82 new_esEs30(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs16(x0, x1) 25.34/10.82 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs28(x0, x1, ty_Double) 25.34/10.82 new_esEs23(x0, x1, ty_Int) 25.34/10.82 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs22(x0, x1, ty_Int) 25.34/10.82 new_esEs30(x0, x1, ty_@0) 25.34/10.82 new_ltEs20(x0, x1, ty_Bool) 25.34/10.82 new_primPlusNat1(Zero, Zero) 25.34/10.82 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.34/10.82 new_compare16(x0, x1, False) 25.34/10.82 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs22(x0, x1, ty_Char) 25.34/10.82 new_esEs23(x0, x1, ty_Ordering) 25.34/10.82 new_esEs19(x0, x1, ty_Bool) 25.34/10.82 new_primMulNat0(Zero, Succ(x0)) 25.34/10.82 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_compare30(x0, x1, ty_Ordering) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.82 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_compare30(x0, x1, ty_Int) 25.34/10.82 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.82 new_primMulNat0(Succ(x0), Succ(x1)) 25.34/10.82 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_primEqInt(Pos(Zero), Pos(Zero)) 25.34/10.82 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_primCompAux00(x0, GT) 25.34/10.82 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs23(x0, x1, ty_Char) 25.34/10.82 new_esEs20(x0, x1, ty_Integer) 25.34/10.82 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.82 new_esEs29(x0, x1, ty_Bool) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.82 new_esEs4(Nothing, Nothing, x0) 25.34/10.82 new_ltEs6(x0, x1, x2) 25.34/10.82 new_lt17(x0, x1, x2, x3, x4) 25.34/10.82 new_esEs24(x0, x1, app(ty_[], x2)) 25.34/10.82 new_primEqInt(Neg(Zero), Neg(Zero)) 25.34/10.82 new_pePe(True, x0) 25.34/10.82 new_ltEs18(x0, x1, ty_Float) 25.34/10.82 new_compare30(x0, x1, ty_Char) 25.34/10.82 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_lt13(x0, x1) 25.34/10.82 new_esEs23(x0, x1, ty_Double) 25.34/10.82 new_compare29(x0, x1, False, x2, x3) 25.34/10.82 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs21(x0, x1, ty_@0) 25.34/10.82 new_ltEs16(GT, EQ) 25.34/10.82 new_ltEs16(EQ, GT) 25.34/10.82 new_primCmpNat0(Succ(x0), Zero) 25.34/10.82 new_compare30(x0, x1, ty_Double) 25.34/10.82 new_lt5(x0, x1) 25.34/10.82 new_compare25(@0, @0) 25.34/10.82 new_ltEs9(True, True) 25.34/10.82 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.82 new_esEs21(x0, x1, ty_Int) 25.34/10.82 new_esEs19(x0, x1, ty_Char) 25.34/10.82 new_esEs9(LT, LT) 25.34/10.82 new_ltEs16(LT, LT) 25.34/10.82 new_esEs21(x0, x1, ty_Integer) 25.34/10.82 new_esEs4(Just(x0), Nothing, x1) 25.34/10.82 new_esEs30(x0, x1, ty_Int) 25.34/10.82 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.82 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.82 new_esEs24(x0, x1, ty_Int) 25.34/10.82 new_esEs19(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs9(EQ, GT) 25.34/10.82 new_esEs9(GT, EQ) 25.34/10.82 new_lt11(x0, x1, ty_Integer) 25.34/10.82 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.34/10.82 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.34/10.82 new_esEs18(x0, x1, ty_Ordering) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.34/10.82 new_esEs18(x0, x1, ty_Integer) 25.34/10.82 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs8(False, True) 25.34/10.82 new_esEs8(True, False) 25.34/10.82 new_esEs29(x0, x1, ty_Float) 25.34/10.82 new_lt11(x0, x1, ty_Bool) 25.34/10.82 new_ltEs20(x0, x1, ty_Integer) 25.34/10.82 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs21(x0, x1, ty_Char) 25.34/10.82 new_lt12(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs8(True, True) 25.34/10.82 new_lt7(x0, x1) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.82 new_lt6(x0, x1, x2, x3) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.82 new_esEs21(x0, x1, ty_Bool) 25.34/10.82 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_primEqInt(Pos(Zero), Neg(Zero)) 25.34/10.82 new_primEqInt(Neg(Zero), Pos(Zero)) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.82 new_compare23(Nothing, Just(x0), False, x1) 25.34/10.82 new_compare210(x0, x1, False, x2, x3) 25.34/10.82 new_compare11(x0, x1, True, x2, x3) 25.34/10.82 new_esEs24(x0, x1, ty_Double) 25.34/10.82 new_esEs30(x0, x1, ty_Bool) 25.34/10.82 new_ltEs19(x0, x1, ty_Double) 25.34/10.82 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.34/10.82 new_esEs22(x0, x1, ty_Ordering) 25.34/10.82 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.34/10.82 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.34/10.82 new_esEs28(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs30(x0, x1, ty_Char) 25.34/10.82 new_ltEs20(x0, x1, ty_Ordering) 25.34/10.82 new_esEs29(x0, x1, ty_@0) 25.34/10.82 new_esEs24(x0, x1, ty_Char) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.34/10.82 new_esEs19(x0, x1, ty_Int) 25.34/10.82 new_compare8(Integer(x0), Integer(x1)) 25.34/10.82 new_esEs30(x0, x1, ty_Double) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.34/10.82 new_compare19(x0, x1, False, x2, x3) 25.34/10.82 new_compare23(Just(x0), Nothing, False, x1) 25.34/10.82 new_primPlusNat0(Zero, x0) 25.34/10.82 new_esEs27(x0, x1, ty_Int) 25.34/10.82 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs19(x0, x1, ty_Double) 25.34/10.82 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs22(x0, x1, ty_Integer) 25.34/10.82 new_esEs28(x0, x1, ty_Bool) 25.34/10.82 new_ltEs19(x0, x1, ty_Int) 25.34/10.82 new_ltEs20(x0, x1, ty_Double) 25.34/10.82 new_esEs25(x0, x1, ty_Char) 25.34/10.82 new_ltEs5(x0, x1, x2) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.82 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.82 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.82 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs29(x0, x1, ty_Char) 25.34/10.82 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_compare30(x0, x1, ty_@0) 25.34/10.82 new_lt20(x0, x1, ty_@0) 25.34/10.82 new_esEs24(x0, x1, ty_@0) 25.34/10.82 new_esEs19(x0, x1, ty_Float) 25.34/10.82 new_ltEs16(GT, GT) 25.34/10.82 new_esEs23(x0, x1, ty_@0) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.34/10.82 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.82 new_esEs21(x0, x1, ty_Double) 25.34/10.82 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_compare110(x0, x1, False, x2, x3, x4) 25.34/10.82 new_compare23(x0, x1, True, x2) 25.34/10.82 new_lt20(x0, x1, app(ty_[], x2)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.82 new_compare24(x0, x1, False) 25.34/10.82 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_ltEs19(x0, x1, ty_Float) 25.34/10.82 new_esEs10(Char(x0), Char(x1)) 25.34/10.82 new_compare210(x0, x1, True, x2, x3) 25.34/10.82 new_ltEs16(LT, EQ) 25.34/10.82 new_ltEs16(EQ, LT) 25.34/10.82 new_esEs30(x0, x1, ty_Float) 25.34/10.82 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.82 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.82 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.82 new_ltEs11(Just(x0), Nothing, x1) 25.34/10.82 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_compare6(Char(x0), Char(x1)) 25.34/10.82 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.82 new_asAs(False, x0) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.34/10.82 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs25(x0, x1, ty_Int) 25.34/10.82 new_esEs29(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_primEqNat0(Zero, Succ(x0)) 25.34/10.82 new_esEs21(x0, x1, ty_Ordering) 25.34/10.82 new_ltEs7(x0, x1) 25.34/10.82 new_compare211(x0, x1, True) 25.34/10.82 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs22(x0, x1, ty_Bool) 25.34/10.82 new_lt11(x0, x1, ty_Char) 25.34/10.82 new_esEs17([], :(x0, x1), x2) 25.34/10.82 new_ltEs18(x0, x1, ty_Integer) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.82 new_esEs22(x0, x1, app(ty_[], x2)) 25.34/10.82 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.82 new_ltEs9(False, True) 25.34/10.82 new_ltEs9(True, False) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.34/10.82 new_esEs17(:(x0, x1), [], x2) 25.34/10.82 new_ltEs14(x0, x1) 25.34/10.82 new_esEs24(x0, x1, ty_Integer) 25.34/10.82 new_primEqNat0(Succ(x0), Succ(x1)) 25.34/10.82 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.34/10.82 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.34/10.82 new_ltEs15(x0, x1) 25.34/10.82 new_lt12(x0, x1, ty_@0) 25.34/10.82 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_lt11(x0, x1, ty_Int) 25.34/10.82 new_compare23(Just(x0), Just(x1), False, x2) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.34/10.82 new_esEs18(x0, x1, ty_Bool) 25.34/10.82 new_esEs25(x0, x1, ty_Float) 25.34/10.82 new_esEs20(x0, x1, ty_Float) 25.34/10.82 new_esEs18(x0, x1, ty_Float) 25.34/10.82 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs20(x0, x1, ty_Bool) 25.34/10.82 new_lt10(x0, x1, x2, x3) 25.34/10.82 new_esEs24(x0, x1, ty_Ordering) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.34/10.82 new_compare0(:(x0, x1), [], x2) 25.34/10.82 new_compare18(x0, x1, x2, x3) 25.34/10.82 new_esEs23(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs29(x0, x1, ty_Ordering) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.34/10.82 new_compare23(Nothing, Nothing, False, x0) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.82 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs18(x0, x1, ty_Char) 25.34/10.82 new_compare28(x0, x1, True, x2, x3, x4) 25.34/10.82 new_primPlusNat1(Succ(x0), Zero) 25.34/10.82 new_ltEs18(x0, x1, ty_Bool) 25.34/10.82 new_lt9(x0, x1) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.34/10.82 new_esEs20(x0, x1, ty_Int) 25.34/10.82 new_pePe(False, x0) 25.34/10.82 new_esEs28(x0, x1, ty_Char) 25.34/10.82 new_lt11(x0, x1, ty_Float) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.34/10.82 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.82 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.34/10.82 new_lt12(x0, x1, ty_Double) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.34/10.82 new_compare10(x0, x1, False) 25.34/10.82 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs18(x0, x1, ty_Int) 25.34/10.82 new_esEs20(x0, x1, ty_Char) 25.34/10.82 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs11(Nothing, Just(x0), x1) 25.34/10.82 new_esEs22(x0, x1, ty_Float) 25.34/10.82 new_compare26(x0, x1) 25.34/10.82 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.82 new_esEs28(x0, x1, ty_Int) 25.34/10.82 new_esEs4(Nothing, Just(x0), x1) 25.34/10.82 new_esEs25(x0, x1, ty_Integer) 25.34/10.82 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.34/10.82 new_esEs17([], [], x0) 25.34/10.82 new_esEs9(EQ, EQ) 25.34/10.82 new_lt20(x0, x1, ty_Double) 25.34/10.82 new_ltEs16(EQ, EQ) 25.34/10.82 new_primCompAux00(x0, LT) 25.34/10.82 new_esEs27(x0, x1, ty_Integer) 25.34/10.82 new_compare30(x0, x1, ty_Float) 25.34/10.82 new_ltEs18(x0, x1, ty_Char) 25.34/10.82 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_@0) 25.34/10.82 new_primEqNat0(Succ(x0), Zero) 25.34/10.82 new_primMulNat0(Zero, Zero) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.34/10.82 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_lt20(x0, x1, ty_Ordering) 25.34/10.82 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_lt18(x0, x1, x2) 25.34/10.82 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.34/10.82 new_ltEs20(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.34/10.82 new_esEs28(x0, x1, ty_Float) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.34/10.82 new_ltEs18(x0, x1, ty_Int) 25.34/10.82 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_lt11(x0, x1, ty_Double) 25.34/10.82 new_esEs24(x0, x1, ty_Float) 25.34/10.82 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_primMulInt(Pos(x0), Pos(x1)) 25.34/10.82 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_ltEs18(x0, x1, ty_Ordering) 25.34/10.82 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_ltEs19(x0, x1, ty_@0) 25.34/10.82 new_compare12(x0, x1, x2, x3) 25.34/10.82 new_compare11(x0, x1, False, x2, x3) 25.34/10.82 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.34/10.82 new_ltEs11(Nothing, Nothing, x0) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.82 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.82 new_lt16(x0, x1) 25.34/10.82 new_primCmpNat0(Zero, Succ(x0)) 25.34/10.82 new_ltEs19(x0, x1, app(ty_[], x2)) 25.34/10.82 new_ltEs19(x0, x1, ty_Integer) 25.34/10.82 new_lt8(x0, x1) 25.34/10.82 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.34/10.82 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.34/10.82 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.34/10.82 new_compare30(x0, x1, app(ty_[], x2)) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.82 new_esEs21(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.82 new_sr0(Integer(x0), Integer(x1)) 25.34/10.82 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.34/10.82 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.82 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs20(x0, x1, ty_Ordering) 25.34/10.82 new_not(True) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Int) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.82 new_compare29(x0, x1, True, x2, x3) 25.34/10.82 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.82 new_primPlusNat1(Zero, Succ(x0)) 25.34/10.82 new_compare0([], :(x0, x1), x2) 25.34/10.82 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_esEs29(x0, x1, ty_Double) 25.34/10.82 new_lt11(x0, x1, ty_Ordering) 25.34/10.82 new_esEs25(x0, x1, ty_Bool) 25.34/10.82 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.34/10.82 new_primMulInt(Pos(x0), Neg(x1)) 25.34/10.82 new_primMulInt(Neg(x0), Pos(x1)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.34/10.82 new_primCompAux00(x0, EQ) 25.34/10.82 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.34/10.82 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.82 new_lt12(x0, x1, ty_Ordering) 25.34/10.82 new_esEs28(x0, x1, ty_Integer) 25.34/10.82 new_lt14(x0, x1) 25.34/10.82 new_ltEs19(x0, x1, ty_Char) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.82 new_esEs24(x0, x1, ty_Bool) 25.34/10.82 new_esEs20(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs9(LT, EQ) 25.34/10.82 new_esEs9(EQ, LT) 25.34/10.82 new_compare24(x0, x1, True) 25.34/10.82 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Double) 25.34/10.82 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.34/10.82 new_esEs9(GT, GT) 25.34/10.82 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs16(LT, GT) 25.34/10.82 new_ltEs16(GT, LT) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.34/10.82 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.34/10.82 new_ltEs10(x0, x1) 25.34/10.82 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.82 new_compare30(x0, x1, ty_Integer) 25.34/10.82 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_compare27(x0, x1, x2, x3, x4) 25.34/10.82 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Char) 25.34/10.82 new_esEs23(x0, x1, ty_Float) 25.34/10.82 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_asAs(True, x0) 25.34/10.82 new_primMulNat0(Succ(x0), Zero) 25.34/10.82 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.34/10.82 new_compare111(x0, x1, True, x2) 25.34/10.82 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.34/10.82 new_ltEs19(x0, x1, ty_Bool) 25.34/10.82 new_esEs29(x0, x1, ty_Int) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.82 new_esEs9(LT, GT) 25.34/10.82 new_esEs9(GT, LT) 25.34/10.82 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.34/10.82 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.82 new_compare30(x0, x1, ty_Bool) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.82 new_lt20(x0, x1, ty_Bool) 25.34/10.82 new_esEs23(x0, x1, ty_Bool) 25.34/10.82 new_esEs19(x0, x1, ty_Ordering) 25.34/10.82 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_lt15(x0, x1, x2) 25.34/10.82 new_esEs25(x0, x1, app(ty_[], x2)) 25.34/10.82 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs20(x0, x1, ty_Float) 25.34/10.82 new_esEs12(@0, @0) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.82 new_compare9(x0, x1) 25.34/10.82 new_lt11(x0, x1, ty_@0) 25.34/10.82 new_compare16(x0, x1, True) 25.34/10.82 new_esEs4(Just(x0), Just(x1), ty_Float) 25.34/10.82 new_primPlusNat0(Succ(x0), x1) 25.34/10.82 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.34/10.82 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.34/10.82 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_primCompAux0(x0, x1, x2, x3) 25.34/10.82 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs18(x0, x1, app(ty_[], x2)) 25.34/10.82 new_compare28(x0, x1, False, x2, x3, x4) 25.34/10.82 new_esEs25(x0, x1, ty_Ordering) 25.34/10.82 new_compare10(x0, x1, True) 25.34/10.82 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.82 new_esEs21(x0, x1, ty_Float) 25.34/10.82 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.34/10.82 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.34/10.82 new_ltEs19(x0, x1, ty_Ordering) 25.34/10.82 new_compare19(x0, x1, True, x2, x3) 25.34/10.82 new_esEs26(x0, x1, ty_Int) 25.34/10.82 new_esEs25(x0, x1, ty_Double) 25.34/10.82 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.34/10.82 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_compare111(x0, x1, False, x2) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.34/10.82 new_lt20(x0, x1, ty_Integer) 25.34/10.82 new_ltEs4(x0, x1) 25.34/10.82 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.82 new_primEqNat0(Zero, Zero) 25.34/10.82 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.82 new_lt20(x0, x1, ty_Char) 25.34/10.82 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.82 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.82 new_ltEs9(False, False) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.82 new_not(False) 25.34/10.82 new_esEs25(x0, x1, ty_@0) 25.34/10.82 new_esEs22(x0, x1, ty_@0) 25.34/10.82 new_ltEs20(x0, x1, ty_Char) 25.34/10.82 new_esEs8(False, False) 25.34/10.82 new_esEs30(x0, x1, ty_Integer) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.34/10.82 new_ltEs18(x0, x1, ty_@0) 25.34/10.82 new_esEs19(x0, x1, ty_Integer) 25.34/10.82 new_esEs22(x0, x1, ty_Double) 25.34/10.82 new_compare15(x0, x1) 25.34/10.82 new_primMulInt(Neg(x0), Neg(x1)) 25.34/10.82 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_lt11(x0, x1, app(ty_[], x2)) 25.34/10.82 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.34/10.82 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.34/10.82 new_lt12(x0, x1, ty_Bool) 25.34/10.82 new_ltEs12(x0, x1) 25.34/10.82 new_lt12(x0, x1, ty_Float) 25.34/10.82 new_compare13(x0, x1, x2) 25.34/10.82 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.82 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_esEs26(x0, x1, ty_Integer) 25.34/10.82 new_esEs18(x0, x1, ty_@0) 25.34/10.82 new_sr(x0, x1) 25.34/10.82 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.82 new_esEs30(x0, x1, ty_Ordering) 25.34/10.82 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.82 new_compare110(x0, x1, True, x2, x3, x4) 25.34/10.82 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_compare211(x0, x1, False) 25.34/10.82 new_lt20(x0, x1, ty_Int) 25.34/10.82 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs18(x0, x1, ty_Double) 25.34/10.82 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs23(x0, x1, ty_Integer) 25.34/10.82 new_esEs20(x0, x1, ty_@0) 25.34/10.82 new_primPlusNat1(Succ(x0), Succ(x1)) 25.34/10.82 new_esEs28(x0, x1, ty_@0) 25.34/10.82 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.82 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.82 new_ltEs18(x0, x1, ty_Double) 25.34/10.82 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.82 new_ltEs20(x0, x1, ty_Int) 25.34/10.82 new_esEs20(x0, x1, ty_Double) 25.34/10.82 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.34/10.82 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.82 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.82 new_ltEs18(x0, x1, app(ty_[], x2)) 25.34/10.82 new_lt12(x0, x1, ty_Char) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.82 new_primCmpNat0(Succ(x0), Succ(x1)) 25.34/10.82 new_lt12(x0, x1, ty_Int) 25.34/10.82 new_primCmpNat0(Zero, Zero) 25.34/10.82 new_esEs6(Left(x0), Right(x1), x2, x3) 25.34/10.82 new_esEs6(Right(x0), Left(x1), x2, x3) 25.34/10.82 new_esEs14(Integer(x0), Integer(x1)) 25.34/10.82 new_lt4(x0, x1, x2) 25.34/10.82 new_compare0(:(x0, x1), :(x2, x3), x4) 25.34/10.82 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.34/10.82 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.34/10.82 25.34/10.82 We have to consider all minimal (P,Q,R)-chains. 25.34/10.82 ---------------------------------------- 25.34/10.82 25.34/10.82 (41) TransformationProof (EQUIVALENT) 25.34/10.82 By rewriting [LPAR04] the rule new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(GT, GT), h, ba) at position [6] we obtained the following new rules [LPAR04]: 25.34/10.82 25.34/10.82 (new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba),new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba)) 25.34/10.82 25.34/10.82 25.34/10.82 ---------------------------------------- 25.34/10.82 25.34/10.82 (42) 25.34/10.82 Obligation: 25.34/10.82 Q DP problem: 25.34/10.82 The TRS P consists of the following rules: 25.34/10.82 25.34/10.82 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM03(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Just(vyw300), new_esEs29(vyw50, vyw300, ba), ba), LT), h, ba) 25.34/10.82 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, bb, bc) -> new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_esEs9(new_compare23(Just(vyw21), Just(vyw16), new_esEs30(vyw21, vyw16, bc), bc), GT), bb, bc) 25.34/10.82 new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw20, Just(vyw21), bb, bc) 25.34/10.82 new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Just(vyw50), h, ba) 25.34/10.82 new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw19, Just(vyw21), bb, bc) 25.34/10.82 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) 25.34/10.82 new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) 25.34/10.82 25.34/10.82 The TRS R consists of the following rules: 25.34/10.82 25.34/10.82 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.34/10.82 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.34/10.82 new_lt10(vyw31000, vyw32000, ee, ef) -> new_esEs9(new_compare18(vyw31000, vyw32000, ee, ef), LT) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(ty_[], caa)) -> new_esEs17(vyw502, vyw3002, caa) 25.34/10.82 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), cgg, cgh) -> new_pePe(new_lt20(vyw31000, vyw32000, cgg), new_asAs(new_esEs28(vyw31000, vyw32000, cgg), new_ltEs20(vyw31001, vyw32001, cgh))) 25.34/10.82 new_pePe(True, vyw101) -> True 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.34/10.82 new_compare23(vyw310, vyw320, True, cgf) -> EQ 25.34/10.82 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.34/10.82 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.34/10.82 new_esEs29(vyw50, vyw300, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vyw50, vyw300, fh, ga, gb) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.34/10.82 new_esEs9(LT, EQ) -> False 25.34/10.82 new_esEs9(EQ, LT) -> False 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(ty_[], da)) -> new_ltEs5(vyw3100, vyw3200, da) 25.34/10.82 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dch)) -> new_compare7(vyw31000, vyw32000, dch) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_lt12(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_lt4(vyw31000, vyw32000, cg) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, bbb), bah) -> new_ltEs11(vyw31000, vyw32000, bbb) 25.34/10.82 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), bdf, bdg, bdh) -> new_pePe(new_lt12(vyw31000, vyw32000, bdf), new_asAs(new_esEs22(vyw31000, vyw32000, bdf), new_pePe(new_lt11(vyw31001, vyw32001, bdg), new_asAs(new_esEs21(vyw31001, vyw32001, bdg), new_ltEs18(vyw31002, vyw32002, bdh))))) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_primCompAux0(vyw31000, vyw32000, vyw102, da) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, da)) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(app(ty_@2, ddh), dea)) -> new_compare18(vyw31000, vyw32000, ddh, dea) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.34/10.82 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.34/10.82 new_lt12(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31000, vyw32000, ee, ef) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_compare25(@0, @0) -> EQ 25.34/10.82 new_ltEs9(False, True) -> True 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, fc) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_compare210(vyw31000, vyw32000, True, ee, ef) -> EQ 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, fc) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(vyw500, vyw3000, bab, bac, bad) 25.34/10.82 new_esEs8(False, True) -> False 25.34/10.82 new_esEs8(True, False) -> False 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_esEs4(vyw31000, vyw32000, bag) 25.34/10.82 new_compare19(vyw31000, vyw32000, True, eh, fa) -> LT 25.34/10.82 new_lt20(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_lt6(vyw31000, vyw32000, dcb, dcc) 25.34/10.82 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.82 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_esEs13(vyw31000, vyw32000, cg) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.34/10.82 new_compare23(Just(vyw3100), Just(vyw3200), False, cgf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, cgf), cgf) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, dah), dba)) -> new_ltEs8(vyw31001, vyw32001, dah, dba) 25.34/10.82 new_not(True) -> False 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_primCompAux00(vyw112, LT) -> LT 25.34/10.82 new_primCmpNat0(Zero, Zero) -> EQ 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.82 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(vyw31000, vyw32000, bge, bgf, bgg) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare27(vyw31000, vyw32000, ddb, ddc, ddd) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], cfb), fc) -> new_esEs17(vyw500, vyw3000, cfb) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw500, vyw3000, dh, ea, eb) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(ty_Ratio, bhc)) -> new_esEs13(vyw502, vyw3002, bhc) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs13(vyw31000, vyw32000, cdb, cdc, cdd) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_@0) -> new_esEs12(vyw21, vyw16) 25.34/10.82 new_ltEs16(GT, EQ) -> False 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.34/10.82 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.82 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, bbf), bbg), bah) -> new_ltEs8(vyw31000, vyw32000, bbf, bbg) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(vyw3100, vyw3200, bdf, bdg, bdh) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.82 new_lt12(vyw31000, vyw32000, app(ty_[], bgh)) -> new_lt18(vyw31000, vyw32000, bgh) 25.34/10.82 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.82 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.34/10.82 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(vyw501, vyw3001, gh, ha, hb) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, fc) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31000, vyw32000, ee, ef) 25.34/10.82 new_primCompAux00(vyw112, GT) -> GT 25.34/10.82 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(vyw500, vyw3000, ccb, ccc, ccd) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs13(vyw31001, vyw32001, dae, daf, dag) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.34/10.82 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.34/10.82 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.34/10.82 new_ltEs16(LT, LT) -> True 25.34/10.82 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw501, vyw3001, cah, cba, cbb) 25.34/10.82 new_esEs30(vyw21, vyw16, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(vyw21, vyw16, chf, chg, chh) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, bah) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.34/10.82 new_compare16(vyw31000, vyw32000, False) -> GT 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.34/10.82 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, fc) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.34/10.82 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.34/10.82 new_compare28(vyw31000, vyw32000, False, bge, bgf, bgg) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.34/10.82 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.34/10.82 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt17(vyw31001, vyw32001, bfe, bff, bfg) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fc) -> new_esEs5(vyw500, vyw3000, ceg, ceh, cfa) 25.34/10.82 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.82 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, bah) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(vyw31001, vyw32001, bfe, bff, bfg) 25.34/10.82 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.34/10.82 new_compare110(vyw31000, vyw32000, False, bge, bgf, bgg) -> GT 25.34/10.82 new_pePe(False, vyw101) -> vyw101 25.34/10.82 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.82 new_ltEs5(vyw3100, vyw3200, da) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, da), GT)) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_ltEs9(True, True) -> True 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_esEs6(vyw31000, vyw32000, eh, fa) 25.34/10.82 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.34/10.82 new_ltEs16(LT, GT) -> True 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_lt11(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw31001, vyw32001, bgc, bgd) 25.34/10.82 new_esEs17([], [], db) -> True 25.34/10.82 new_ltEs16(LT, EQ) -> True 25.34/10.82 new_ltEs16(EQ, LT) -> False 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Float) -> new_esEs11(vyw21, vyw16) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], cdg)) -> new_ltEs5(vyw31000, vyw32000, cdg) 25.34/10.82 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_compare11(vyw31000, vyw32000, False, ee, ef) -> GT 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, bah) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cab)) -> new_esEs4(vyw502, vyw3002, cab) 25.34/10.82 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.34/10.82 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(app(ty_Either, dde), ddf)) -> new_compare12(vyw31000, vyw32000, dde, ddf) 25.34/10.82 new_esEs30(vyw21, vyw16, app(ty_[], daa)) -> new_esEs17(vyw21, vyw16, daa) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(ty_Ratio, de)) -> new_esEs13(vyw500, vyw3000, de) 25.34/10.82 new_ltEs16(GT, LT) -> False 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(vyw500, vyw3000, cb, cc, cd) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(ty_Maybe, hd)) -> new_esEs4(vyw501, vyw3001, hd) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, bah) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw31002, vyw32002, bec, bed, bee) 25.34/10.82 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(ty_[], ec)) -> new_esEs17(vyw500, vyw3000, ec) 25.34/10.82 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.34/10.82 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(app(ty_Either, cac), cad)) -> new_esEs6(vyw501, vyw3001, cac, cad) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_esEs8(False, False) -> True 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, ceb), cec), fc) -> new_esEs6(vyw500, vyw3000, ceb, cec) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.34/10.82 new_ltEs8(Right(vyw31000), Left(vyw32000), bcc, bah) -> False 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.82 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.34/10.82 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Integer) -> new_esEs14(vyw50, vyw300) 25.34/10.82 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, ced), fc) -> new_esEs13(vyw500, vyw3000, ced) 25.34/10.82 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ff, fg) -> new_asAs(new_esEs20(vyw500, vyw3000, ff), new_esEs19(vyw501, vyw3001, fg)) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(vyw502, vyw3002, bhf, bhg, bhh) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.34/10.82 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, fc) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.34/10.82 new_compare18(vyw31000, vyw32000, ee, ef) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.82 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.34/10.82 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, fc) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.34/10.82 new_compare30(vyw31000, vyw32000, app(ty_Maybe, dda)) -> new_compare13(vyw31000, vyw32000, dda) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, cee), cef), fc) -> new_esEs7(vyw500, vyw3000, cee, cef) 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(ty_[], dcd)) -> new_esEs17(vyw31000, vyw32000, dcd) 25.34/10.82 new_ltEs16(EQ, GT) -> True 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_Either, bda), bdb)) -> new_ltEs8(vyw31000, vyw32000, bda, bdb) 25.34/10.82 new_ltEs16(EQ, EQ) -> True 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bg)) -> new_esEs13(vyw500, vyw3000, bg) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, bcc), bah)) -> new_ltEs8(vyw3100, vyw3200, bcc, bah) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Float) -> new_esEs11(vyw50, vyw300) 25.34/10.82 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(ty_Maybe, baf)) -> new_esEs4(vyw500, vyw3000, baf) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.82 new_esEs29(vyw50, vyw300, app(ty_[], db)) -> new_esEs17(vyw50, vyw300, db) 25.34/10.82 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.34/10.82 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.34/10.82 new_esEs9(LT, LT) -> True 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_lt17(vyw31000, vyw32000, bge, bgf, bgg) -> new_esEs9(new_compare27(vyw31000, vyw32000, bge, bgf, bgg), LT) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, bah) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.82 new_compare23(Just(vyw3100), Nothing, False, cgf) -> GT 25.34/10.82 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, bba), bah) -> new_ltEs6(vyw31000, vyw32000, bba) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, cda)) -> new_ltEs11(vyw31000, vyw32000, cda) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.82 new_compare19(vyw31000, vyw32000, False, eh, fa) -> GT 25.34/10.82 new_lt12(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_lt15(vyw31000, vyw32000, bag) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Double) -> new_esEs15(vyw50, vyw300) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.34/10.82 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), db) -> new_asAs(new_esEs18(vyw500, vyw3000, db), new_esEs17(vyw501, vyw3001, db)) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_esEs4(vyw31001, vyw32001, bfd) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.82 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.82 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.34/10.82 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), fd) -> new_asAs(new_esEs27(vyw500, vyw3000, fd), new_esEs26(vyw501, vyw3001, fd)) 25.34/10.82 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbh), cca)) -> new_esEs7(vyw500, vyw3000, cbh, cca) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Maybe, bce)) -> new_ltEs11(vyw31000, vyw32000, bce) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_esEs13(vyw31001, vyw32001, bfc) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Double) -> new_esEs15(vyw21, vyw16) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs4(vyw500, vyw3000, cf) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, bef), beg)) -> new_ltEs8(vyw31002, vyw32002, bef, beg) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(app(ty_Either, bha), bhb)) -> new_esEs6(vyw502, vyw3002, bha, bhb) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw31001, vyw32001, bfh, bga) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, fc) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.34/10.82 new_compare16(vyw31000, vyw32000, True) -> LT 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.34/10.82 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.34/10.82 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.82 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.82 new_esEs30(vyw21, vyw16, app(ty_Maybe, dab)) -> new_esEs4(vyw21, vyw16, dab) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, dad)) -> new_ltEs11(vyw31001, vyw32001, dad) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cbd)) -> new_esEs4(vyw501, vyw3001, cbd) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], ce)) -> new_esEs17(vyw500, vyw3000, ce) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.34/10.82 new_esEs29(vyw50, vyw300, ty_Int) -> new_esEs16(vyw50, vyw300) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw31000, vyw32000, bge, bgf, bgg) 25.34/10.82 new_lt15(vyw31000, vyw32000, bag) -> new_esEs9(new_compare13(vyw31000, vyw32000, bag), LT) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.82 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, cdh), cea)) -> new_ltEs17(vyw31000, vyw32000, cdh, cea) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(ty_Maybe, ed)) -> new_esEs4(vyw500, vyw3000, ed) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, be), bf)) -> new_esEs6(vyw500, vyw3000, be, bf) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, eg)) -> new_ltEs6(vyw3100, vyw3200, eg) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(ty_Ratio, hg)) -> new_esEs13(vyw500, vyw3000, hg) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cbg)) -> new_esEs13(vyw500, vyw3000, cbg) 25.34/10.82 new_compare0([], :(vyw32000, vyw32001), da) -> LT 25.34/10.82 new_asAs(True, vyw93) -> vyw93 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.34/10.82 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Integer) -> new_esEs14(vyw21, vyw16) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(ty_[], hc)) -> new_esEs17(vyw501, vyw3001, hc) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.34/10.82 new_esEs25(vyw500, vyw3000, app(ty_[], cce)) -> new_esEs17(vyw500, vyw3000, cce) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, fc) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_lt4(vyw31000, vyw32000, dbe) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_lt10(vyw31000, vyw32000, dce, dcf) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.34/10.82 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs6(Left(vyw500), Right(vyw3000), fb, fc) -> False 25.34/10.82 new_esEs6(Right(vyw500), Left(vyw3000), fb, fc) -> False 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, bah) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(ty_Ratio, ge)) -> new_esEs13(vyw501, vyw3001, ge) 25.34/10.82 new_lt11(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_lt15(vyw31001, vyw32001, bfd) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, bbc), bbd), bbe), bah) -> new_ltEs13(vyw31000, vyw32000, bbc, bbd, bbe) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(app(ty_@2, df), dg)) -> new_esEs7(vyw500, vyw3000, df, dg) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(app(ty_@2, caf), cag)) -> new_esEs7(vyw501, vyw3001, caf, cag) 25.34/10.82 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.34/10.82 new_esEs30(vyw21, vyw16, app(app(ty_@2, chd), che)) -> new_esEs7(vyw21, vyw16, chd, che) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_primCompAux00(vyw112, EQ) -> vyw112 25.34/10.82 new_compare0([], [], da) -> EQ 25.34/10.82 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.34/10.82 new_ltEs16(GT, GT) -> True 25.34/10.82 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.34/10.82 new_ltEs9(False, False) -> True 25.34/10.82 new_primMulNat0(Zero, Zero) -> Zero 25.34/10.82 new_compare10(vyw31000, vyw32000, False) -> GT 25.34/10.82 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.82 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfc), fc) -> new_esEs4(vyw500, vyw3000, cfc) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, beb)) -> new_ltEs11(vyw31002, vyw32002, beb) 25.34/10.82 new_compare211(vyw31000, vyw32000, True) -> EQ 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_esEs4(vyw31000, vyw32000, dbf) 25.34/10.82 new_esEs23(vyw502, vyw3002, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw502, vyw3002, bhd, bhe) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], bbh), bah) -> new_ltEs5(vyw31000, vyw32000, bbh) 25.34/10.82 new_ltEs11(Nothing, Just(vyw32000), ccg) -> True 25.34/10.82 new_compare28(vyw31000, vyw32000, True, bge, bgf, bgg) -> EQ 25.34/10.82 new_esEs4(Nothing, Nothing, bd) -> True 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dac)) -> new_ltEs6(vyw31001, vyw32001, dac) 25.34/10.82 new_esEs4(Nothing, Just(vyw3000), bd) -> False 25.34/10.82 new_esEs4(Just(vyw500), Nothing, bd) -> False 25.34/10.82 new_esEs20(vyw500, vyw3000, app(ty_[], bae)) -> new_esEs17(vyw500, vyw3000, bae) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_[], bdc)) -> new_ltEs5(vyw31000, vyw32000, bdc) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, bah) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.82 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fh, ga, gb) -> new_asAs(new_esEs25(vyw500, vyw3000, fh), new_asAs(new_esEs24(vyw501, vyw3001, ga), new_esEs23(vyw502, vyw3002, gb))) 25.34/10.82 new_esEs30(vyw21, vyw16, app(ty_Ratio, chc)) -> new_esEs13(vyw21, vyw16, chc) 25.34/10.82 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.82 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.82 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(ty_Ratio, cae)) -> new_esEs13(vyw501, vyw3001, cae) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(app(ty_Either, gc), gd)) -> new_esEs6(vyw501, vyw3001, gc, gd) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, ccg)) -> new_ltEs11(vyw3100, vyw3200, ccg) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.34/10.82 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vyw500, vyw3000, cbe, cbf) 25.34/10.82 new_ltEs9(True, False) -> False 25.34/10.82 new_esEs9(EQ, EQ) -> True 25.34/10.82 new_lt12(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_lt6(vyw31000, vyw32000, eh, fa) 25.34/10.82 new_lt11(vyw31001, vyw32001, app(ty_[], bgb)) -> new_lt18(vyw31001, vyw32001, bgb) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(ty_[], bgb)) -> new_esEs17(vyw31001, vyw32001, bgb) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.34/10.82 new_esEs29(vyw50, vyw300, app(ty_Ratio, fd)) -> new_esEs13(vyw50, vyw300, fd) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.82 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.34/10.82 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.34/10.82 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.34/10.82 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vyw31000, vyw32000, bcf, bcg, bch) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, cde), cdf)) -> new_ltEs8(vyw31000, vyw32000, cde, cdf) 25.34/10.82 new_compare24(vyw31000, vyw32000, True) -> EQ 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_esEs7(vyw31000, vyw32000, dce, dcf) 25.34/10.82 new_esEs20(vyw500, vyw3000, app(app(ty_Either, he), hf)) -> new_esEs6(vyw500, vyw3000, he, hf) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.82 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.34/10.82 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.34/10.82 new_compare30(vyw31000, vyw32000, app(ty_[], ddg)) -> new_compare0(vyw31000, vyw32000, ddg) 25.34/10.82 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.34/10.82 new_compare23(Nothing, Just(vyw3200), False, cgf) -> LT 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.34/10.82 new_esEs29(vyw50, vyw300, app(ty_Maybe, bd)) -> new_esEs4(vyw50, vyw300, bd) 25.34/10.82 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.34/10.82 new_compare111(vyw86, vyw87, False, dcg) -> GT 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.82 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.34/10.82 new_compare110(vyw31000, vyw32000, True, bge, bgf, bgg) -> LT 25.34/10.82 new_ltEs6(vyw3100, vyw3200, eg) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, eg), GT)) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, bea)) -> new_ltEs6(vyw31002, vyw32002, bea) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.34/10.82 new_esEs19(vyw501, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw501, vyw3001, gf, gg) 25.34/10.82 new_compare23(Nothing, Nothing, False, cgf) -> LT 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, bca), bcb), bah) -> new_ltEs17(vyw31000, vyw32000, bca, bcb) 25.34/10.82 new_ltEs8(Left(vyw31000), Right(vyw32000), bcc, bah) -> True 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cch)) -> new_ltEs6(vyw31000, vyw32000, cch) 25.34/10.82 new_not(False) -> True 25.34/10.82 new_lt11(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_lt4(vyw31001, vyw32001, bfc) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_esEs13(vyw31000, vyw32000, dbe) 25.34/10.82 new_esEs24(vyw501, vyw3001, app(ty_[], cbc)) -> new_esEs17(vyw501, vyw3001, cbc) 25.34/10.82 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, dbc), dbd)) -> new_ltEs17(vyw31001, vyw32001, dbc, dbd) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.82 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.34/10.82 new_esEs9(GT, GT) -> True 25.34/10.82 new_compare0(:(vyw31000, vyw31001), [], da) -> GT 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.82 new_esEs29(vyw50, vyw300, app(app(ty_Either, fb), fc)) -> new_esEs6(vyw50, vyw300, fb, fc) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_compare27(vyw31000, vyw32000, bge, bgf, bgg) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs5(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.34/10.82 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(vyw3100, vyw3200, cgg, cgh) 25.34/10.82 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.34/10.82 new_esEs29(vyw50, vyw300, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw50, vyw300, ff, fg) 25.34/10.82 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.34/10.82 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, bah) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.82 new_esEs9(EQ, GT) -> False 25.34/10.82 new_esEs9(GT, EQ) -> False 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(ty_[], beh)) -> new_ltEs5(vyw31002, vyw32002, beh) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.34/10.82 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.34/10.82 new_compare11(vyw31000, vyw32000, True, ee, ef) -> LT 25.34/10.82 new_esEs30(vyw21, vyw16, app(app(ty_Either, cha), chb)) -> new_esEs6(vyw21, vyw16, cha, chb) 25.34/10.82 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.82 new_compare12(vyw31000, vyw32000, eh, fa) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_lt15(vyw31000, vyw32000, dbf) 25.34/10.82 new_esEs8(True, True) -> True 25.34/10.82 new_lt11(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_lt6(vyw31001, vyw32001, bfh, bga) 25.34/10.82 new_compare29(vyw31000, vyw32000, False, eh, fa) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.82 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.82 new_compare10(vyw31000, vyw32000, True) -> LT 25.34/10.82 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.34/10.82 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.34/10.82 new_primPlusNat1(Zero, Zero) -> Zero 25.34/10.82 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), da) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, da), da) 25.34/10.82 new_compare13(vyw31000, vyw32000, bag) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, bag), bag) 25.34/10.82 new_esEs22(vyw31000, vyw32000, app(ty_[], bgh)) -> new_esEs17(vyw31000, vyw32000, bgh) 25.34/10.82 new_compare111(vyw86, vyw87, True, dcg) -> LT 25.34/10.82 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccf)) -> new_esEs4(vyw500, vyw3000, ccf) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.82 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.82 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.34/10.82 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.34/10.82 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.34/10.82 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.82 new_lt20(vyw31000, vyw32000, app(ty_[], dcd)) -> new_lt18(vyw31000, vyw32000, dcd) 25.34/10.82 new_esEs18(vyw500, vyw3000, app(app(ty_Either, dc), dd)) -> new_esEs6(vyw500, vyw3000, dc, dd) 25.34/10.82 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.34/10.82 new_lt18(vyw31000, vyw32000, bgh) -> new_esEs9(new_compare0(vyw31000, vyw32000, bgh), LT) 25.34/10.82 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.34/10.82 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.34/10.82 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.34/10.82 new_esEs12(@0, @0) -> True 25.34/10.82 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.82 new_compare29(vyw31000, vyw32000, True, eh, fa) -> EQ 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.34/10.82 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.34/10.82 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Char) -> new_esEs10(vyw21, vyw16) 25.34/10.82 new_lt6(vyw31000, vyw32000, eh, fa) -> new_esEs9(new_compare12(vyw31000, vyw32000, eh, fa), LT) 25.34/10.82 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw31001, vyw32001, bgc, bgd) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.82 new_esEs30(vyw21, vyw16, ty_Int) -> new_esEs16(vyw21, vyw16) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.82 new_ltEs11(Just(vyw31000), Nothing, ccg) -> False 25.34/10.82 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.34/10.82 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.34/10.82 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(vyw31002, vyw32002, bfa, bfb) 25.34/10.82 new_ltEs11(Nothing, Nothing, ccg) -> True 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, bh), ca)) -> new_esEs7(vyw500, vyw3000, bh, ca) 25.34/10.82 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.34/10.82 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.82 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.34/10.82 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.34/10.82 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_esEs6(vyw31000, vyw32000, dcb, dcc) 25.34/10.82 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.82 new_primEqNat0(Zero, Zero) -> True 25.34/10.82 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.34/10.82 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.34/10.82 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Bool) -> new_esEs8(vyw21, vyw16) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, app(ty_[], dbb)) -> new_ltEs5(vyw31001, vyw32001, dbb) 25.34/10.83 new_compare210(vyw31000, vyw32000, False, ee, ef) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.83 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.34/10.83 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.34/10.83 new_esEs9(LT, GT) -> False 25.34/10.83 new_esEs9(GT, LT) -> False 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Ratio, bcd)) -> new_ltEs6(vyw31000, vyw32000, bcd) 25.34/10.83 new_esEs17(:(vyw500, vyw501), [], db) -> False 25.34/10.83 new_esEs17([], :(vyw3000, vyw3001), db) -> False 25.34/10.83 new_asAs(False, vyw93) -> False 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Ordering) -> new_esEs9(vyw50, vyw300) 25.34/10.83 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_lt17(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.83 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Bool) -> new_esEs8(vyw50, vyw300) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Ordering) -> new_esEs9(vyw21, vyw16) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_@2, bdd), bde)) -> new_ltEs17(vyw31000, vyw32000, bdd, bde) 25.34/10.83 new_lt4(vyw31000, vyw32000, cg) -> new_esEs9(new_compare7(vyw31000, vyw32000, cg), LT) 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Char) -> new_esEs10(vyw50, vyw300) 25.34/10.83 new_esEs20(vyw500, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw500, vyw3000, hh, baa) 25.34/10.83 25.34/10.83 The set Q consists of the following terms: 25.34/10.83 25.34/10.83 new_lt12(x0, x1, ty_Integer) 25.34/10.83 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.34/10.83 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.83 new_lt19(x0, x1) 25.34/10.83 new_esEs28(x0, x1, ty_Ordering) 25.34/10.83 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs29(x0, x1, ty_Integer) 25.34/10.83 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_ltEs20(x0, x1, ty_@0) 25.34/10.83 new_lt20(x0, x1, ty_Float) 25.34/10.83 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_compare0([], [], x0) 25.34/10.83 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs19(x0, x1, ty_@0) 25.34/10.83 new_esEs30(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs16(x0, x1) 25.34/10.83 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs28(x0, x1, ty_Double) 25.34/10.83 new_esEs23(x0, x1, ty_Int) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs22(x0, x1, ty_Int) 25.34/10.83 new_esEs30(x0, x1, ty_@0) 25.34/10.83 new_ltEs20(x0, x1, ty_Bool) 25.34/10.83 new_primPlusNat1(Zero, Zero) 25.34/10.83 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.34/10.83 new_compare16(x0, x1, False) 25.34/10.83 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs22(x0, x1, ty_Char) 25.34/10.83 new_esEs23(x0, x1, ty_Ordering) 25.34/10.83 new_esEs19(x0, x1, ty_Bool) 25.34/10.83 new_primMulNat0(Zero, Succ(x0)) 25.34/10.83 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_compare30(x0, x1, ty_Ordering) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.83 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_compare30(x0, x1, ty_Int) 25.34/10.83 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.83 new_primMulNat0(Succ(x0), Succ(x1)) 25.34/10.83 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_primEqInt(Pos(Zero), Pos(Zero)) 25.34/10.83 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_primCompAux00(x0, GT) 25.34/10.83 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs23(x0, x1, ty_Char) 25.34/10.83 new_esEs20(x0, x1, ty_Integer) 25.34/10.83 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.83 new_esEs29(x0, x1, ty_Bool) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.83 new_esEs4(Nothing, Nothing, x0) 25.34/10.83 new_ltEs6(x0, x1, x2) 25.34/10.83 new_lt17(x0, x1, x2, x3, x4) 25.34/10.83 new_esEs24(x0, x1, app(ty_[], x2)) 25.34/10.83 new_primEqInt(Neg(Zero), Neg(Zero)) 25.34/10.83 new_pePe(True, x0) 25.34/10.83 new_ltEs18(x0, x1, ty_Float) 25.34/10.83 new_compare30(x0, x1, ty_Char) 25.34/10.83 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_lt13(x0, x1) 25.34/10.83 new_esEs23(x0, x1, ty_Double) 25.34/10.83 new_compare29(x0, x1, False, x2, x3) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs21(x0, x1, ty_@0) 25.34/10.83 new_ltEs16(GT, EQ) 25.34/10.83 new_ltEs16(EQ, GT) 25.34/10.83 new_primCmpNat0(Succ(x0), Zero) 25.34/10.83 new_compare30(x0, x1, ty_Double) 25.34/10.83 new_lt5(x0, x1) 25.34/10.83 new_compare25(@0, @0) 25.34/10.83 new_ltEs9(True, True) 25.34/10.83 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.83 new_esEs21(x0, x1, ty_Int) 25.34/10.83 new_esEs19(x0, x1, ty_Char) 25.34/10.83 new_esEs9(LT, LT) 25.34/10.83 new_ltEs16(LT, LT) 25.34/10.83 new_esEs21(x0, x1, ty_Integer) 25.34/10.83 new_esEs4(Just(x0), Nothing, x1) 25.34/10.83 new_esEs30(x0, x1, ty_Int) 25.34/10.83 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.83 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.83 new_esEs24(x0, x1, ty_Int) 25.34/10.83 new_esEs19(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs9(EQ, GT) 25.34/10.83 new_esEs9(GT, EQ) 25.34/10.83 new_lt11(x0, x1, ty_Integer) 25.34/10.83 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.34/10.83 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.34/10.83 new_esEs18(x0, x1, ty_Ordering) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.34/10.83 new_esEs18(x0, x1, ty_Integer) 25.34/10.83 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs8(False, True) 25.34/10.83 new_esEs8(True, False) 25.34/10.83 new_esEs29(x0, x1, ty_Float) 25.34/10.83 new_lt11(x0, x1, ty_Bool) 25.34/10.83 new_ltEs20(x0, x1, ty_Integer) 25.34/10.83 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs21(x0, x1, ty_Char) 25.34/10.83 new_lt12(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs8(True, True) 25.34/10.83 new_lt7(x0, x1) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.83 new_lt6(x0, x1, x2, x3) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.83 new_esEs21(x0, x1, ty_Bool) 25.34/10.83 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_primEqInt(Pos(Zero), Neg(Zero)) 25.34/10.83 new_primEqInt(Neg(Zero), Pos(Zero)) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.83 new_compare23(Nothing, Just(x0), False, x1) 25.34/10.83 new_compare210(x0, x1, False, x2, x3) 25.34/10.83 new_compare11(x0, x1, True, x2, x3) 25.34/10.83 new_esEs24(x0, x1, ty_Double) 25.34/10.83 new_esEs30(x0, x1, ty_Bool) 25.34/10.83 new_ltEs19(x0, x1, ty_Double) 25.34/10.83 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.34/10.83 new_esEs22(x0, x1, ty_Ordering) 25.34/10.83 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.34/10.83 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.34/10.83 new_esEs28(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs30(x0, x1, ty_Char) 25.34/10.83 new_ltEs20(x0, x1, ty_Ordering) 25.34/10.83 new_esEs29(x0, x1, ty_@0) 25.34/10.83 new_esEs24(x0, x1, ty_Char) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.34/10.83 new_esEs19(x0, x1, ty_Int) 25.34/10.83 new_compare8(Integer(x0), Integer(x1)) 25.34/10.83 new_esEs30(x0, x1, ty_Double) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.34/10.83 new_compare19(x0, x1, False, x2, x3) 25.34/10.83 new_compare23(Just(x0), Nothing, False, x1) 25.34/10.83 new_primPlusNat0(Zero, x0) 25.34/10.83 new_esEs27(x0, x1, ty_Int) 25.34/10.83 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs19(x0, x1, ty_Double) 25.34/10.83 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs22(x0, x1, ty_Integer) 25.34/10.83 new_esEs28(x0, x1, ty_Bool) 25.34/10.83 new_ltEs19(x0, x1, ty_Int) 25.34/10.83 new_ltEs20(x0, x1, ty_Double) 25.34/10.83 new_esEs25(x0, x1, ty_Char) 25.34/10.83 new_ltEs5(x0, x1, x2) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.83 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.83 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.83 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs29(x0, x1, ty_Char) 25.34/10.83 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare30(x0, x1, ty_@0) 25.34/10.83 new_lt20(x0, x1, ty_@0) 25.34/10.83 new_esEs24(x0, x1, ty_@0) 25.34/10.83 new_esEs19(x0, x1, ty_Float) 25.34/10.83 new_ltEs16(GT, GT) 25.34/10.83 new_esEs23(x0, x1, ty_@0) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.34/10.83 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.83 new_esEs21(x0, x1, ty_Double) 25.34/10.83 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare110(x0, x1, False, x2, x3, x4) 25.34/10.83 new_compare23(x0, x1, True, x2) 25.34/10.83 new_lt20(x0, x1, app(ty_[], x2)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.83 new_compare24(x0, x1, False) 25.34/10.83 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_ltEs19(x0, x1, ty_Float) 25.34/10.83 new_esEs10(Char(x0), Char(x1)) 25.34/10.83 new_compare210(x0, x1, True, x2, x3) 25.34/10.83 new_ltEs16(LT, EQ) 25.34/10.83 new_ltEs16(EQ, LT) 25.34/10.83 new_esEs30(x0, x1, ty_Float) 25.34/10.83 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.83 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.83 new_ltEs11(Just(x0), Nothing, x1) 25.34/10.83 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare6(Char(x0), Char(x1)) 25.34/10.83 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.83 new_asAs(False, x0) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.34/10.83 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs25(x0, x1, ty_Int) 25.34/10.83 new_esEs29(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_primEqNat0(Zero, Succ(x0)) 25.34/10.83 new_esEs21(x0, x1, ty_Ordering) 25.34/10.83 new_ltEs7(x0, x1) 25.34/10.83 new_compare211(x0, x1, True) 25.34/10.83 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs22(x0, x1, ty_Bool) 25.34/10.83 new_lt11(x0, x1, ty_Char) 25.34/10.83 new_esEs17([], :(x0, x1), x2) 25.34/10.83 new_ltEs18(x0, x1, ty_Integer) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.83 new_esEs22(x0, x1, app(ty_[], x2)) 25.34/10.83 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.83 new_ltEs9(False, True) 25.34/10.83 new_ltEs9(True, False) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.34/10.83 new_esEs17(:(x0, x1), [], x2) 25.34/10.83 new_ltEs14(x0, x1) 25.34/10.83 new_esEs24(x0, x1, ty_Integer) 25.34/10.83 new_primEqNat0(Succ(x0), Succ(x1)) 25.34/10.83 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.34/10.83 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.34/10.83 new_ltEs15(x0, x1) 25.34/10.83 new_lt12(x0, x1, ty_@0) 25.34/10.83 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_lt11(x0, x1, ty_Int) 25.34/10.83 new_compare23(Just(x0), Just(x1), False, x2) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.34/10.83 new_esEs18(x0, x1, ty_Bool) 25.34/10.83 new_esEs25(x0, x1, ty_Float) 25.34/10.83 new_esEs20(x0, x1, ty_Float) 25.34/10.83 new_esEs18(x0, x1, ty_Float) 25.34/10.83 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs20(x0, x1, ty_Bool) 25.34/10.83 new_lt10(x0, x1, x2, x3) 25.34/10.83 new_esEs24(x0, x1, ty_Ordering) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.34/10.83 new_compare0(:(x0, x1), [], x2) 25.34/10.83 new_compare18(x0, x1, x2, x3) 25.34/10.83 new_esEs23(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs29(x0, x1, ty_Ordering) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.34/10.83 new_compare23(Nothing, Nothing, False, x0) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.83 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs18(x0, x1, ty_Char) 25.34/10.83 new_compare28(x0, x1, True, x2, x3, x4) 25.34/10.83 new_primPlusNat1(Succ(x0), Zero) 25.34/10.83 new_ltEs18(x0, x1, ty_Bool) 25.34/10.83 new_lt9(x0, x1) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.34/10.83 new_esEs20(x0, x1, ty_Int) 25.34/10.83 new_pePe(False, x0) 25.34/10.83 new_esEs28(x0, x1, ty_Char) 25.34/10.83 new_lt11(x0, x1, ty_Float) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.34/10.83 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.83 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.34/10.83 new_lt12(x0, x1, ty_Double) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.34/10.83 new_compare10(x0, x1, False) 25.34/10.83 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs18(x0, x1, ty_Int) 25.34/10.83 new_esEs20(x0, x1, ty_Char) 25.34/10.83 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs11(Nothing, Just(x0), x1) 25.34/10.83 new_esEs22(x0, x1, ty_Float) 25.34/10.83 new_compare26(x0, x1) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.83 new_esEs28(x0, x1, ty_Int) 25.34/10.83 new_esEs4(Nothing, Just(x0), x1) 25.34/10.83 new_esEs25(x0, x1, ty_Integer) 25.34/10.83 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.34/10.83 new_esEs17([], [], x0) 25.34/10.83 new_esEs9(EQ, EQ) 25.34/10.83 new_lt20(x0, x1, ty_Double) 25.34/10.83 new_ltEs16(EQ, EQ) 25.34/10.83 new_primCompAux00(x0, LT) 25.34/10.83 new_esEs27(x0, x1, ty_Integer) 25.34/10.83 new_compare30(x0, x1, ty_Float) 25.34/10.83 new_ltEs18(x0, x1, ty_Char) 25.34/10.83 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_@0) 25.34/10.83 new_primEqNat0(Succ(x0), Zero) 25.34/10.83 new_primMulNat0(Zero, Zero) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.34/10.83 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_lt20(x0, x1, ty_Ordering) 25.34/10.83 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_lt18(x0, x1, x2) 25.34/10.83 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.34/10.83 new_ltEs20(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.34/10.83 new_esEs28(x0, x1, ty_Float) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.34/10.83 new_ltEs18(x0, x1, ty_Int) 25.34/10.83 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_lt11(x0, x1, ty_Double) 25.34/10.83 new_esEs24(x0, x1, ty_Float) 25.34/10.83 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_primMulInt(Pos(x0), Pos(x1)) 25.34/10.83 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_ltEs18(x0, x1, ty_Ordering) 25.34/10.83 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_ltEs19(x0, x1, ty_@0) 25.34/10.83 new_compare12(x0, x1, x2, x3) 25.34/10.83 new_compare11(x0, x1, False, x2, x3) 25.34/10.83 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.34/10.83 new_ltEs11(Nothing, Nothing, x0) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.83 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.83 new_lt16(x0, x1) 25.34/10.83 new_primCmpNat0(Zero, Succ(x0)) 25.34/10.83 new_ltEs19(x0, x1, app(ty_[], x2)) 25.34/10.83 new_ltEs19(x0, x1, ty_Integer) 25.34/10.83 new_lt8(x0, x1) 25.34/10.83 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.34/10.83 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.34/10.83 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.34/10.83 new_compare30(x0, x1, app(ty_[], x2)) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.83 new_esEs21(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.83 new_sr0(Integer(x0), Integer(x1)) 25.34/10.83 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.34/10.83 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.83 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs20(x0, x1, ty_Ordering) 25.34/10.83 new_not(True) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Int) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.83 new_compare29(x0, x1, True, x2, x3) 25.34/10.83 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.83 new_primPlusNat1(Zero, Succ(x0)) 25.34/10.83 new_compare0([], :(x0, x1), x2) 25.34/10.83 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs29(x0, x1, ty_Double) 25.34/10.83 new_lt11(x0, x1, ty_Ordering) 25.34/10.83 new_esEs25(x0, x1, ty_Bool) 25.34/10.83 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.34/10.83 new_primMulInt(Pos(x0), Neg(x1)) 25.34/10.83 new_primMulInt(Neg(x0), Pos(x1)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.34/10.83 new_primCompAux00(x0, EQ) 25.34/10.83 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.34/10.83 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.83 new_lt12(x0, x1, ty_Ordering) 25.34/10.83 new_esEs28(x0, x1, ty_Integer) 25.34/10.83 new_lt14(x0, x1) 25.34/10.83 new_ltEs19(x0, x1, ty_Char) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.83 new_esEs24(x0, x1, ty_Bool) 25.34/10.83 new_esEs20(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs9(LT, EQ) 25.34/10.83 new_esEs9(EQ, LT) 25.34/10.83 new_compare24(x0, x1, True) 25.34/10.83 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Double) 25.34/10.83 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.34/10.83 new_esEs9(GT, GT) 25.34/10.83 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs16(LT, GT) 25.34/10.83 new_ltEs16(GT, LT) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.34/10.83 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.34/10.83 new_ltEs10(x0, x1) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.83 new_compare30(x0, x1, ty_Integer) 25.34/10.83 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_compare27(x0, x1, x2, x3, x4) 25.34/10.83 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Char) 25.34/10.83 new_esEs23(x0, x1, ty_Float) 25.34/10.83 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_asAs(True, x0) 25.34/10.83 new_primMulNat0(Succ(x0), Zero) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.34/10.83 new_compare111(x0, x1, True, x2) 25.34/10.83 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.34/10.83 new_ltEs19(x0, x1, ty_Bool) 25.34/10.83 new_esEs29(x0, x1, ty_Int) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.83 new_esEs9(LT, GT) 25.34/10.83 new_esEs9(GT, LT) 25.34/10.83 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.34/10.83 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.83 new_compare30(x0, x1, ty_Bool) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.83 new_lt20(x0, x1, ty_Bool) 25.34/10.83 new_esEs23(x0, x1, ty_Bool) 25.34/10.83 new_esEs19(x0, x1, ty_Ordering) 25.34/10.83 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_lt15(x0, x1, x2) 25.34/10.83 new_esEs25(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs20(x0, x1, ty_Float) 25.34/10.83 new_esEs12(@0, @0) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.83 new_compare9(x0, x1) 25.34/10.83 new_lt11(x0, x1, ty_@0) 25.34/10.83 new_compare16(x0, x1, True) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Float) 25.34/10.83 new_primPlusNat0(Succ(x0), x1) 25.34/10.83 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.34/10.83 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.34/10.83 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_primCompAux0(x0, x1, x2, x3) 25.34/10.83 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs18(x0, x1, app(ty_[], x2)) 25.34/10.83 new_compare28(x0, x1, False, x2, x3, x4) 25.34/10.83 new_esEs25(x0, x1, ty_Ordering) 25.34/10.83 new_compare10(x0, x1, True) 25.34/10.83 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.83 new_esEs21(x0, x1, ty_Float) 25.34/10.83 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.34/10.83 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.34/10.83 new_ltEs19(x0, x1, ty_Ordering) 25.34/10.83 new_compare19(x0, x1, True, x2, x3) 25.34/10.83 new_esEs26(x0, x1, ty_Int) 25.34/10.83 new_esEs25(x0, x1, ty_Double) 25.34/10.83 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare111(x0, x1, False, x2) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.34/10.83 new_lt20(x0, x1, ty_Integer) 25.34/10.83 new_ltEs4(x0, x1) 25.34/10.83 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_primEqNat0(Zero, Zero) 25.34/10.83 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.83 new_lt20(x0, x1, ty_Char) 25.34/10.83 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.83 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.83 new_ltEs9(False, False) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.83 new_not(False) 25.34/10.83 new_esEs25(x0, x1, ty_@0) 25.34/10.83 new_esEs22(x0, x1, ty_@0) 25.34/10.83 new_ltEs20(x0, x1, ty_Char) 25.34/10.83 new_esEs8(False, False) 25.34/10.83 new_esEs30(x0, x1, ty_Integer) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.34/10.83 new_ltEs18(x0, x1, ty_@0) 25.34/10.83 new_esEs19(x0, x1, ty_Integer) 25.34/10.83 new_esEs22(x0, x1, ty_Double) 25.34/10.83 new_compare15(x0, x1) 25.34/10.83 new_primMulInt(Neg(x0), Neg(x1)) 25.34/10.83 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_lt11(x0, x1, app(ty_[], x2)) 25.34/10.83 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.34/10.83 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.34/10.83 new_lt12(x0, x1, ty_Bool) 25.34/10.83 new_ltEs12(x0, x1) 25.34/10.83 new_lt12(x0, x1, ty_Float) 25.34/10.83 new_compare13(x0, x1, x2) 25.34/10.83 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.83 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs26(x0, x1, ty_Integer) 25.34/10.83 new_esEs18(x0, x1, ty_@0) 25.34/10.83 new_sr(x0, x1) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.83 new_esEs30(x0, x1, ty_Ordering) 25.34/10.83 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.83 new_compare110(x0, x1, True, x2, x3, x4) 25.34/10.83 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_compare211(x0, x1, False) 25.34/10.83 new_lt20(x0, x1, ty_Int) 25.34/10.83 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs18(x0, x1, ty_Double) 25.34/10.83 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs23(x0, x1, ty_Integer) 25.34/10.83 new_esEs20(x0, x1, ty_@0) 25.34/10.83 new_primPlusNat1(Succ(x0), Succ(x1)) 25.34/10.83 new_esEs28(x0, x1, ty_@0) 25.34/10.83 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_ltEs18(x0, x1, ty_Double) 25.34/10.83 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_ltEs20(x0, x1, ty_Int) 25.34/10.83 new_esEs20(x0, x1, ty_Double) 25.34/10.83 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.83 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.83 new_ltEs18(x0, x1, app(ty_[], x2)) 25.34/10.83 new_lt12(x0, x1, ty_Char) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.83 new_primCmpNat0(Succ(x0), Succ(x1)) 25.34/10.83 new_lt12(x0, x1, ty_Int) 25.34/10.83 new_primCmpNat0(Zero, Zero) 25.34/10.83 new_esEs6(Left(x0), Right(x1), x2, x3) 25.34/10.83 new_esEs6(Right(x0), Left(x1), x2, x3) 25.34/10.83 new_esEs14(Integer(x0), Integer(x1)) 25.34/10.83 new_lt4(x0, x1, x2) 25.34/10.83 new_compare0(:(x0, x1), :(x2, x3), x4) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.34/10.83 25.34/10.83 We have to consider all minimal (P,Q,R)-chains. 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (43) QDPSizeChangeProof (EQUIVALENT) 25.34/10.83 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. 25.34/10.83 25.34/10.83 From the DPs we obtained the following set of size-change graphs: 25.34/10.83 *new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw19, Just(vyw21), bb, bc) 25.34/10.83 The graph contains the following edges 1 >= 1, 5 >= 2, 9 >= 4, 10 >= 5 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM03(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, bb, bc) -> new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_esEs9(new_compare23(Just(vyw21), Just(vyw16), new_esEs30(vyw21, vyw16, bc), bc), GT), bb, bc) 25.34/10.83 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM06(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, bb, bc) -> new_lookupWithDefaultFM00(vyw15, vyw20, Just(vyw21), bb, bc) 25.34/10.83 The graph contains the following edges 1 >= 1, 6 >= 2, 9 >= 4, 10 >= 5 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Just(vyw50), h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 9 >= 5 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM03(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, vyw50, new_esEs9(new_compare23(Just(vyw50), Just(vyw300), new_esEs29(vyw50, vyw300, ba), ba), LT), h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 > 7, 4 >= 9, 5 >= 10 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw50), h, ba) -> new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 3 > 6, 4 >= 8, 5 >= 9 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM02(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, False, h, ba) -> new_lookupWithDefaultFM05(vyw4, vyw31, vyw32, vyw33, vyw34, vyw50, True, h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 25.34/10.83 25.34/10.83 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (44) 25.34/10.83 YES 25.34/10.83 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (45) 25.34/10.83 Obligation: 25.34/10.83 Q DP problem: 25.34/10.83 The TRS P consists of the following rules: 25.34/10.83 25.34/10.83 new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Just(vyw300), False, ba), LT), h, ba) 25.34/10.83 new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw33, Nothing, h, ba) 25.34/10.83 new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupWithDefaultFM0(vyw4, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Nothing, True, ba), GT), h, ba) 25.34/10.83 new_lookupWithDefaultFM0(vyw4, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Nothing, h, ba) 25.34/10.83 new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, False, h, ba) -> new_lookupWithDefaultFM04(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Just(vyw300), False, ba), GT), h, ba) 25.34/10.83 new_lookupWithDefaultFM04(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Nothing, h, ba) 25.34/10.83 25.34/10.83 The TRS R consists of the following rules: 25.34/10.83 25.34/10.83 new_primCmpInt(Neg(Succ(vyw310000)), Pos(vyw32000)) -> LT 25.34/10.83 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.34/10.83 new_lt10(vyw31000, vyw32000, ee, ef) -> new_esEs9(new_compare18(vyw31000, vyw32000, ee, ef), LT) 25.34/10.83 new_esEs23(vyw502, vyw3002, app(ty_[], caa)) -> new_esEs17(vyw502, vyw3002, caa) 25.34/10.83 new_ltEs17(@2(vyw31000, vyw31001), @2(vyw32000, vyw32001), cgg, cgh) -> new_pePe(new_lt20(vyw31000, vyw32000, cgg), new_asAs(new_esEs28(vyw31000, vyw32000, cgg), new_ltEs20(vyw31001, vyw32001, cgh))) 25.34/10.83 new_pePe(True, vyw101) -> True 25.34/10.83 new_esEs21(vyw31001, vyw32001, ty_Bool) -> new_esEs8(vyw31001, vyw32001) 25.34/10.83 new_esEs28(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, ty_Float) -> new_ltEs7(vyw3100, vyw3200) 25.34/10.83 new_compare23(vyw310, vyw320, True, cgf) -> EQ 25.34/10.83 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.34/10.83 new_primCmpInt(Pos(Zero), Neg(Succ(vyw320000))) -> GT 25.34/10.83 new_esEs29(vyw50, vyw300, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vyw50, vyw300, fh, ga, gb) 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.34/10.83 new_esEs9(LT, EQ) -> False 25.34/10.83 new_esEs9(EQ, LT) -> False 25.34/10.83 new_ltEs19(vyw3100, vyw3200, app(ty_[], da)) -> new_ltEs5(vyw3100, vyw3200, da) 25.34/10.83 new_primCmpInt(Neg(Succ(vyw310000)), Neg(vyw32000)) -> new_primCmpNat0(vyw32000, Succ(vyw310000)) 25.34/10.83 new_lt12(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.34/10.83 new_esEs29(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.83 new_lt12(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.34/10.83 new_lt20(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.34/10.83 new_compare30(vyw31000, vyw32000, app(ty_Ratio, dch)) -> new_compare7(vyw31000, vyw32000, dch) 25.34/10.83 new_esEs20(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.83 new_esEs10(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.34/10.83 new_esEs20(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.83 new_lt12(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_lt4(vyw31000, vyw32000, cg) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, ty_Float) -> new_ltEs7(vyw31001, vyw32001) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Maybe, bbb), bah) -> new_ltEs11(vyw31000, vyw32000, bbb) 25.34/10.83 new_ltEs13(@3(vyw31000, vyw31001, vyw31002), @3(vyw32000, vyw32001, vyw32002), bdf, bdg, bdh) -> new_pePe(new_lt12(vyw31000, vyw32000, bdf), new_asAs(new_esEs22(vyw31000, vyw32000, bdf), new_pePe(new_lt11(vyw31001, vyw32001, bdg), new_asAs(new_esEs21(vyw31001, vyw32001, bdg), new_ltEs18(vyw31002, vyw32002, bdh))))) 25.34/10.83 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.83 new_primCompAux0(vyw31000, vyw32000, vyw102, da) -> new_primCompAux00(vyw102, new_compare30(vyw31000, vyw32000, da)) 25.34/10.83 new_compare30(vyw31000, vyw32000, app(app(ty_@2, ddh), dea)) -> new_compare18(vyw31000, vyw32000, ddh, dea) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.83 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.34/10.83 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.34/10.83 new_lt12(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_lt10(vyw31000, vyw32000, ee, ef) 25.34/10.83 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.83 new_compare25(@0, @0) -> EQ 25.34/10.83 new_ltEs9(False, True) -> True 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), ty_Ordering, fc) -> new_esEs9(vyw500, vyw3000) 25.34/10.83 new_compare210(vyw31000, vyw32000, True, ee, ef) -> EQ 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), ty_Bool, fc) -> new_esEs8(vyw500, vyw3000) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, ty_@0) -> new_ltEs12(vyw3100, vyw3200) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.34/10.83 new_esEs20(vyw500, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(vyw500, vyw3000, bab, bac, bad) 25.34/10.83 new_esEs8(False, True) -> False 25.34/10.83 new_esEs8(True, False) -> False 25.34/10.83 new_esEs22(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_esEs4(vyw31000, vyw32000, bag) 25.34/10.83 new_compare19(vyw31000, vyw32000, True, eh, fa) -> LT 25.34/10.83 new_lt20(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_lt6(vyw31000, vyw32000, dcb, dcc) 25.34/10.83 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.83 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, ty_Integer) -> new_ltEs10(vyw31001, vyw32001) 25.34/10.83 new_esEs22(vyw31000, vyw32000, app(ty_Ratio, cg)) -> new_esEs13(vyw31000, vyw32000, cg) 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_Int) -> new_compare9(vyw31000, vyw32000) 25.34/10.83 new_compare23(Just(vyw3100), Just(vyw3200), False, cgf) -> new_compare111(vyw3100, vyw3200, new_ltEs19(vyw3100, vyw3200, cgf), cgf) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, ty_Char) -> new_ltEs4(vyw31002, vyw32002) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, app(app(ty_Either, dah), dba)) -> new_ltEs8(vyw31001, vyw32001, dah, dba) 25.34/10.83 new_not(True) -> False 25.34/10.83 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.83 new_primCompAux00(vyw112, LT) -> LT 25.34/10.83 new_primCmpNat0(Zero, Zero) -> EQ 25.34/10.83 new_lt12(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.83 new_lt12(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(vyw31000, vyw32000, bge, bgf, bgg) 25.34/10.83 new_compare30(vyw31000, vyw32000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare27(vyw31000, vyw32000, ddb, ddc, ddd) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_[], cfb), fc) -> new_esEs17(vyw500, vyw3000, cfb) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_@0) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.83 new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw500, vyw3000, dh, ea, eb) 25.34/10.83 new_esEs23(vyw502, vyw3002, app(ty_Ratio, bhc)) -> new_esEs13(vyw502, vyw3002, bhc) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs13(vyw31000, vyw32000, cdb, cdc, cdd) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_@0) -> new_esEs12(vyw21, vyw16) 25.34/10.83 new_ltEs16(GT, EQ) -> False 25.34/10.83 new_ltEs19(vyw3100, vyw3200, ty_Integer) -> new_ltEs10(vyw3100, vyw3200) 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_Ordering) -> new_compare15(vyw31000, vyw32000) 25.34/10.83 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.83 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_Either, bbf), bbg), bah) -> new_ltEs8(vyw31000, vyw32000, bbf, bbg) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(vyw3100, vyw3200, bdf, bdg, bdh) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.83 new_lt12(vyw31000, vyw32000, app(ty_[], bgh)) -> new_lt18(vyw31000, vyw32000, bgh) 25.34/10.83 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.83 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.34/10.83 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.34/10.83 new_lt11(vyw31001, vyw32001, ty_@0) -> new_lt16(vyw31001, vyw32001) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.83 new_esEs19(vyw501, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(vyw501, vyw3001, gh, ha, hb) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), ty_@0, fc) -> new_esEs12(vyw500, vyw3000) 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.34/10.83 new_lt20(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.34/10.83 new_esEs22(vyw31000, vyw32000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw31000, vyw32000, ee, ef) 25.34/10.83 new_primCompAux00(vyw112, GT) -> GT 25.34/10.83 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(vyw500, vyw3000, ccb, ccc, ccd) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.83 new_esEs11(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.34/10.83 new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs13(vyw31001, vyw32001, dae, daf, dag) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.83 new_primCmpInt(Pos(Succ(vyw310000)), Neg(vyw32000)) -> GT 25.34/10.83 new_esEs27(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.83 new_compare24(vyw31000, vyw32000, False) -> new_compare10(vyw31000, vyw32000, new_ltEs9(vyw31000, vyw32000)) 25.34/10.83 new_compare9(vyw3100, vyw3200) -> new_primCmpInt(vyw3100, vyw3200) 25.34/10.83 new_lt11(vyw31001, vyw32001, ty_Float) -> new_lt19(vyw31001, vyw32001) 25.34/10.83 new_ltEs16(LT, LT) -> True 25.34/10.83 new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw501, vyw3001, cah, cba, cbb) 25.34/10.83 new_esEs30(vyw21, vyw16, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(vyw21, vyw16, chf, chg, chh) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Double, bah) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.83 new_esEs21(vyw31001, vyw32001, ty_Ordering) -> new_esEs9(vyw31001, vyw32001) 25.34/10.83 new_compare16(vyw31000, vyw32000, False) -> GT 25.34/10.83 new_ltEs18(vyw31002, vyw32002, ty_Integer) -> new_ltEs10(vyw31002, vyw32002) 25.34/10.83 new_esEs15(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs16(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), ty_Integer, fc) -> new_esEs14(vyw500, vyw3000) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, ty_Float) -> new_ltEs7(vyw31002, vyw32002) 25.34/10.83 new_primPlusNat1(Succ(vyw10300), Succ(vyw3001000)) -> Succ(Succ(new_primPlusNat1(vyw10300, vyw3001000))) 25.34/10.83 new_compare28(vyw31000, vyw32000, False, bge, bgf, bgg) -> new_compare110(vyw31000, vyw32000, new_ltEs13(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) 25.34/10.83 new_primCmpNat0(Zero, Succ(vyw320000)) -> LT 25.34/10.83 new_lt11(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt17(vyw31001, vyw32001, bfe, bff, bfg) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fc) -> new_esEs5(vyw500, vyw3000, ceg, ceh, cfa) 25.34/10.83 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.83 new_compare14(Float(vyw31000, Neg(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.83 new_lt11(vyw31001, vyw32001, ty_Char) -> new_lt5(vyw31001, vyw32001) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Char, bah) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.83 new_esEs21(vyw31001, vyw32001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(vyw31001, vyw32001, bfe, bff, bfg) 25.34/10.83 new_primCmpNat0(Succ(vyw310000), Zero) -> GT 25.34/10.83 new_compare110(vyw31000, vyw32000, False, bge, bgf, bgg) -> GT 25.34/10.83 new_pePe(False, vyw101) -> vyw101 25.34/10.83 new_compare17(Double(vyw31000, Pos(vyw310010)), Double(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.83 new_ltEs5(vyw3100, vyw3200, da) -> new_not(new_esEs9(new_compare0(vyw3100, vyw3200, da), GT)) 25.34/10.83 new_lt11(vyw31001, vyw32001, ty_Int) -> new_lt7(vyw31001, vyw32001) 25.34/10.83 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.83 new_ltEs9(True, True) -> True 25.34/10.83 new_esEs22(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_esEs6(vyw31000, vyw32000, eh, fa) 25.34/10.83 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Integer) -> new_compare8(new_sr0(vyw31000, vyw32001), new_sr0(vyw32000, vyw31001)) 25.34/10.83 new_ltEs16(LT, GT) -> True 25.34/10.83 new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.83 new_lt11(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw31001, vyw32001, bgc, bgd) 25.34/10.83 new_esEs17([], [], db) -> True 25.34/10.83 new_ltEs16(LT, EQ) -> True 25.34/10.83 new_ltEs16(EQ, LT) -> False 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Float) -> new_esEs11(vyw21, vyw16) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_[], cdg)) -> new_ltEs5(vyw31000, vyw32000, cdg) 25.34/10.83 new_esEs27(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.83 new_compare11(vyw31000, vyw32000, False, ee, ef) -> GT 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Int, bah) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.83 new_esEs23(vyw502, vyw3002, app(ty_Maybe, cab)) -> new_esEs4(vyw502, vyw3002, cab) 25.34/10.83 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.34/10.83 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.34/10.83 new_lt12(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.34/10.83 new_compare30(vyw31000, vyw32000, app(app(ty_Either, dde), ddf)) -> new_compare12(vyw31000, vyw32000, dde, ddf) 25.34/10.83 new_esEs30(vyw21, vyw16, app(ty_[], daa)) -> new_esEs17(vyw21, vyw16, daa) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, ty_Ordering) -> new_ltEs16(vyw31002, vyw32002) 25.34/10.83 new_esEs18(vyw500, vyw3000, app(ty_Ratio, de)) -> new_esEs13(vyw500, vyw3000, de) 25.34/10.83 new_ltEs16(GT, LT) -> False 25.34/10.83 new_ltEs18(vyw31002, vyw32002, ty_Double) -> new_ltEs14(vyw31002, vyw32002) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, ty_@0) -> new_ltEs12(vyw31001, vyw32001) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(vyw500, vyw3000, cb, cc, cd) 25.34/10.83 new_esEs19(vyw501, vyw3001, app(ty_Maybe, hd)) -> new_esEs4(vyw501, vyw3001, hd) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Integer, bah) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw31002, vyw32002, bec, bed, bee) 25.34/10.83 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.83 new_esEs18(vyw500, vyw3000, app(ty_[], ec)) -> new_esEs17(vyw500, vyw3000, ec) 25.34/10.83 new_primCmpInt(Neg(Zero), Pos(Succ(vyw320000))) -> LT 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_Char) -> new_esEs10(vyw31000, vyw32000) 25.34/10.83 new_primMulInt(Pos(vyw5000), Pos(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.83 new_lt12(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.83 new_esEs24(vyw501, vyw3001, app(app(ty_Either, cac), cad)) -> new_esEs6(vyw501, vyw3001, cac, cad) 25.34/10.83 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.83 new_esEs8(False, False) -> True 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_Either, ceb), cec), fc) -> new_esEs6(vyw500, vyw3000, ceb, cec) 25.34/10.83 new_esEs28(vyw31000, vyw32000, ty_Double) -> new_esEs15(vyw31000, vyw32000) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_Int) -> new_esEs16(vyw502, vyw3002) 25.34/10.83 new_ltEs8(Right(vyw31000), Left(vyw32000), bcc, bah) -> False 25.34/10.83 new_esEs28(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.83 new_primMulNat0(Succ(vyw50000), Zero) -> Zero 25.34/10.83 new_primMulNat0(Zero, Succ(vyw300100)) -> Zero 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Integer) -> new_esEs14(vyw50, vyw300) 25.34/10.83 new_primPlusNat0(Zero, vyw300100) -> Succ(vyw300100) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Ratio, ced), fc) -> new_esEs13(vyw500, vyw3000, ced) 25.34/10.83 new_esEs7(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ff, fg) -> new_asAs(new_esEs20(vyw500, vyw3000, ff), new_esEs19(vyw501, vyw3001, fg)) 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.34/10.83 new_esEs23(vyw502, vyw3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(vyw502, vyw3002, bhf, bhg, bhh) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(vyw500, vyw3000, cga, cgb, cgc) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, ty_Bool) -> new_ltEs9(vyw3100, vyw3200) 25.34/10.83 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.83 new_lt20(vyw31000, vyw32000, ty_Bool) -> new_lt13(vyw31000, vyw32000) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), ty_Int, fc) -> new_esEs16(vyw500, vyw3000) 25.34/10.83 new_lt9(vyw31000, vyw32000) -> new_esEs9(new_compare17(vyw31000, vyw32000), LT) 25.34/10.83 new_compare18(vyw31000, vyw32000, ee, ef) -> new_compare210(vyw31000, vyw32000, new_esEs7(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.83 new_lt7(vyw31000, vyw32000) -> new_esEs9(new_compare9(vyw31000, vyw32000), LT) 25.34/10.83 new_lt16(vyw31000, vyw32000) -> new_esEs9(new_compare25(vyw31000, vyw32000), LT) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), ty_Char, fc) -> new_esEs10(vyw500, vyw3000) 25.34/10.83 new_esEs16(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.34/10.83 new_compare30(vyw31000, vyw32000, app(ty_Maybe, dda)) -> new_compare13(vyw31000, vyw32000, dda) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), app(app(ty_@2, cee), cef), fc) -> new_esEs7(vyw500, vyw3000, cee, cef) 25.34/10.83 new_esEs28(vyw31000, vyw32000, app(ty_[], dcd)) -> new_esEs17(vyw31000, vyw32000, dcd) 25.34/10.83 new_ltEs16(EQ, GT) -> True 25.34/10.83 new_lt11(vyw31001, vyw32001, ty_Integer) -> new_lt14(vyw31001, vyw32001) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Char) -> new_ltEs4(vyw31000, vyw32000) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_Either, bda), bdb)) -> new_ltEs8(vyw31000, vyw32000, bda, bdb) 25.34/10.83 new_ltEs16(EQ, EQ) -> True 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Ratio, bg)) -> new_esEs13(vyw500, vyw3000, bg) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, app(app(ty_Either, bcc), bah)) -> new_ltEs8(vyw3100, vyw3200, bcc, bah) 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Float) -> new_esEs11(vyw50, vyw300) 25.34/10.83 new_ltEs14(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare17(vyw3100, vyw3200), GT)) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_Ordering) -> new_esEs9(vyw502, vyw3002) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.83 new_esEs20(vyw500, vyw3000, app(ty_Maybe, baf)) -> new_esEs4(vyw500, vyw3000, baf) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.83 new_esEs29(vyw50, vyw300, app(ty_[], db)) -> new_esEs17(vyw50, vyw300, db) 25.34/10.83 new_primPlusNat1(Succ(vyw10300), Zero) -> Succ(vyw10300) 25.34/10.83 new_primPlusNat1(Zero, Succ(vyw3001000)) -> Succ(vyw3001000) 25.34/10.83 new_esEs9(LT, LT) -> True 25.34/10.83 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.83 new_lt17(vyw31000, vyw32000, bge, bgf, bgg) -> new_esEs9(new_compare27(vyw31000, vyw32000, bge, bgf, bgg), LT) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Bool, bah) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.83 new_compare23(Just(vyw3100), Nothing, False, cgf) -> GT 25.34/10.83 new_lt19(vyw31000, vyw32000) -> new_esEs9(new_compare14(vyw31000, vyw32000), LT) 25.34/10.83 new_esEs28(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_Ratio, bba), bah) -> new_ltEs6(vyw31000, vyw32000, bba) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_Char) -> new_esEs10(vyw502, vyw3002) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, ty_Ordering) -> new_ltEs16(vyw31001, vyw32001) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Maybe, cda)) -> new_ltEs11(vyw31000, vyw32000, cda) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.83 new_compare19(vyw31000, vyw32000, False, eh, fa) -> GT 25.34/10.83 new_lt12(vyw31000, vyw32000, app(ty_Maybe, bag)) -> new_lt15(vyw31000, vyw32000, bag) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_Bool) -> new_esEs8(vyw502, vyw3002) 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Double) -> new_esEs15(vyw50, vyw300) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, ty_Double) -> new_ltEs14(vyw31001, vyw32001) 25.34/10.83 new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), db) -> new_asAs(new_esEs18(vyw500, vyw3000, db), new_esEs17(vyw501, vyw3001, db)) 25.34/10.83 new_esEs21(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_esEs4(vyw31001, vyw32001, bfd) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, ty_@0) -> new_ltEs12(vyw31002, vyw32002) 25.34/10.83 new_esEs28(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.83 new_primMulInt(Neg(vyw5000), Neg(vyw30010)) -> Pos(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.83 new_primCmpInt(Pos(Zero), Pos(Succ(vyw320000))) -> new_primCmpNat0(Zero, Succ(vyw320000)) 25.34/10.83 new_esEs13(:%(vyw500, vyw501), :%(vyw3000, vyw3001), fd) -> new_asAs(new_esEs27(vyw500, vyw3000, fd), new_esEs26(vyw501, vyw3001, fd)) 25.34/10.83 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbh), cca)) -> new_esEs7(vyw500, vyw3000, cbh, cca) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Maybe, bce)) -> new_ltEs11(vyw31000, vyw32000, bce) 25.34/10.83 new_esEs21(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_esEs13(vyw31001, vyw32001, bfc) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, ty_Ordering) -> new_ltEs16(vyw3100, vyw3200) 25.34/10.83 new_lt12(vyw31000, vyw32000, ty_Integer) -> new_lt14(vyw31000, vyw32000) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_@2, cfg), cfh)) -> new_esEs7(vyw500, vyw3000, cfg, cfh) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Double) -> new_esEs15(vyw21, vyw16) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs4(vyw500, vyw3000, cf) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, app(app(ty_Either, bef), beg)) -> new_ltEs8(vyw31002, vyw32002, bef, beg) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs9(vyw501, vyw3001) 25.34/10.83 new_lt20(vyw31000, vyw32000, ty_Float) -> new_lt19(vyw31000, vyw32000) 25.34/10.83 new_esEs23(vyw502, vyw3002, app(app(ty_Either, bha), bhb)) -> new_esEs6(vyw502, vyw3002, bha, bhb) 25.34/10.83 new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.83 new_esEs21(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw31001, vyw32001, bfh, bga) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), ty_Float, fc) -> new_esEs11(vyw500, vyw3000) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, ty_Bool) -> new_ltEs9(vyw31002, vyw32002) 25.34/10.83 new_compare16(vyw31000, vyw32000, True) -> LT 25.34/10.83 new_ltEs20(vyw31001, vyw32001, ty_Int) -> new_ltEs15(vyw31001, vyw32001) 25.34/10.83 new_compare8(Integer(vyw31000), Integer(vyw32000)) -> new_primCmpInt(vyw31000, vyw32000) 25.34/10.83 new_primMulInt(Pos(vyw5000), Neg(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.83 new_primMulInt(Neg(vyw5000), Pos(vyw30010)) -> Neg(new_primMulNat0(vyw5000, vyw30010)) 25.34/10.83 new_esEs30(vyw21, vyw16, app(ty_Maybe, dab)) -> new_esEs4(vyw21, vyw16, dab) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, app(ty_Maybe, dad)) -> new_ltEs11(vyw31001, vyw32001, dad) 25.34/10.83 new_esEs24(vyw501, vyw3001, app(ty_Maybe, cbd)) -> new_esEs4(vyw501, vyw3001, cbd) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), app(ty_[], ce)) -> new_esEs17(vyw500, vyw3000, ce) 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(app(ty_Either, cfd), cfe)) -> new_esEs6(vyw500, vyw3000, cfd, cfe) 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Int) -> new_esEs16(vyw50, vyw300) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.83 new_esEs22(vyw31000, vyw32000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(vyw31000, vyw32000, bge, bgf, bgg) 25.34/10.83 new_lt15(vyw31000, vyw32000, bag) -> new_esEs9(new_compare13(vyw31000, vyw32000, bag), LT) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, ty_Double) -> new_ltEs14(vyw3100, vyw3200) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.83 new_sr0(Integer(vyw310000), Integer(vyw320010)) -> Integer(new_primMulInt(vyw310000, vyw320010)) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_@2, cdh), cea)) -> new_ltEs17(vyw31000, vyw32000, cdh, cea) 25.34/10.83 new_esEs18(vyw500, vyw3000, app(ty_Maybe, ed)) -> new_esEs4(vyw500, vyw3000, ed) 25.34/10.83 new_esEs20(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.83 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.83 new_compare17(Double(vyw31000, Neg(vyw310010)), Double(vyw32000, Neg(vyw320010))) -> new_compare9(new_sr(vyw31000, Neg(vyw320010)), new_sr(Neg(vyw310010), vyw32000)) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_Either, be), bf)) -> new_esEs6(vyw500, vyw3000, be, bf) 25.34/10.83 new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, app(ty_Ratio, eg)) -> new_ltEs6(vyw3100, vyw3200, eg) 25.34/10.83 new_esEs20(vyw500, vyw3000, app(ty_Ratio, hg)) -> new_esEs13(vyw500, vyw3000, hg) 25.34/10.83 new_esEs20(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.83 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cbg)) -> new_esEs13(vyw500, vyw3000, cbg) 25.34/10.83 new_compare0([], :(vyw32000, vyw32001), da) -> LT 25.34/10.83 new_asAs(True, vyw93) -> vyw93 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.34/10.83 new_lt8(vyw31000, vyw32000) -> new_esEs9(new_compare15(vyw31000, vyw32000), LT) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Integer) -> new_esEs14(vyw21, vyw16) 25.34/10.83 new_esEs19(vyw501, vyw3001, app(ty_[], hc)) -> new_esEs17(vyw501, vyw3001, hc) 25.34/10.83 new_esEs28(vyw31000, vyw32000, ty_Bool) -> new_esEs8(vyw31000, vyw32000) 25.34/10.83 new_esEs25(vyw500, vyw3000, app(ty_[], cce)) -> new_esEs17(vyw500, vyw3000, cce) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), ty_Double, fc) -> new_esEs15(vyw500, vyw3000) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, ty_Int) -> new_ltEs15(vyw3100, vyw3200) 25.34/10.83 new_lt20(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_lt4(vyw31000, vyw32000, dbe) 25.34/10.83 new_lt20(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_lt10(vyw31000, vyw32000, dce, dcf) 25.34/10.83 new_lt11(vyw31001, vyw32001, ty_Bool) -> new_lt13(vyw31001, vyw32001) 25.34/10.83 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.83 new_esEs6(Left(vyw500), Right(vyw3000), fb, fc) -> False 25.34/10.83 new_esEs6(Right(vyw500), Left(vyw3000), fb, fc) -> False 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_@0, bah) -> new_ltEs12(vyw31000, vyw32000) 25.34/10.83 new_esEs19(vyw501, vyw3001, app(ty_Ratio, ge)) -> new_esEs13(vyw501, vyw3001, ge) 25.34/10.83 new_lt11(vyw31001, vyw32001, app(ty_Maybe, bfd)) -> new_lt15(vyw31001, vyw32001, bfd) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(app(ty_@3, bbc), bbd), bbe), bah) -> new_ltEs13(vyw31000, vyw32000, bbc, bbd, bbe) 25.34/10.83 new_esEs18(vyw500, vyw3000, app(app(ty_@2, df), dg)) -> new_esEs7(vyw500, vyw3000, df, dg) 25.34/10.83 new_esEs24(vyw501, vyw3001, app(app(ty_@2, caf), cag)) -> new_esEs7(vyw501, vyw3001, caf, cag) 25.34/10.83 new_primCmpInt(Pos(Succ(vyw310000)), Pos(vyw32000)) -> new_primCmpNat0(Succ(vyw310000), vyw32000) 25.34/10.83 new_esEs30(vyw21, vyw16, app(app(ty_@2, chd), che)) -> new_esEs7(vyw21, vyw16, chd, che) 25.34/10.83 new_lt12(vyw31000, vyw32000, ty_Double) -> new_lt9(vyw31000, vyw32000) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.83 new_primCompAux00(vyw112, EQ) -> vyw112 25.34/10.83 new_compare0([], [], da) -> EQ 25.34/10.83 new_sr(vyw500, vyw3001) -> new_primMulInt(vyw500, vyw3001) 25.34/10.83 new_ltEs16(GT, GT) -> True 25.34/10.83 new_compare7(:%(vyw31000, vyw31001), :%(vyw32000, vyw32001), ty_Int) -> new_compare9(new_sr(vyw31000, vyw32001), new_sr(vyw32000, vyw31001)) 25.34/10.83 new_ltEs9(False, False) -> True 25.34/10.83 new_primMulNat0(Zero, Zero) -> Zero 25.34/10.83 new_compare10(vyw31000, vyw32000, False) -> GT 25.34/10.83 new_compare15(vyw31000, vyw32000) -> new_compare211(vyw31000, vyw32000, new_esEs9(vyw31000, vyw32000)) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) 25.34/10.83 new_esEs20(vyw500, vyw3000, ty_Float) -> new_esEs11(vyw500, vyw3000) 25.34/10.83 new_esEs6(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfc), fc) -> new_esEs4(vyw500, vyw3000, cfc) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, ty_Bool) -> new_ltEs9(vyw31001, vyw32001) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, app(ty_Maybe, beb)) -> new_ltEs11(vyw31002, vyw32002, beb) 25.34/10.83 new_compare211(vyw31000, vyw32000, True) -> EQ 25.34/10.83 new_esEs28(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_esEs4(vyw31000, vyw32000, dbf) 25.34/10.83 new_esEs23(vyw502, vyw3002, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw502, vyw3002, bhd, bhe) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), app(ty_[], bbh), bah) -> new_ltEs5(vyw31000, vyw32000, bbh) 25.34/10.83 new_ltEs11(Nothing, Just(vyw32000), ccg) -> True 25.34/10.83 new_compare28(vyw31000, vyw32000, True, bge, bgf, bgg) -> EQ 25.34/10.83 new_esEs4(Nothing, Nothing, bd) -> True 25.34/10.83 new_ltEs20(vyw31001, vyw32001, app(ty_Ratio, dac)) -> new_ltEs6(vyw31001, vyw32001, dac) 25.34/10.83 new_esEs4(Nothing, Just(vyw3000), bd) -> False 25.34/10.83 new_esEs4(Just(vyw500), Nothing, bd) -> False 25.34/10.83 new_esEs20(vyw500, vyw3000, app(ty_[], bae)) -> new_esEs17(vyw500, vyw3000, bae) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_[], bdc)) -> new_ltEs5(vyw31000, vyw32000, bdc) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs15(vyw500, vyw3000) 25.34/10.83 new_esEs21(vyw31001, vyw32001, ty_Float) -> new_esEs11(vyw31001, vyw32001) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, ty_Int) -> new_ltEs15(vyw31002, vyw32002) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.83 new_esEs20(vyw500, vyw3000, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Ordering, bah) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.83 new_esEs5(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fh, ga, gb) -> new_asAs(new_esEs25(vyw500, vyw3000, fh), new_asAs(new_esEs24(vyw501, vyw3001, ga), new_esEs23(vyw502, vyw3002, gb))) 25.34/10.83 new_esEs30(vyw21, vyw16, app(ty_Ratio, chc)) -> new_esEs13(vyw21, vyw16, chc) 25.34/10.83 new_compare14(Float(vyw31000, Pos(vyw310010)), Float(vyw32000, Pos(vyw320010))) -> new_compare9(new_sr(vyw31000, Pos(vyw320010)), new_sr(Pos(vyw310010), vyw32000)) 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.83 new_lt12(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.83 new_compare211(vyw31000, vyw32000, False) -> new_compare16(vyw31000, vyw32000, new_ltEs16(vyw31000, vyw32000)) 25.34/10.83 new_esEs24(vyw501, vyw3001, app(ty_Ratio, cae)) -> new_esEs13(vyw501, vyw3001, cae) 25.34/10.83 new_esEs19(vyw501, vyw3001, app(app(ty_Either, gc), gd)) -> new_esEs6(vyw501, vyw3001, gc, gd) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, app(ty_Maybe, ccg)) -> new_ltEs11(vyw3100, vyw3200, ccg) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Maybe, cge)) -> new_esEs4(vyw500, vyw3000, cge) 25.34/10.83 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vyw500, vyw3000, cbe, cbf) 25.34/10.83 new_ltEs9(True, False) -> False 25.34/10.83 new_esEs9(EQ, EQ) -> True 25.34/10.83 new_lt12(vyw31000, vyw32000, app(app(ty_Either, eh), fa)) -> new_lt6(vyw31000, vyw32000, eh, fa) 25.34/10.83 new_lt11(vyw31001, vyw32001, app(ty_[], bgb)) -> new_lt18(vyw31001, vyw32001, bgb) 25.34/10.83 new_esEs21(vyw31001, vyw32001, app(ty_[], bgb)) -> new_esEs17(vyw31001, vyw32001, bgb) 25.34/10.83 new_lt11(vyw31001, vyw32001, ty_Double) -> new_lt9(vyw31001, vyw32001) 25.34/10.83 new_esEs29(vyw50, vyw300, app(ty_Ratio, fd)) -> new_esEs13(vyw50, vyw300, fd) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.83 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.34/10.83 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.34/10.83 new_lt5(vyw31000, vyw32000) -> new_esEs9(new_compare6(vyw31000, vyw32000), LT) 25.34/10.83 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.34/10.83 new_esEs21(vyw31001, vyw32001, ty_Double) -> new_esEs15(vyw31001, vyw32001) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vyw31000, vyw32000, bcf, bcg, bch) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), app(app(ty_Either, cde), cdf)) -> new_ltEs8(vyw31000, vyw32000, cde, cdf) 25.34/10.83 new_compare24(vyw31000, vyw32000, True) -> EQ 25.34/10.83 new_esEs28(vyw31000, vyw32000, app(app(ty_@2, dce), dcf)) -> new_esEs7(vyw31000, vyw32000, dce, dcf) 25.34/10.83 new_esEs20(vyw500, vyw3000, app(app(ty_Either, he), hf)) -> new_esEs6(vyw500, vyw3000, he, hf) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.83 new_lt20(vyw31000, vyw32000, ty_Int) -> new_lt7(vyw31000, vyw32000) 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_Char) -> new_compare6(vyw31000, vyw32000) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Int) -> new_ltEs15(vyw31000, vyw32000) 25.34/10.83 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.34/10.83 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.34/10.83 new_compare30(vyw31000, vyw32000, app(ty_[], ddg)) -> new_compare0(vyw31000, vyw32000, ddg) 25.34/10.83 new_primCmpInt(Neg(Zero), Neg(Succ(vyw320000))) -> new_primCmpNat0(Succ(vyw320000), Zero) 25.34/10.83 new_compare23(Nothing, Just(vyw3200), False, cgf) -> LT 25.34/10.83 new_esEs21(vyw31001, vyw32001, ty_Char) -> new_esEs10(vyw31001, vyw32001) 25.34/10.83 new_esEs29(vyw50, vyw300, app(ty_Maybe, bd)) -> new_esEs4(vyw50, vyw300, bd) 25.34/10.83 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.34/10.83 new_compare111(vyw86, vyw87, False, dcg) -> GT 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Float) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs11(vyw501, vyw3001) 25.34/10.83 new_compare110(vyw31000, vyw32000, True, bge, bgf, bgg) -> LT 25.34/10.83 new_ltEs6(vyw3100, vyw3200, eg) -> new_not(new_esEs9(new_compare7(vyw3100, vyw3200, eg), GT)) 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_@0) -> new_compare25(vyw31000, vyw32000) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, app(ty_Ratio, bea)) -> new_ltEs6(vyw31002, vyw32002, bea) 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_Integer) -> new_esEs14(vyw501, vyw3001) 25.34/10.83 new_esEs20(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.83 new_ltEs12(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare25(vyw3100, vyw3200), GT)) 25.34/10.83 new_esEs19(vyw501, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw501, vyw3001, gf, gg) 25.34/10.83 new_compare23(Nothing, Nothing, False, cgf) -> LT 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_Float) -> new_compare14(vyw31000, vyw32000) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), app(app(ty_@2, bca), bcb), bah) -> new_ltEs17(vyw31000, vyw32000, bca, bcb) 25.34/10.83 new_ltEs8(Left(vyw31000), Right(vyw32000), bcc, bah) -> True 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), app(ty_Ratio, cch)) -> new_ltEs6(vyw31000, vyw32000, cch) 25.34/10.83 new_not(False) -> True 25.34/10.83 new_lt11(vyw31001, vyw32001, app(ty_Ratio, bfc)) -> new_lt4(vyw31001, vyw32001, bfc) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_Ratio, cff)) -> new_esEs13(vyw500, vyw3000, cff) 25.34/10.83 new_esEs28(vyw31000, vyw32000, app(ty_Ratio, dbe)) -> new_esEs13(vyw31000, vyw32000, dbe) 25.34/10.83 new_esEs24(vyw501, vyw3001, app(ty_[], cbc)) -> new_esEs17(vyw501, vyw3001, cbc) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, app(app(ty_@2, dbc), dbd)) -> new_ltEs17(vyw31001, vyw32001, dbc, dbd) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Double) -> new_ltEs14(vyw31000, vyw32000) 25.34/10.83 new_esEs20(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.83 new_esEs28(vyw31000, vyw32000, ty_Int) -> new_esEs16(vyw31000, vyw32000) 25.34/10.83 new_esEs9(GT, GT) -> True 25.34/10.83 new_compare0(:(vyw31000, vyw31001), [], da) -> GT 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Integer) -> new_ltEs10(vyw31000, vyw32000) 25.34/10.83 new_esEs29(vyw50, vyw300, app(app(ty_Either, fb), fc)) -> new_esEs6(vyw50, vyw300, fb, fc) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.83 new_compare27(vyw31000, vyw32000, bge, bgf, bgg) -> new_compare28(vyw31000, vyw32000, new_esEs5(vyw31000, vyw32000, bge, bgf, bgg), bge, bgf, bgg) 25.34/10.83 new_esEs28(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs5(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs14(vyw500, vyw3000) 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_Char) -> new_esEs10(vyw501, vyw3001) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_Integer) -> new_esEs14(vyw502, vyw3002) 25.34/10.83 new_ltEs19(vyw3100, vyw3200, app(app(ty_@2, cgg), cgh)) -> new_ltEs17(vyw3100, vyw3200, cgg, cgh) 25.34/10.83 new_ltEs10(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare8(vyw3100, vyw3200), GT)) 25.34/10.83 new_esEs29(vyw50, vyw300, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw50, vyw300, ff, fg) 25.34/10.83 new_lt13(vyw31000, vyw32000) -> new_esEs9(new_compare26(vyw31000, vyw32000), LT) 25.34/10.83 new_ltEs8(Left(vyw31000), Left(vyw32000), ty_Float, bah) -> new_ltEs7(vyw31000, vyw32000) 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_Float) -> new_esEs11(vyw31000, vyw32000) 25.34/10.83 new_esEs9(EQ, GT) -> False 25.34/10.83 new_esEs9(GT, EQ) -> False 25.34/10.83 new_ltEs18(vyw31002, vyw32002, app(ty_[], beh)) -> new_ltEs5(vyw31002, vyw32002, beh) 25.34/10.83 new_esEs21(vyw31001, vyw32001, ty_Int) -> new_esEs16(vyw31001, vyw32001) 25.34/10.83 new_primPlusNat0(Succ(vyw1030), vyw300100) -> Succ(Succ(new_primPlusNat1(vyw1030, vyw300100))) 25.34/10.83 new_compare11(vyw31000, vyw32000, True, ee, ef) -> LT 25.34/10.83 new_esEs30(vyw21, vyw16, app(app(ty_Either, cha), chb)) -> new_esEs6(vyw21, vyw16, cha, chb) 25.34/10.83 new_ltEs11(Just(vyw31000), Just(vyw32000), ty_Ordering) -> new_ltEs16(vyw31000, vyw32000) 25.34/10.83 new_compare12(vyw31000, vyw32000, eh, fa) -> new_compare29(vyw31000, vyw32000, new_esEs6(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.83 new_lt20(vyw31000, vyw32000, app(ty_Maybe, dbf)) -> new_lt15(vyw31000, vyw32000, dbf) 25.34/10.83 new_esEs8(True, True) -> True 25.34/10.83 new_lt11(vyw31001, vyw32001, app(app(ty_Either, bfh), bga)) -> new_lt6(vyw31001, vyw32001, bfh, bga) 25.34/10.83 new_compare29(vyw31000, vyw32000, False, eh, fa) -> new_compare19(vyw31000, vyw32000, new_ltEs8(vyw31000, vyw32000, eh, fa), eh, fa) 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_Bool) -> new_esEs8(vyw501, vyw3001) 25.34/10.83 new_compare10(vyw31000, vyw32000, True) -> LT 25.34/10.83 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.34/10.83 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.34/10.83 new_primPlusNat1(Zero, Zero) -> Zero 25.34/10.83 new_compare0(:(vyw31000, vyw31001), :(vyw32000, vyw32001), da) -> new_primCompAux0(vyw31000, vyw32000, new_compare0(vyw31001, vyw32001, da), da) 25.34/10.83 new_compare13(vyw31000, vyw32000, bag) -> new_compare23(vyw31000, vyw32000, new_esEs4(vyw31000, vyw32000, bag), bag) 25.34/10.83 new_esEs22(vyw31000, vyw32000, app(ty_[], bgh)) -> new_esEs17(vyw31000, vyw32000, bgh) 25.34/10.83 new_compare111(vyw86, vyw87, True, dcg) -> LT 25.34/10.83 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccf)) -> new_esEs4(vyw500, vyw3000, ccf) 25.34/10.83 new_lt20(vyw31000, vyw32000, ty_Ordering) -> new_lt8(vyw31000, vyw32000) 25.34/10.83 new_esEs28(vyw31000, vyw32000, ty_Ordering) -> new_esEs9(vyw31000, vyw32000) 25.34/10.83 new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs8(vyw500, vyw3000) 25.34/10.83 new_ltEs15(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare9(vyw3100, vyw3200), GT)) 25.34/10.83 new_ltEs7(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare14(vyw3100, vyw3200), GT)) 25.34/10.83 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_@0) -> new_esEs12(vyw31000, vyw32000) 25.34/10.83 new_lt20(vyw31000, vyw32000, app(ty_[], dcd)) -> new_lt18(vyw31000, vyw32000, dcd) 25.34/10.83 new_esEs18(vyw500, vyw3000, app(app(ty_Either, dc), dd)) -> new_esEs6(vyw500, vyw3000, dc, dd) 25.34/10.83 new_primMulNat0(Succ(vyw50000), Succ(vyw300100)) -> new_primPlusNat0(new_primMulNat0(vyw50000, Succ(vyw300100)), vyw300100) 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_Integer) -> new_compare8(vyw31000, vyw32000) 25.34/10.83 new_lt18(vyw31000, vyw32000, bgh) -> new_esEs9(new_compare0(vyw31000, vyw32000, bgh), LT) 25.34/10.83 new_esEs6(Right(vyw500), Right(vyw3000), fb, app(ty_[], cgd)) -> new_esEs17(vyw500, vyw3000, cgd) 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_Bool) -> new_compare26(vyw31000, vyw32000) 25.34/10.83 new_lt11(vyw31001, vyw32001, ty_Ordering) -> new_lt8(vyw31001, vyw32001) 25.34/10.83 new_esEs12(@0, @0) -> True 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, ty_Bool) -> new_ltEs9(vyw31000, vyw32000) 25.34/10.83 new_compare29(vyw31000, vyw32000, True, eh, fa) -> EQ 25.34/10.83 new_esEs21(vyw31001, vyw32001, ty_Integer) -> new_esEs14(vyw31001, vyw32001) 25.34/10.83 new_primCmpNat0(Succ(vyw310000), Succ(vyw320000)) -> new_primCmpNat0(vyw310000, vyw320000) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_Double) -> new_esEs15(vyw502, vyw3002) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Char) -> new_esEs10(vyw21, vyw16) 25.34/10.83 new_lt6(vyw31000, vyw32000, eh, fa) -> new_esEs9(new_compare12(vyw31000, vyw32000, eh, fa), LT) 25.34/10.83 new_esEs21(vyw31001, vyw32001, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw31001, vyw32001, bgc, bgd) 25.34/10.83 new_lt20(vyw31000, vyw32000, ty_@0) -> new_lt16(vyw31000, vyw32000) 25.34/10.83 new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs16(vyw500, vyw3000) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Int) -> new_esEs16(vyw21, vyw16) 25.34/10.83 new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs10(vyw500, vyw3000) 25.34/10.83 new_ltEs11(Just(vyw31000), Nothing, ccg) -> False 25.34/10.83 new_ltEs19(vyw3100, vyw3200, ty_Char) -> new_ltEs4(vyw3100, vyw3200) 25.34/10.83 new_esEs21(vyw31001, vyw32001, ty_@0) -> new_esEs12(vyw31001, vyw32001) 25.34/10.83 new_ltEs18(vyw31002, vyw32002, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(vyw31002, vyw32002, bfa, bfb) 25.34/10.83 new_ltEs11(Nothing, Nothing, ccg) -> True 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), app(app(ty_@2, bh), ca)) -> new_esEs7(vyw500, vyw3000, bh, ca) 25.34/10.83 new_compare6(Char(vyw31000), Char(vyw32000)) -> new_primCmpNat0(vyw31000, vyw32000) 25.34/10.83 new_esEs4(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) 25.34/10.83 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.34/10.83 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.34/10.83 new_esEs28(vyw31000, vyw32000, app(app(ty_Either, dcb), dcc)) -> new_esEs6(vyw31000, vyw32000, dcb, dcc) 25.34/10.83 new_lt20(vyw31000, vyw32000, ty_Char) -> new_lt5(vyw31000, vyw32000) 25.34/10.83 new_primEqNat0(Zero, Zero) -> True 25.34/10.83 new_ltEs20(vyw31001, vyw32001, ty_Char) -> new_ltEs4(vyw31001, vyw32001) 25.34/10.83 new_compare26(vyw31000, vyw32000) -> new_compare24(vyw31000, vyw32000, new_esEs8(vyw31000, vyw32000)) 25.34/10.83 new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs9(vyw500, vyw3000) 25.34/10.83 new_esEs19(vyw501, vyw3001, ty_Int) -> new_esEs16(vyw501, vyw3001) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Bool) -> new_esEs8(vyw21, vyw16) 25.34/10.83 new_ltEs20(vyw31001, vyw32001, app(ty_[], dbb)) -> new_ltEs5(vyw31001, vyw32001, dbb) 25.34/10.83 new_compare210(vyw31000, vyw32000, False, ee, ef) -> new_compare11(vyw31000, vyw32000, new_ltEs17(vyw31000, vyw32000, ee, ef), ee, ef) 25.34/10.83 new_lt14(vyw31000, vyw32000) -> new_esEs9(new_compare8(vyw31000, vyw32000), LT) 25.34/10.83 new_compare30(vyw31000, vyw32000, ty_Double) -> new_compare17(vyw31000, vyw32000) 25.34/10.83 new_ltEs4(vyw3100, vyw3200) -> new_not(new_esEs9(new_compare6(vyw3100, vyw3200), GT)) 25.34/10.83 new_esEs9(LT, GT) -> False 25.34/10.83 new_esEs9(GT, LT) -> False 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(ty_Ratio, bcd)) -> new_ltEs6(vyw31000, vyw32000, bcd) 25.34/10.83 new_esEs17(:(vyw500, vyw501), [], db) -> False 25.34/10.83 new_esEs17([], :(vyw3000, vyw3001), db) -> False 25.34/10.83 new_asAs(False, vyw93) -> False 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Ordering) -> new_esEs9(vyw50, vyw300) 25.34/10.83 new_lt20(vyw31000, vyw32000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_lt17(vyw31000, vyw32000, dbg, dbh, dca) 25.34/10.83 new_esEs22(vyw31000, vyw32000, ty_Integer) -> new_esEs14(vyw31000, vyw32000) 25.34/10.83 new_esEs14(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.34/10.83 new_esEs23(vyw502, vyw3002, ty_Float) -> new_esEs11(vyw502, vyw3002) 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Bool) -> new_esEs8(vyw50, vyw300) 25.34/10.83 new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs15(vyw501, vyw3001) 25.34/10.83 new_esEs30(vyw21, vyw16, ty_Ordering) -> new_esEs9(vyw21, vyw16) 25.34/10.83 new_ltEs8(Right(vyw31000), Right(vyw32000), bcc, app(app(ty_@2, bdd), bde)) -> new_ltEs17(vyw31000, vyw32000, bdd, bde) 25.34/10.83 new_lt4(vyw31000, vyw32000, cg) -> new_esEs9(new_compare7(vyw31000, vyw32000, cg), LT) 25.34/10.83 new_esEs29(vyw50, vyw300, ty_Char) -> new_esEs10(vyw50, vyw300) 25.34/10.83 new_esEs20(vyw500, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw500, vyw3000, hh, baa) 25.34/10.83 25.34/10.83 The set Q consists of the following terms: 25.34/10.83 25.34/10.83 new_lt12(x0, x1, ty_Integer) 25.34/10.83 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.34/10.83 new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.83 new_lt19(x0, x1) 25.34/10.83 new_esEs28(x0, x1, ty_Ordering) 25.34/10.83 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs29(x0, x1, ty_Integer) 25.34/10.83 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_ltEs20(x0, x1, ty_@0) 25.34/10.83 new_lt20(x0, x1, ty_Float) 25.34/10.83 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_compare0([], [], x0) 25.34/10.83 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs19(x0, x1, ty_@0) 25.34/10.83 new_esEs30(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs16(x0, x1) 25.34/10.83 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs28(x0, x1, ty_Double) 25.34/10.83 new_esEs23(x0, x1, ty_Int) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs22(x0, x1, ty_Int) 25.34/10.83 new_esEs30(x0, x1, ty_@0) 25.34/10.83 new_ltEs20(x0, x1, ty_Bool) 25.34/10.83 new_primPlusNat1(Zero, Zero) 25.34/10.83 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.34/10.83 new_compare16(x0, x1, False) 25.34/10.83 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs22(x0, x1, ty_Char) 25.34/10.83 new_esEs23(x0, x1, ty_Ordering) 25.34/10.83 new_esEs19(x0, x1, ty_Bool) 25.34/10.83 new_primMulNat0(Zero, Succ(x0)) 25.34/10.83 new_esEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_compare30(x0, x1, ty_Ordering) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.83 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_compare30(x0, x1, ty_Int) 25.34/10.83 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.83 new_primMulNat0(Succ(x0), Succ(x1)) 25.34/10.83 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_primEqInt(Pos(Zero), Pos(Zero)) 25.34/10.83 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_primCompAux00(x0, GT) 25.34/10.83 new_compare30(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs23(x0, x1, ty_Char) 25.34/10.83 new_esEs20(x0, x1, ty_Integer) 25.34/10.83 new_esEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.83 new_esEs29(x0, x1, ty_Bool) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.83 new_esEs4(Nothing, Nothing, x0) 25.34/10.83 new_ltEs6(x0, x1, x2) 25.34/10.83 new_lt17(x0, x1, x2, x3, x4) 25.34/10.83 new_esEs24(x0, x1, app(ty_[], x2)) 25.34/10.83 new_primEqInt(Neg(Zero), Neg(Zero)) 25.34/10.83 new_pePe(True, x0) 25.34/10.83 new_ltEs18(x0, x1, ty_Float) 25.34/10.83 new_compare30(x0, x1, ty_Char) 25.34/10.83 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_lt13(x0, x1) 25.34/10.83 new_esEs23(x0, x1, ty_Double) 25.34/10.83 new_compare29(x0, x1, False, x2, x3) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs21(x0, x1, ty_@0) 25.34/10.83 new_ltEs16(GT, EQ) 25.34/10.83 new_ltEs16(EQ, GT) 25.34/10.83 new_primCmpNat0(Succ(x0), Zero) 25.34/10.83 new_compare30(x0, x1, ty_Double) 25.34/10.83 new_lt5(x0, x1) 25.34/10.83 new_compare25(@0, @0) 25.34/10.83 new_ltEs9(True, True) 25.34/10.83 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.83 new_esEs21(x0, x1, ty_Int) 25.34/10.83 new_esEs19(x0, x1, ty_Char) 25.34/10.83 new_esEs9(LT, LT) 25.34/10.83 new_ltEs16(LT, LT) 25.34/10.83 new_esEs21(x0, x1, ty_Integer) 25.34/10.83 new_esEs4(Just(x0), Nothing, x1) 25.34/10.83 new_esEs30(x0, x1, ty_Int) 25.34/10.83 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.83 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.83 new_esEs24(x0, x1, ty_Int) 25.34/10.83 new_esEs19(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs9(EQ, GT) 25.34/10.83 new_esEs9(GT, EQ) 25.34/10.83 new_lt11(x0, x1, ty_Integer) 25.34/10.83 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.34/10.83 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.34/10.83 new_esEs18(x0, x1, ty_Ordering) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.34/10.83 new_esEs18(x0, x1, ty_Integer) 25.34/10.83 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_compare30(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs8(False, True) 25.34/10.83 new_esEs8(True, False) 25.34/10.83 new_esEs29(x0, x1, ty_Float) 25.34/10.83 new_lt11(x0, x1, ty_Bool) 25.34/10.83 new_ltEs20(x0, x1, ty_Integer) 25.34/10.83 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs21(x0, x1, ty_Char) 25.34/10.83 new_lt12(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs8(True, True) 25.34/10.83 new_lt7(x0, x1) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.83 new_lt6(x0, x1, x2, x3) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.83 new_esEs21(x0, x1, ty_Bool) 25.34/10.83 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_primEqInt(Pos(Zero), Neg(Zero)) 25.34/10.83 new_primEqInt(Neg(Zero), Pos(Zero)) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.83 new_compare23(Nothing, Just(x0), False, x1) 25.34/10.83 new_compare210(x0, x1, False, x2, x3) 25.34/10.83 new_compare11(x0, x1, True, x2, x3) 25.34/10.83 new_esEs24(x0, x1, ty_Double) 25.34/10.83 new_esEs30(x0, x1, ty_Bool) 25.34/10.83 new_ltEs19(x0, x1, ty_Double) 25.34/10.83 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.34/10.83 new_esEs22(x0, x1, ty_Ordering) 25.34/10.83 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 25.34/10.83 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 25.34/10.83 new_esEs28(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs30(x0, x1, ty_Char) 25.34/10.83 new_ltEs20(x0, x1, ty_Ordering) 25.34/10.83 new_esEs29(x0, x1, ty_@0) 25.34/10.83 new_esEs24(x0, x1, ty_Char) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.34/10.83 new_esEs19(x0, x1, ty_Int) 25.34/10.83 new_compare8(Integer(x0), Integer(x1)) 25.34/10.83 new_esEs30(x0, x1, ty_Double) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Ordering) 25.34/10.83 new_compare19(x0, x1, False, x2, x3) 25.34/10.83 new_compare23(Just(x0), Nothing, False, x1) 25.34/10.83 new_primPlusNat0(Zero, x0) 25.34/10.83 new_esEs27(x0, x1, ty_Int) 25.34/10.83 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs19(x0, x1, ty_Double) 25.34/10.83 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs22(x0, x1, ty_Integer) 25.34/10.83 new_esEs28(x0, x1, ty_Bool) 25.34/10.83 new_ltEs19(x0, x1, ty_Int) 25.34/10.83 new_ltEs20(x0, x1, ty_Double) 25.34/10.83 new_esEs25(x0, x1, ty_Char) 25.34/10.83 new_ltEs5(x0, x1, x2) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.83 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.83 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.83 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs29(x0, x1, ty_Char) 25.34/10.83 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare30(x0, x1, ty_@0) 25.34/10.83 new_lt20(x0, x1, ty_@0) 25.34/10.83 new_esEs24(x0, x1, ty_@0) 25.34/10.83 new_esEs19(x0, x1, ty_Float) 25.34/10.83 new_ltEs16(GT, GT) 25.34/10.83 new_esEs23(x0, x1, ty_@0) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Char) 25.34/10.83 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.83 new_esEs21(x0, x1, ty_Double) 25.34/10.83 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare110(x0, x1, False, x2, x3, x4) 25.34/10.83 new_compare23(x0, x1, True, x2) 25.34/10.83 new_lt20(x0, x1, app(ty_[], x2)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.34/10.83 new_compare24(x0, x1, False) 25.34/10.83 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_ltEs19(x0, x1, ty_Float) 25.34/10.83 new_esEs10(Char(x0), Char(x1)) 25.34/10.83 new_compare210(x0, x1, True, x2, x3) 25.34/10.83 new_ltEs16(LT, EQ) 25.34/10.83 new_ltEs16(EQ, LT) 25.34/10.83 new_esEs30(x0, x1, ty_Float) 25.34/10.83 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.83 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.34/10.83 new_ltEs11(Just(x0), Nothing, x1) 25.34/10.83 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare6(Char(x0), Char(x1)) 25.34/10.83 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.83 new_asAs(False, x0) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Bool) 25.34/10.83 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs25(x0, x1, ty_Int) 25.34/10.83 new_esEs29(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_primEqNat0(Zero, Succ(x0)) 25.34/10.83 new_esEs21(x0, x1, ty_Ordering) 25.34/10.83 new_ltEs7(x0, x1) 25.34/10.83 new_compare211(x0, x1, True) 25.34/10.83 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs22(x0, x1, ty_Bool) 25.34/10.83 new_lt11(x0, x1, ty_Char) 25.34/10.83 new_esEs17([], :(x0, x1), x2) 25.34/10.83 new_ltEs18(x0, x1, ty_Integer) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.83 new_esEs22(x0, x1, app(ty_[], x2)) 25.34/10.83 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.83 new_ltEs9(False, True) 25.34/10.83 new_ltEs9(True, False) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Integer) 25.34/10.83 new_esEs17(:(x0, x1), [], x2) 25.34/10.83 new_ltEs14(x0, x1) 25.34/10.83 new_esEs24(x0, x1, ty_Integer) 25.34/10.83 new_primEqNat0(Succ(x0), Succ(x1)) 25.34/10.83 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.34/10.83 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.34/10.83 new_ltEs15(x0, x1) 25.34/10.83 new_lt12(x0, x1, ty_@0) 25.34/10.83 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_lt11(x0, x1, ty_Int) 25.34/10.83 new_compare23(Just(x0), Just(x1), False, x2) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 25.34/10.83 new_esEs18(x0, x1, ty_Bool) 25.34/10.83 new_esEs25(x0, x1, ty_Float) 25.34/10.83 new_esEs20(x0, x1, ty_Float) 25.34/10.83 new_esEs18(x0, x1, ty_Float) 25.34/10.83 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs20(x0, x1, ty_Bool) 25.34/10.83 new_lt10(x0, x1, x2, x3) 25.34/10.83 new_esEs24(x0, x1, ty_Ordering) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.34/10.83 new_compare0(:(x0, x1), [], x2) 25.34/10.83 new_compare18(x0, x1, x2, x3) 25.34/10.83 new_esEs23(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs29(x0, x1, ty_Ordering) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 25.34/10.83 new_compare23(Nothing, Nothing, False, x0) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.34/10.83 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs18(x0, x1, ty_Char) 25.34/10.83 new_compare28(x0, x1, True, x2, x3, x4) 25.34/10.83 new_primPlusNat1(Succ(x0), Zero) 25.34/10.83 new_ltEs18(x0, x1, ty_Bool) 25.34/10.83 new_lt9(x0, x1) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.34/10.83 new_esEs20(x0, x1, ty_Int) 25.34/10.83 new_pePe(False, x0) 25.34/10.83 new_esEs28(x0, x1, ty_Char) 25.34/10.83 new_lt11(x0, x1, ty_Float) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Float) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Ordering) 25.34/10.83 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.34/10.83 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Int) 25.34/10.83 new_lt12(x0, x1, ty_Double) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 25.34/10.83 new_compare10(x0, x1, False) 25.34/10.83 new_lt11(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs18(x0, x1, ty_Int) 25.34/10.83 new_esEs20(x0, x1, ty_Char) 25.34/10.83 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs11(Nothing, Just(x0), x1) 25.34/10.83 new_esEs22(x0, x1, ty_Float) 25.34/10.83 new_compare26(x0, x1) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.83 new_esEs28(x0, x1, ty_Int) 25.34/10.83 new_esEs4(Nothing, Just(x0), x1) 25.34/10.83 new_esEs25(x0, x1, ty_Integer) 25.34/10.83 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 25.34/10.83 new_esEs17([], [], x0) 25.34/10.83 new_esEs9(EQ, EQ) 25.34/10.83 new_lt20(x0, x1, ty_Double) 25.34/10.83 new_ltEs16(EQ, EQ) 25.34/10.83 new_primCompAux00(x0, LT) 25.34/10.83 new_esEs27(x0, x1, ty_Integer) 25.34/10.83 new_compare30(x0, x1, ty_Float) 25.34/10.83 new_ltEs18(x0, x1, ty_Char) 25.34/10.83 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_@0) 25.34/10.83 new_primEqNat0(Succ(x0), Zero) 25.34/10.83 new_primMulNat0(Zero, Zero) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.34/10.83 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_lt20(x0, x1, ty_Ordering) 25.34/10.83 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_lt18(x0, x1, x2) 25.34/10.83 new_compare14(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.34/10.83 new_ltEs20(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 25.34/10.83 new_esEs28(x0, x1, ty_Float) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Bool) 25.34/10.83 new_ltEs18(x0, x1, ty_Int) 25.34/10.83 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_lt11(x0, x1, ty_Double) 25.34/10.83 new_esEs24(x0, x1, ty_Float) 25.34/10.83 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_primMulInt(Pos(x0), Pos(x1)) 25.34/10.83 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_ltEs18(x0, x1, ty_Ordering) 25.34/10.83 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_ltEs19(x0, x1, ty_@0) 25.34/10.83 new_compare12(x0, x1, x2, x3) 25.34/10.83 new_compare11(x0, x1, False, x2, x3) 25.34/10.83 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 25.34/10.83 new_ltEs11(Nothing, Nothing, x0) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.34/10.83 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.34/10.83 new_lt16(x0, x1) 25.34/10.83 new_primCmpNat0(Zero, Succ(x0)) 25.34/10.83 new_ltEs19(x0, x1, app(ty_[], x2)) 25.34/10.83 new_ltEs19(x0, x1, ty_Integer) 25.34/10.83 new_lt8(x0, x1) 25.34/10.83 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.34/10.83 new_compare14(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.34/10.83 new_compare14(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.34/10.83 new_compare30(x0, x1, app(ty_[], x2)) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.34/10.83 new_esEs21(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.83 new_sr0(Integer(x0), Integer(x1)) 25.34/10.83 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.34/10.83 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.83 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs20(x0, x1, ty_Ordering) 25.34/10.83 new_not(True) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Int) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.34/10.83 new_compare29(x0, x1, True, x2, x3) 25.34/10.83 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.34/10.83 new_primPlusNat1(Zero, Succ(x0)) 25.34/10.83 new_compare0([], :(x0, x1), x2) 25.34/10.83 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_esEs29(x0, x1, ty_Double) 25.34/10.83 new_lt11(x0, x1, ty_Ordering) 25.34/10.83 new_esEs25(x0, x1, ty_Bool) 25.34/10.83 new_esEs15(Double(x0, x1), Double(x2, x3)) 25.34/10.83 new_primMulInt(Pos(x0), Neg(x1)) 25.34/10.83 new_primMulInt(Neg(x0), Pos(x1)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.34/10.83 new_primCompAux00(x0, EQ) 25.34/10.83 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 25.34/10.83 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.34/10.83 new_lt12(x0, x1, ty_Ordering) 25.34/10.83 new_esEs28(x0, x1, ty_Integer) 25.34/10.83 new_lt14(x0, x1) 25.34/10.83 new_ltEs19(x0, x1, ty_Char) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.34/10.83 new_esEs24(x0, x1, ty_Bool) 25.34/10.83 new_esEs20(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs9(LT, EQ) 25.34/10.83 new_esEs9(EQ, LT) 25.34/10.83 new_compare24(x0, x1, True) 25.34/10.83 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Double) 25.34/10.83 new_esEs17(:(x0, x1), :(x2, x3), x4) 25.34/10.83 new_esEs9(GT, GT) 25.34/10.83 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs16(LT, GT) 25.34/10.83 new_ltEs16(GT, LT) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Integer) 25.34/10.83 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 25.34/10.83 new_ltEs10(x0, x1) 25.34/10.83 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.34/10.83 new_compare30(x0, x1, ty_Integer) 25.34/10.83 new_lt11(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_compare27(x0, x1, x2, x3, x4) 25.34/10.83 new_esEs18(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Char) 25.34/10.83 new_esEs23(x0, x1, ty_Float) 25.34/10.83 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_asAs(True, x0) 25.34/10.83 new_primMulNat0(Succ(x0), Zero) 25.34/10.83 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 25.34/10.83 new_compare111(x0, x1, True, x2) 25.34/10.83 new_compare14(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.34/10.83 new_ltEs19(x0, x1, ty_Bool) 25.34/10.83 new_esEs29(x0, x1, ty_Int) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.34/10.83 new_esEs9(LT, GT) 25.34/10.83 new_esEs9(GT, LT) 25.34/10.83 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.34/10.83 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.34/10.83 new_compare30(x0, x1, ty_Bool) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) 25.34/10.83 new_lt20(x0, x1, ty_Bool) 25.34/10.83 new_esEs23(x0, x1, ty_Bool) 25.34/10.83 new_esEs19(x0, x1, ty_Ordering) 25.34/10.83 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_lt15(x0, x1, x2) 25.34/10.83 new_esEs25(x0, x1, app(ty_[], x2)) 25.34/10.83 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs20(x0, x1, ty_Float) 25.34/10.83 new_esEs12(@0, @0) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.34/10.83 new_compare9(x0, x1) 25.34/10.83 new_lt11(x0, x1, ty_@0) 25.34/10.83 new_compare16(x0, x1, True) 25.34/10.83 new_esEs4(Just(x0), Just(x1), ty_Float) 25.34/10.83 new_primPlusNat0(Succ(x0), x1) 25.34/10.83 new_esEs11(Float(x0, x1), Float(x2, x3)) 25.34/10.83 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.34/10.83 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_primCompAux0(x0, x1, x2, x3) 25.34/10.83 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs18(x0, x1, app(ty_[], x2)) 25.34/10.83 new_compare28(x0, x1, False, x2, x3, x4) 25.34/10.83 new_esEs25(x0, x1, ty_Ordering) 25.34/10.83 new_compare10(x0, x1, True) 25.34/10.83 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.83 new_esEs21(x0, x1, ty_Float) 25.34/10.83 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.34/10.83 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.34/10.83 new_ltEs19(x0, x1, ty_Ordering) 25.34/10.83 new_compare19(x0, x1, True, x2, x3) 25.34/10.83 new_esEs26(x0, x1, ty_Int) 25.34/10.83 new_esEs25(x0, x1, ty_Double) 25.34/10.83 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.34/10.83 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_compare111(x0, x1, False, x2) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.34/10.83 new_lt20(x0, x1, ty_Integer) 25.34/10.83 new_ltEs4(x0, x1) 25.34/10.83 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 25.34/10.83 new_primEqNat0(Zero, Zero) 25.34/10.83 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.34/10.83 new_lt20(x0, x1, ty_Char) 25.34/10.83 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.34/10.83 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.34/10.83 new_ltEs9(False, False) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.34/10.83 new_not(False) 25.34/10.83 new_esEs25(x0, x1, ty_@0) 25.34/10.83 new_esEs22(x0, x1, ty_@0) 25.34/10.83 new_ltEs20(x0, x1, ty_Char) 25.34/10.83 new_esEs8(False, False) 25.34/10.83 new_esEs30(x0, x1, ty_Integer) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 25.34/10.83 new_ltEs18(x0, x1, ty_@0) 25.34/10.83 new_esEs19(x0, x1, ty_Integer) 25.34/10.83 new_esEs22(x0, x1, ty_Double) 25.34/10.83 new_compare15(x0, x1) 25.34/10.83 new_primMulInt(Neg(x0), Neg(x1)) 25.34/10.83 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_lt11(x0, x1, app(ty_[], x2)) 25.34/10.83 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.34/10.83 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_Double) 25.34/10.83 new_lt12(x0, x1, ty_Bool) 25.34/10.83 new_ltEs12(x0, x1) 25.34/10.83 new_lt12(x0, x1, ty_Float) 25.34/10.83 new_compare13(x0, x1, x2) 25.34/10.83 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.34/10.83 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_esEs26(x0, x1, ty_Integer) 25.34/10.83 new_esEs18(x0, x1, ty_@0) 25.34/10.83 new_sr(x0, x1) 25.34/10.83 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.34/10.83 new_esEs30(x0, x1, ty_Ordering) 25.34/10.83 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.34/10.83 new_compare110(x0, x1, True, x2, x3, x4) 25.34/10.83 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_compare211(x0, x1, False) 25.34/10.83 new_lt20(x0, x1, ty_Int) 25.34/10.83 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs18(x0, x1, ty_Double) 25.34/10.83 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs23(x0, x1, ty_Integer) 25.34/10.83 new_esEs20(x0, x1, ty_@0) 25.34/10.83 new_primPlusNat1(Succ(x0), Succ(x1)) 25.34/10.83 new_esEs28(x0, x1, ty_@0) 25.34/10.83 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.34/10.83 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.34/10.83 new_ltEs18(x0, x1, ty_Double) 25.34/10.83 new_esEs19(x0, x1, app(ty_Maybe, x2)) 25.34/10.83 new_ltEs20(x0, x1, ty_Int) 25.34/10.83 new_esEs20(x0, x1, ty_Double) 25.34/10.83 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.34/10.83 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.34/10.83 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.34/10.83 new_ltEs18(x0, x1, app(ty_[], x2)) 25.34/10.83 new_lt12(x0, x1, ty_Char) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.34/10.83 new_primCmpNat0(Succ(x0), Succ(x1)) 25.34/10.83 new_lt12(x0, x1, ty_Int) 25.34/10.83 new_primCmpNat0(Zero, Zero) 25.34/10.83 new_esEs6(Left(x0), Right(x1), x2, x3) 25.34/10.83 new_esEs6(Right(x0), Left(x1), x2, x3) 25.34/10.83 new_esEs14(Integer(x0), Integer(x1)) 25.34/10.83 new_lt4(x0, x1, x2) 25.34/10.83 new_compare0(:(x0, x1), :(x2, x3), x4) 25.34/10.83 new_ltEs11(Just(x0), Just(x1), ty_@0) 25.34/10.83 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 25.34/10.83 25.34/10.83 We have to consider all minimal (P,Q,R)-chains. 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (46) QDPSizeChangeProof (EQUIVALENT) 25.34/10.83 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. 25.34/10.83 25.34/10.83 From the DPs we obtained the following set of size-change graphs: 25.34/10.83 *new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw33, Nothing, h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 9 >= 5 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, False, h, ba) -> new_lookupWithDefaultFM04(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Just(vyw300), False, ba), GT), h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM00(vyw4, Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupWithDefaultFM01(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Just(vyw300), False, ba), LT), h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 4 >= 8, 5 >= 9 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM00(vyw4, Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupWithDefaultFM0(vyw4, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare23(Nothing, Nothing, True, ba), GT), h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 4 >= 7, 5 >= 8 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM0(vyw4, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Nothing, h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 5 >= 2, 7 >= 4, 8 >= 5 25.34/10.83 25.34/10.83 25.34/10.83 *new_lookupWithDefaultFM04(vyw4, vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupWithDefaultFM00(vyw4, vyw34, Nothing, h, ba) 25.34/10.83 The graph contains the following edges 1 >= 1, 6 >= 2, 8 >= 4, 9 >= 5 25.34/10.83 25.34/10.83 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (47) 25.34/10.83 YES 25.34/10.83 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (48) 25.34/10.83 Obligation: 25.34/10.83 Q DP problem: 25.34/10.83 The TRS P consists of the following rules: 25.34/10.83 25.34/10.83 new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, vyw30000) 25.34/10.83 25.34/10.83 R is empty. 25.34/10.83 Q is empty. 25.34/10.83 We have to consider all minimal (P,Q,R)-chains. 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (49) QDPSizeChangeProof (EQUIVALENT) 25.34/10.83 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. 25.34/10.83 25.34/10.83 From the DPs we obtained the following set of size-change graphs: 25.34/10.83 *new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, vyw30000) 25.34/10.83 The graph contains the following edges 1 > 1, 2 > 2 25.34/10.83 25.34/10.83 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (50) 25.34/10.83 YES 25.34/10.83 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (51) 25.34/10.83 Obligation: 25.34/10.83 Q DP problem: 25.34/10.83 The TRS P consists of the following rules: 25.34/10.83 25.34/10.83 new_primPlusNat(Succ(vyw10300), Succ(vyw3001000)) -> new_primPlusNat(vyw10300, vyw3001000) 25.34/10.83 25.34/10.83 R is empty. 25.34/10.83 Q is empty. 25.34/10.83 We have to consider all minimal (P,Q,R)-chains. 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (52) QDPSizeChangeProof (EQUIVALENT) 25.34/10.83 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. 25.34/10.83 25.34/10.83 From the DPs we obtained the following set of size-change graphs: 25.34/10.83 *new_primPlusNat(Succ(vyw10300), Succ(vyw3001000)) -> new_primPlusNat(vyw10300, vyw3001000) 25.34/10.83 The graph contains the following edges 1 > 1, 2 > 2 25.34/10.83 25.34/10.83 25.34/10.83 ---------------------------------------- 25.34/10.83 25.34/10.83 (53) 25.34/10.83 YES 25.35/10.87 EOF