21.40/9.82 YES 24.54/10.68 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 24.54/10.68 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 24.54/10.68 24.54/10.68 24.54/10.68 H-Termination with start terms of the given HASKELL could be proven: 24.54/10.68 24.54/10.68 (0) HASKELL 24.54/10.68 (1) LR [EQUIVALENT, 0 ms] 24.54/10.68 (2) HASKELL 24.54/10.68 (3) CR [EQUIVALENT, 0 ms] 24.54/10.68 (4) HASKELL 24.54/10.68 (5) IFR [EQUIVALENT, 0 ms] 24.54/10.68 (6) HASKELL 24.54/10.68 (7) BR [EQUIVALENT, 0 ms] 24.54/10.68 (8) HASKELL 24.54/10.68 (9) COR [EQUIVALENT, 7 ms] 24.54/10.68 (10) HASKELL 24.54/10.68 (11) LetRed [EQUIVALENT, 0 ms] 24.54/10.68 (12) HASKELL 24.54/10.68 (13) NumRed [SOUND, 15 ms] 24.54/10.68 (14) HASKELL 24.54/10.68 (15) Narrow [SOUND, 0 ms] 24.54/10.68 (16) AND 24.54/10.68 (17) QDP 24.54/10.68 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.54/10.68 (19) YES 24.54/10.68 (20) QDP 24.54/10.68 (21) DependencyGraphProof [EQUIVALENT, 0 ms] 24.54/10.68 (22) AND 24.54/10.68 (23) QDP 24.54/10.68 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.54/10.68 (25) YES 24.54/10.68 (26) QDP 24.54/10.68 (27) TransformationProof [EQUIVALENT, 1885 ms] 24.54/10.68 (28) QDP 24.54/10.68 (29) DependencyGraphProof [EQUIVALENT, 0 ms] 24.54/10.68 (30) QDP 24.54/10.68 (31) TransformationProof [EQUIVALENT, 0 ms] 24.54/10.68 (32) QDP 24.54/10.68 (33) TransformationProof [EQUIVALENT, 0 ms] 24.54/10.68 (34) QDP 24.54/10.68 (35) TransformationProof [EQUIVALENT, 0 ms] 24.54/10.68 (36) QDP 24.54/10.68 (37) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.54/10.68 (38) YES 24.54/10.68 (39) QDP 24.54/10.68 (40) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.54/10.68 (41) YES 24.54/10.68 (42) QDP 24.54/10.68 (43) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.54/10.68 (44) YES 24.54/10.68 (45) QDP 24.54/10.68 (46) QDPSizeChangeProof [EQUIVALENT, 63 ms] 24.54/10.68 (47) YES 24.54/10.68 (48) QDP 24.54/10.68 (49) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.54/10.68 (50) YES 24.54/10.68 (51) QDP 24.54/10.68 (52) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.54/10.68 (53) YES 24.54/10.68 24.54/10.68 24.54/10.68 ---------------------------------------- 24.54/10.68 24.54/10.68 (0) 24.54/10.68 Obligation: 24.54/10.68 mainModule Main 24.54/10.68 module FiniteMap where { 24.54/10.68 import qualified Main; 24.54/10.68 import qualified Maybe; 24.54/10.68 import qualified Prelude; 24.54/10.68 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.54/10.68 24.54/10.68 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.54/10.68 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.54/10.68 } 24.54/10.68 fmToList :: FiniteMap b a -> [(b,a)]; 24.54/10.68 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 24.54/10.68 24.54/10.68 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 24.54/10.68 foldFM k z EmptyFM = z; 24.54/10.68 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.54/10.68 24.54/10.68 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.54/10.68 lookupFM EmptyFM key = Nothing; 24.54/10.68 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.54/10.68 | key_to_find > key = lookupFM fm_r key_to_find 24.54/10.68 | otherwise = Just elt; 24.54/10.68 24.54/10.68 sizeFM :: FiniteMap b a -> Int; 24.54/10.68 sizeFM EmptyFM = 0; 24.54/10.68 sizeFM (Branch _ _ size _ _) = size; 24.54/10.68 24.54/10.68 } 24.54/10.68 module Maybe where { 24.54/10.68 import qualified FiniteMap; 24.54/10.68 import qualified Main; 24.54/10.68 import qualified Prelude; 24.54/10.68 } 24.54/10.68 module Main where { 24.54/10.68 import qualified FiniteMap; 24.54/10.68 import qualified Maybe; 24.54/10.68 import qualified Prelude; 24.54/10.68 } 24.54/10.68 24.54/10.68 ---------------------------------------- 24.54/10.68 24.54/10.68 (1) LR (EQUIVALENT) 24.54/10.68 Lambda Reductions: 24.54/10.69 The following Lambda expression 24.54/10.69 "\keyeltrest->(key,elt) : rest" 24.54/10.69 is transformed to 24.54/10.69 "fmToList0 key elt rest = (key,elt) : rest; 24.54/10.69 " 24.54/10.69 24.54/10.69 ---------------------------------------- 24.54/10.69 24.54/10.69 (2) 24.54/10.69 Obligation: 24.54/10.69 mainModule Main 24.54/10.69 module FiniteMap where { 24.54/10.69 import qualified Main; 24.54/10.69 import qualified Maybe; 24.54/10.69 import qualified Prelude; 24.54/10.69 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.54/10.69 24.54/10.69 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.54/10.69 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.54/10.69 } 24.54/10.69 fmToList :: FiniteMap a b -> [(a,b)]; 24.54/10.69 fmToList fm = foldFM fmToList0 [] fm; 24.54/10.69 24.54/10.69 fmToList0 key elt rest = (key,elt) : rest; 24.54/10.69 24.54/10.69 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 24.54/10.69 foldFM k z EmptyFM = z; 24.54/10.69 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.54/10.69 24.54/10.69 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.54/10.69 lookupFM EmptyFM key = Nothing; 24.54/10.69 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.54/10.69 | key_to_find > key = lookupFM fm_r key_to_find 24.54/10.69 | otherwise = Just elt; 24.54/10.69 24.54/10.69 sizeFM :: FiniteMap b a -> Int; 24.54/10.69 sizeFM EmptyFM = 0; 24.54/10.69 sizeFM (Branch _ _ size _ _) = size; 24.54/10.69 24.54/10.69 } 24.54/10.69 module Maybe where { 24.54/10.69 import qualified FiniteMap; 24.54/10.69 import qualified Main; 24.54/10.69 import qualified Prelude; 24.54/10.69 } 24.54/10.69 module Main where { 24.54/10.69 import qualified FiniteMap; 24.54/10.69 import qualified Maybe; 24.54/10.69 import qualified Prelude; 24.54/10.69 } 24.54/10.69 24.54/10.69 ---------------------------------------- 24.54/10.69 24.54/10.69 (3) CR (EQUIVALENT) 24.54/10.69 Case Reductions: 24.54/10.69 The following Case expression 24.54/10.69 "case compare x y of { 24.54/10.69 EQ -> o; 24.54/10.69 LT -> LT; 24.54/10.69 GT -> GT} 24.54/10.69 " 24.54/10.69 is transformed to 24.54/10.69 "primCompAux0 o EQ = o; 24.54/10.69 primCompAux0 o LT = LT; 24.54/10.69 primCompAux0 o GT = GT; 24.54/10.69 " 24.54/10.69 24.54/10.69 ---------------------------------------- 24.54/10.69 24.54/10.69 (4) 24.54/10.69 Obligation: 24.54/10.69 mainModule Main 24.54/10.69 module FiniteMap where { 24.54/10.69 import qualified Main; 24.54/10.69 import qualified Maybe; 24.54/10.69 import qualified Prelude; 24.54/10.69 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.54/10.69 24.54/10.69 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.54/10.69 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.54/10.69 } 24.54/10.69 fmToList :: FiniteMap a b -> [(a,b)]; 24.54/10.69 fmToList fm = foldFM fmToList0 [] fm; 24.54/10.69 24.54/10.69 fmToList0 key elt rest = (key,elt) : rest; 24.54/10.69 24.54/10.69 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 24.54/10.69 foldFM k z EmptyFM = z; 24.54/10.69 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.54/10.69 24.54/10.69 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.54/10.69 lookupFM EmptyFM key = Nothing; 24.54/10.69 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.54/10.69 | key_to_find > key = lookupFM fm_r key_to_find 24.54/10.69 | otherwise = Just elt; 24.54/10.69 24.54/10.69 sizeFM :: FiniteMap a b -> Int; 24.54/10.69 sizeFM EmptyFM = 0; 24.54/10.69 sizeFM (Branch _ _ size _ _) = size; 24.54/10.69 24.54/10.69 } 24.54/10.69 module Maybe where { 24.54/10.69 import qualified FiniteMap; 24.54/10.69 import qualified Main; 24.54/10.69 import qualified Prelude; 24.54/10.69 } 24.54/10.69 module Main where { 24.54/10.69 import qualified FiniteMap; 24.54/10.69 import qualified Maybe; 24.54/10.69 import qualified Prelude; 24.54/10.69 } 24.54/10.69 24.54/10.69 ---------------------------------------- 24.54/10.69 24.54/10.69 (5) IFR (EQUIVALENT) 24.54/10.69 If Reductions: 24.54/10.69 The following If expression 24.54/10.69 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 24.54/10.69 is transformed to 24.54/10.69 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 24.54/10.69 primDivNatS0 x y False = Zero; 24.54/10.69 " 24.54/10.69 The following If expression 24.54/10.69 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 24.54/10.69 is transformed to 24.54/10.69 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 24.54/10.69 primModNatS0 x y False = Succ x; 24.54/10.69 " 24.54/10.69 24.54/10.69 ---------------------------------------- 24.54/10.69 24.54/10.69 (6) 24.54/10.69 Obligation: 24.54/10.69 mainModule Main 24.54/10.69 module FiniteMap where { 24.54/10.69 import qualified Main; 24.54/10.69 import qualified Maybe; 24.54/10.69 import qualified Prelude; 24.54/10.69 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.54/10.69 24.54/10.69 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.54/10.69 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.54/10.69 } 24.54/10.69 fmToList :: FiniteMap b a -> [(b,a)]; 24.54/10.69 fmToList fm = foldFM fmToList0 [] fm; 24.54/10.69 24.54/10.69 fmToList0 key elt rest = (key,elt) : rest; 24.54/10.69 24.54/10.69 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 24.54/10.69 foldFM k z EmptyFM = z; 24.54/10.69 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.54/10.69 24.54/10.69 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.54/10.69 lookupFM EmptyFM key = Nothing; 24.54/10.69 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.54/10.69 | key_to_find > key = lookupFM fm_r key_to_find 24.54/10.69 | otherwise = Just elt; 24.54/10.69 24.54/10.69 sizeFM :: FiniteMap b a -> Int; 24.54/10.69 sizeFM EmptyFM = 0; 24.54/10.69 sizeFM (Branch _ _ size _ _) = size; 24.54/10.69 24.54/10.69 } 24.54/10.69 module Maybe where { 24.54/10.69 import qualified FiniteMap; 24.54/10.69 import qualified Main; 24.54/10.69 import qualified Prelude; 24.54/10.69 } 24.54/10.69 module Main where { 24.54/10.69 import qualified FiniteMap; 24.54/10.69 import qualified Maybe; 24.54/10.69 import qualified Prelude; 24.54/10.69 } 24.54/10.69 24.54/10.69 ---------------------------------------- 24.54/10.69 24.54/10.69 (7) BR (EQUIVALENT) 24.54/10.69 Replaced joker patterns by fresh variables and removed binding patterns. 24.54/10.69 ---------------------------------------- 24.54/10.69 24.54/10.69 (8) 24.54/10.69 Obligation: 24.54/10.69 mainModule Main 24.54/10.69 module FiniteMap where { 24.54/10.69 import qualified Main; 24.54/10.69 import qualified Maybe; 24.54/10.69 import qualified Prelude; 24.54/10.69 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.54/10.69 24.54/10.69 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.54/10.69 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.54/10.71 } 24.54/10.71 fmToList :: FiniteMap a b -> [(a,b)]; 24.54/10.71 fmToList fm = foldFM fmToList0 [] fm; 24.54/10.71 24.54/10.71 fmToList0 key elt rest = (key,elt) : rest; 24.54/10.71 24.54/10.71 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 24.54/10.71 foldFM k z EmptyFM = z; 24.54/10.71 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.54/10.71 24.54/10.71 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.54/10.71 lookupFM EmptyFM key = Nothing; 24.54/10.71 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 24.54/10.71 | key_to_find > key = lookupFM fm_r key_to_find 24.54/10.71 | otherwise = Just elt; 24.54/10.71 24.54/10.71 sizeFM :: FiniteMap b a -> Int; 24.54/10.71 sizeFM EmptyFM = 0; 24.54/10.71 sizeFM (Branch zz vuu size vuv vuw) = size; 24.54/10.71 24.54/10.71 } 24.54/10.71 module Maybe where { 24.54/10.71 import qualified FiniteMap; 24.54/10.71 import qualified Main; 24.54/10.71 import qualified Prelude; 24.54/10.71 } 24.54/10.71 module Main where { 24.54/10.71 import qualified FiniteMap; 24.54/10.71 import qualified Maybe; 24.54/10.71 import qualified Prelude; 24.54/10.71 } 24.54/10.71 24.54/10.71 ---------------------------------------- 24.54/10.71 24.54/10.71 (9) COR (EQUIVALENT) 24.54/10.71 Cond Reductions: 24.54/10.71 The following Function with conditions 24.54/10.71 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 24.54/10.71 " 24.54/10.71 is transformed to 24.54/10.71 "compare x y = compare3 x y; 24.54/10.71 " 24.54/10.71 "compare0 x y True = GT; 24.54/10.71 " 24.54/10.71 "compare1 x y True = LT; 24.54/10.71 compare1 x y False = compare0 x y otherwise; 24.54/10.71 " 24.54/10.71 "compare2 x y True = EQ; 24.54/10.71 compare2 x y False = compare1 x y (x <= y); 24.54/10.71 " 24.54/10.71 "compare3 x y = compare2 x y (x == y); 24.54/10.71 " 24.54/10.71 The following Function with conditions 24.54/10.71 "absReal x|x >= 0x|otherwise`negate` x; 24.54/10.71 " 24.54/10.71 is transformed to 24.54/10.71 "absReal x = absReal2 x; 24.54/10.71 " 24.54/10.71 "absReal1 x True = x; 24.54/10.71 absReal1 x False = absReal0 x otherwise; 24.54/10.71 " 24.54/10.71 "absReal0 x True = `negate` x; 24.54/10.71 " 24.54/10.71 "absReal2 x = absReal1 x (x >= 0); 24.54/10.71 " 24.54/10.71 The following Function with conditions 24.54/10.71 "gcd' x 0 = x; 24.54/10.71 gcd' x y = gcd' y (x `rem` y); 24.54/10.71 " 24.54/10.71 is transformed to 24.54/10.71 "gcd' x vuy = gcd'2 x vuy; 24.54/10.71 gcd' x y = gcd'0 x y; 24.54/10.71 " 24.54/10.71 "gcd'0 x y = gcd' y (x `rem` y); 24.54/10.71 " 24.54/10.71 "gcd'1 True x vuy = x; 24.54/10.71 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 24.54/10.71 " 24.54/10.71 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 24.54/10.71 gcd'2 vvw vvx = gcd'0 vvw vvx; 24.54/10.71 " 24.54/10.71 The following Function with conditions 24.54/10.71 "gcd 0 0 = error []; 24.54/10.71 gcd x y = gcd' (abs x) (abs y) where { 24.54/10.71 gcd' x 0 = x; 24.54/10.71 gcd' x y = gcd' y (x `rem` y); 24.54/10.71 } 24.54/10.71 ; 24.54/10.71 " 24.54/10.71 is transformed to 24.54/10.71 "gcd vvy vvz = gcd3 vvy vvz; 24.54/10.71 gcd x y = gcd0 x y; 24.54/10.71 " 24.54/10.71 "gcd0 x y = gcd' (abs x) (abs y) where { 24.54/10.71 gcd' x vuy = gcd'2 x vuy; 24.54/10.71 gcd' x y = gcd'0 x y; 24.54/10.71 ; 24.54/10.71 gcd'0 x y = gcd' y (x `rem` y); 24.54/10.71 ; 24.54/10.71 gcd'1 True x vuy = x; 24.54/10.71 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 24.54/10.71 ; 24.54/10.71 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 24.54/10.71 gcd'2 vvw vvx = gcd'0 vvw vvx; 24.54/10.71 } 24.54/10.71 ; 24.54/10.71 " 24.54/10.71 "gcd1 True vvy vvz = error []; 24.54/10.71 gcd1 vwu vwv vww = gcd0 vwv vww; 24.54/10.71 " 24.54/10.71 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 24.54/10.71 gcd2 vwx vwy vwz = gcd0 vwy vwz; 24.54/10.71 " 24.54/10.71 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 24.54/10.71 gcd3 vxu vxv = gcd0 vxu vxv; 24.54/10.71 " 24.54/10.71 The following Function with conditions 24.54/10.71 "undefined |Falseundefined; 24.54/10.71 " 24.54/10.71 is transformed to 24.54/10.71 "undefined = undefined1; 24.54/10.71 " 24.54/10.71 "undefined0 True = undefined; 24.54/10.71 " 24.54/10.71 "undefined1 = undefined0 False; 24.54/10.71 " 24.54/10.71 The following Function with conditions 24.54/10.71 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 24.54/10.71 d = gcd x y; 24.54/10.71 } 24.54/10.71 ; 24.54/10.71 " 24.54/10.71 is transformed to 24.54/10.71 "reduce x y = reduce2 x y; 24.54/10.71 " 24.54/10.71 "reduce2 x y = reduce1 x y (y == 0) where { 24.54/10.71 d = gcd x y; 24.54/10.71 ; 24.54/10.71 reduce0 x y True = x `quot` d :% (y `quot` d); 24.54/10.71 ; 24.54/10.71 reduce1 x y True = error []; 24.54/10.71 reduce1 x y False = reduce0 x y otherwise; 24.54/10.71 } 24.54/10.71 ; 24.54/10.71 " 24.54/10.71 The following Function with conditions 24.54/10.71 "lookupFM EmptyFM key = Nothing; 24.54/10.71 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.54/10.71 " 24.54/10.71 is transformed to 24.54/10.71 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 24.54/10.71 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.54/10.71 " 24.54/10.71 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 24.54/10.71 " 24.54/10.71 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 24.54/10.71 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.54/10.71 " 24.54/10.71 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 24.54/10.71 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.54/10.71 " 24.54/10.71 "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.54/10.71 " 24.54/10.71 "lookupFM4 EmptyFM key = Nothing; 24.54/10.71 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 24.54/10.71 " 24.54/10.71 24.54/10.71 ---------------------------------------- 24.54/10.71 24.54/10.71 (10) 24.54/10.71 Obligation: 24.54/10.71 mainModule Main 24.54/10.71 module FiniteMap where { 24.54/10.71 import qualified Main; 24.54/10.71 import qualified Maybe; 24.54/10.71 import qualified Prelude; 24.54/10.71 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.54/10.71 24.54/10.71 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.54/10.71 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.54/10.71 } 24.54/10.71 fmToList :: FiniteMap b a -> [(b,a)]; 24.54/10.71 fmToList fm = foldFM fmToList0 [] fm; 24.54/10.71 24.54/10.71 fmToList0 key elt rest = (key,elt) : rest; 24.54/10.71 24.54/10.71 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 24.54/10.71 foldFM k z EmptyFM = z; 24.54/10.71 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.54/10.71 24.54/10.71 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 24.54/10.71 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 24.54/10.71 24.54/10.71 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 24.54/10.71 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.54/10.71 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM4 EmptyFM key = Nothing; 24.54/10.71 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 24.54/10.71 24.54/10.71 sizeFM :: FiniteMap b a -> Int; 24.54/10.71 sizeFM EmptyFM = 0; 24.54/10.71 sizeFM (Branch zz vuu size vuv vuw) = size; 24.54/10.71 24.54/10.71 } 24.54/10.71 module Maybe where { 24.54/10.71 import qualified FiniteMap; 24.54/10.71 import qualified Main; 24.54/10.71 import qualified Prelude; 24.54/10.71 } 24.54/10.71 module Main where { 24.54/10.71 import qualified FiniteMap; 24.54/10.71 import qualified Maybe; 24.54/10.71 import qualified Prelude; 24.54/10.71 } 24.54/10.71 24.54/10.71 ---------------------------------------- 24.54/10.71 24.54/10.71 (11) LetRed (EQUIVALENT) 24.54/10.71 Let/Where Reductions: 24.54/10.71 The bindings of the following Let/Where expression 24.54/10.71 "gcd' (abs x) (abs y) where { 24.54/10.71 gcd' x vuy = gcd'2 x vuy; 24.54/10.71 gcd' x y = gcd'0 x y; 24.54/10.71 ; 24.54/10.71 gcd'0 x y = gcd' y (x `rem` y); 24.54/10.71 ; 24.54/10.71 gcd'1 True x vuy = x; 24.54/10.71 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 24.54/10.71 ; 24.54/10.71 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 24.54/10.71 gcd'2 vvw vvx = gcd'0 vvw vvx; 24.54/10.71 } 24.54/10.71 " 24.54/10.71 are unpacked to the following functions on top level 24.54/10.71 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 24.54/10.71 gcd0Gcd' x y = gcd0Gcd'0 x y; 24.54/10.71 " 24.54/10.71 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 24.54/10.71 " 24.54/10.71 "gcd0Gcd'1 True x vuy = x; 24.54/10.71 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 24.54/10.71 " 24.54/10.71 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 24.54/10.71 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 24.54/10.71 " 24.54/10.71 The bindings of the following Let/Where expression 24.54/10.71 "reduce1 x y (y == 0) where { 24.54/10.71 d = gcd x y; 24.54/10.71 ; 24.54/10.71 reduce0 x y True = x `quot` d :% (y `quot` d); 24.54/10.71 ; 24.54/10.71 reduce1 x y True = error []; 24.54/10.71 reduce1 x y False = reduce0 x y otherwise; 24.54/10.71 } 24.54/10.71 " 24.54/10.71 are unpacked to the following functions on top level 24.54/10.71 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 24.54/10.71 " 24.54/10.71 "reduce2D vyu vyv = gcd vyu vyv; 24.54/10.71 " 24.54/10.71 "reduce2Reduce1 vyu vyv x y True = error []; 24.54/10.71 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 24.54/10.71 " 24.54/10.71 24.54/10.71 ---------------------------------------- 24.54/10.71 24.54/10.71 (12) 24.54/10.71 Obligation: 24.54/10.71 mainModule Main 24.54/10.71 module FiniteMap where { 24.54/10.71 import qualified Main; 24.54/10.71 import qualified Maybe; 24.54/10.71 import qualified Prelude; 24.54/10.71 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.54/10.71 24.54/10.71 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.54/10.71 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.54/10.71 } 24.54/10.71 fmToList :: FiniteMap b a -> [(b,a)]; 24.54/10.71 fmToList fm = foldFM fmToList0 [] fm; 24.54/10.71 24.54/10.71 fmToList0 key elt rest = (key,elt) : rest; 24.54/10.71 24.54/10.71 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 24.54/10.71 foldFM k z EmptyFM = z; 24.54/10.71 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.54/10.71 24.54/10.71 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 24.54/10.71 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 24.54/10.71 24.54/10.71 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 24.54/10.71 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.54/10.71 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM4 EmptyFM key = Nothing; 24.54/10.71 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 24.54/10.71 24.54/10.71 sizeFM :: FiniteMap b a -> Int; 24.54/10.71 sizeFM EmptyFM = 0; 24.54/10.71 sizeFM (Branch zz vuu size vuv vuw) = size; 24.54/10.71 24.54/10.71 } 24.54/10.71 module Maybe where { 24.54/10.71 import qualified FiniteMap; 24.54/10.71 import qualified Main; 24.54/10.71 import qualified Prelude; 24.54/10.71 } 24.54/10.71 module Main where { 24.54/10.71 import qualified FiniteMap; 24.54/10.71 import qualified Maybe; 24.54/10.71 import qualified Prelude; 24.54/10.71 } 24.54/10.71 24.54/10.71 ---------------------------------------- 24.54/10.71 24.54/10.71 (13) NumRed (SOUND) 24.54/10.71 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 24.54/10.71 ---------------------------------------- 24.54/10.71 24.54/10.71 (14) 24.54/10.71 Obligation: 24.54/10.71 mainModule Main 24.54/10.71 module FiniteMap where { 24.54/10.71 import qualified Main; 24.54/10.71 import qualified Maybe; 24.54/10.71 import qualified Prelude; 24.54/10.71 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.54/10.71 24.54/10.71 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.54/10.71 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.54/10.71 } 24.54/10.71 fmToList :: FiniteMap b a -> [(b,a)]; 24.54/10.71 fmToList fm = foldFM fmToList0 [] fm; 24.54/10.71 24.54/10.71 fmToList0 key elt rest = (key,elt) : rest; 24.54/10.71 24.54/10.71 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 24.54/10.71 foldFM k z EmptyFM = z; 24.54/10.71 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.54/10.71 24.54/10.71 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 24.54/10.71 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 24.54/10.71 24.54/10.71 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 24.54/10.71 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.54/10.71 24.54/10.71 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.54/10.71 24.54/10.71 lookupFM4 EmptyFM key = Nothing; 24.54/10.71 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 24.54/10.71 24.54/10.71 sizeFM :: FiniteMap a b -> Int; 24.54/10.71 sizeFM EmptyFM = Pos Zero; 24.54/10.71 sizeFM (Branch zz vuu size vuv vuw) = size; 24.54/10.71 24.54/10.71 } 24.54/10.71 module Maybe where { 24.54/10.71 import qualified FiniteMap; 24.54/10.71 import qualified Main; 24.54/10.71 import qualified Prelude; 24.54/10.71 } 24.54/10.71 module Main where { 24.54/10.71 import qualified FiniteMap; 24.54/10.71 import qualified Maybe; 24.54/10.71 import qualified Prelude; 24.54/10.71 } 24.54/10.71 24.54/10.71 ---------------------------------------- 24.54/10.71 24.54/10.71 (15) Narrow (SOUND) 24.54/10.71 Haskell To QDPs 24.54/10.71 24.54/10.71 digraph dp_graph { 24.54/10.71 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 24.54/10.71 3[label="FiniteMap.lookupFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 24.54/10.71 4[label="FiniteMap.lookupFM vyw3 vyw4",fontsize=16,color="burlywood",shape="triangle"];3410[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 3410[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3410 -> 5[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3411[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];4 -> 3411[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3411 -> 6[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 5[label="FiniteMap.lookupFM FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 24.54/10.71 6[label="FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 24.54/10.71 7[label="FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 24.54/10.71 8[label="FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 24.54/10.71 9[label="Nothing",fontsize=16,color="green",shape="box"];10[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (vyw4 < vyw30)",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 24.54/10.71 11[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare vyw4 vyw30 == LT)",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 24.54/10.71 12[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare3 vyw4 vyw30 == LT)",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 24.54/10.71 13[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare2 vyw4 vyw30 (vyw4 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3412[label="vyw4/Nothing",fontsize=10,color="white",style="solid",shape="box"];13 -> 3412[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3412 -> 14[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3413[label="vyw4/Just vyw40",fontsize=10,color="white",style="solid",shape="box"];13 -> 3413[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3413 -> 15[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 14[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing vyw30 (Nothing == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3414[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];14 -> 3414[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3414 -> 16[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3415[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];14 -> 3415[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3415 -> 17[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 15[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (Just vyw40) (compare2 (Just vyw40) vyw30 (Just vyw40 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3416[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];15 -> 3416[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3416 -> 18[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3417[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];15 -> 3417[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3417 -> 19[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 16[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 24.54/10.71 17[label="FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing (Just vyw300) (Nothing == Just vyw300) == LT)",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 24.54/10.71 18[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) (compare2 (Just vyw40) Nothing (Just vyw40 == Nothing) == LT)",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 24.54/10.71 19[label="FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 (Just vyw40) (compare2 (Just vyw40) (Just vyw300) (Just vyw40 == Just vyw300) == LT)",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 24.54/10.71 20[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 24.54/10.71 21 -> 80[label="",style="dashed", color="red", weight=0]; 24.54/10.71 21[label="FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing (compare2 Nothing (Just vyw300) False == LT)",fontsize=16,color="magenta"];21 -> 81[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 22 -> 89[label="",style="dashed", color="red", weight=0]; 24.54/10.71 22[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) (compare2 (Just vyw40) Nothing False == LT)",fontsize=16,color="magenta"];22 -> 90[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 23 -> 136[label="",style="dashed", color="red", weight=0]; 24.54/10.71 23[label="FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 (Just vyw40) (compare2 (Just vyw40) (Just vyw300) (vyw40 == vyw300) == LT)",fontsize=16,color="magenta"];23 -> 137[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 23 -> 138[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 23 -> 139[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 23 -> 140[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 23 -> 141[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 23 -> 142[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 23 -> 143[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 24[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 Nothing (EQ == LT)",fontsize=16,color="black",shape="box"];24 -> 35[label="",style="solid", color="black", weight=3]; 24.54/10.71 81 -> 40[label="",style="dashed", color="red", weight=0]; 24.54/10.71 81[label="compare2 Nothing (Just vyw300) False == LT",fontsize=16,color="magenta"];81 -> 85[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 81 -> 86[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 80[label="FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing vyw20",fontsize=16,color="burlywood",shape="triangle"];3418[label="vyw20/False",fontsize=10,color="white",style="solid",shape="box"];80 -> 3418[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3418 -> 87[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3419[label="vyw20/True",fontsize=10,color="white",style="solid",shape="box"];80 -> 3419[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3419 -> 88[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 90 -> 40[label="",style="dashed", color="red", weight=0]; 24.54/10.71 90[label="compare2 (Just vyw40) Nothing False == LT",fontsize=16,color="magenta"];90 -> 94[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 90 -> 95[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 89[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) vyw21",fontsize=16,color="burlywood",shape="triangle"];3420[label="vyw21/False",fontsize=10,color="white",style="solid",shape="box"];89 -> 3420[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3420 -> 96[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3421[label="vyw21/True",fontsize=10,color="white",style="solid",shape="box"];89 -> 3421[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3421 -> 97[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 137[label="vyw33",fontsize=16,color="green",shape="box"];138[label="vyw34",fontsize=16,color="green",shape="box"];139[label="vyw31",fontsize=16,color="green",shape="box"];140 -> 40[label="",style="dashed", color="red", weight=0]; 24.54/10.71 140[label="compare2 (Just vyw40) (Just vyw300) (vyw40 == vyw300) == LT",fontsize=16,color="magenta"];140 -> 147[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 140 -> 148[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 141[label="vyw40",fontsize=16,color="green",shape="box"];142[label="vyw300",fontsize=16,color="green",shape="box"];143[label="vyw32",fontsize=16,color="green",shape="box"];136[label="FiniteMap.lookupFM2 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) vyw22",fontsize=16,color="burlywood",shape="triangle"];3422[label="vyw22/False",fontsize=10,color="white",style="solid",shape="box"];136 -> 3422[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3422 -> 149[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3423[label="vyw22/True",fontsize=10,color="white",style="solid",shape="box"];136 -> 3423[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3423 -> 150[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 35[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 Nothing False",fontsize=16,color="black",shape="box"];35 -> 54[label="",style="solid", color="black", weight=3]; 24.54/10.71 85[label="LT",fontsize=16,color="green",shape="box"];86 -> 1695[label="",style="dashed", color="red", weight=0]; 24.54/10.71 86[label="compare2 Nothing (Just vyw300) False",fontsize=16,color="magenta"];86 -> 1696[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 86 -> 1697[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 86 -> 1698[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 40[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3424[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];40 -> 3424[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3424 -> 59[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3425[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];40 -> 3425[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3425 -> 60[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3426[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];40 -> 3426[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3426 -> 61[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 87[label="FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing False",fontsize=16,color="black",shape="box"];87 -> 99[label="",style="solid", color="black", weight=3]; 24.54/10.71 88[label="FiniteMap.lookupFM2 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing True",fontsize=16,color="black",shape="box"];88 -> 100[label="",style="solid", color="black", weight=3]; 24.54/10.71 94[label="LT",fontsize=16,color="green",shape="box"];95 -> 1695[label="",style="dashed", color="red", weight=0]; 24.54/10.71 95[label="compare2 (Just vyw40) Nothing False",fontsize=16,color="magenta"];95 -> 1699[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 95 -> 1700[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 95 -> 1701[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 96[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) False",fontsize=16,color="black",shape="box"];96 -> 152[label="",style="solid", color="black", weight=3]; 24.54/10.71 97[label="FiniteMap.lookupFM2 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) True",fontsize=16,color="black",shape="box"];97 -> 153[label="",style="solid", color="black", weight=3]; 24.54/10.71 147[label="LT",fontsize=16,color="green",shape="box"];148 -> 1695[label="",style="dashed", color="red", weight=0]; 24.54/10.71 148[label="compare2 (Just vyw40) (Just vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];148 -> 1702[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 148 -> 1703[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 148 -> 1704[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 149[label="FiniteMap.lookupFM2 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) False",fontsize=16,color="black",shape="box"];149 -> 165[label="",style="solid", color="black", weight=3]; 24.54/10.71 150[label="FiniteMap.lookupFM2 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) True",fontsize=16,color="black",shape="box"];150 -> 166[label="",style="solid", color="black", weight=3]; 24.54/10.71 54 -> 158[label="",style="dashed", color="red", weight=0]; 24.54/10.71 54[label="FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 Nothing (Nothing > Nothing)",fontsize=16,color="magenta"];54 -> 159[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 1696[label="Nothing",fontsize=16,color="green",shape="box"];1697[label="False",fontsize=16,color="green",shape="box"];1698[label="Just vyw300",fontsize=16,color="green",shape="box"];1695[label="compare2 vyw280 vyw290 vyw78",fontsize=16,color="burlywood",shape="triangle"];3427[label="vyw78/False",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3427[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3427 -> 1730[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3428[label="vyw78/True",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3428[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3428 -> 1731[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 59[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];3429[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];59 -> 3429[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3429 -> 101[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3430[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];59 -> 3430[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3430 -> 102[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3431[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];59 -> 3431[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3431 -> 103[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 60[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];3432[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];60 -> 3432[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3432 -> 104[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3433[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];60 -> 3433[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3433 -> 105[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3434[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];60 -> 3434[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3434 -> 106[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 61[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];3435[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];61 -> 3435[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3435 -> 107[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3436[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];61 -> 3436[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3436 -> 108[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3437[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];61 -> 3437[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3437 -> 109[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 99 -> 200[label="",style="dashed", color="red", weight=0]; 24.54/10.71 99[label="FiniteMap.lookupFM1 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing (Nothing > Just vyw300)",fontsize=16,color="magenta"];99 -> 201[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 100 -> 4[label="",style="dashed", color="red", weight=0]; 24.54/10.71 100[label="FiniteMap.lookupFM vyw33 Nothing",fontsize=16,color="magenta"];100 -> 156[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 100 -> 157[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 1699[label="Just vyw40",fontsize=16,color="green",shape="box"];1700[label="False",fontsize=16,color="green",shape="box"];1701[label="Nothing",fontsize=16,color="green",shape="box"];152 -> 210[label="",style="dashed", color="red", weight=0]; 24.54/10.71 152[label="FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) (Just vyw40 > Nothing)",fontsize=16,color="magenta"];152 -> 211[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 153 -> 4[label="",style="dashed", color="red", weight=0]; 24.54/10.71 153[label="FiniteMap.lookupFM vyw33 (Just vyw40)",fontsize=16,color="magenta"];153 -> 169[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 153 -> 170[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 1702[label="Just vyw40",fontsize=16,color="green",shape="box"];1703[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3438[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3438[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3438 -> 1732[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3439[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3439[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3439 -> 1733[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3440[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3440[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3440 -> 1734[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3441[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3441[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3441 -> 1735[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3442[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3442[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3442 -> 1736[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3443[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3443[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3443 -> 1737[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3444[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3444[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3444 -> 1738[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3445[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3445[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3445 -> 1739[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3446[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3446[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3446 -> 1740[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3447[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3447[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3447 -> 1741[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3448[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3448[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3448 -> 1742[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3449[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3449[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3449 -> 1743[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3450[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3450[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3450 -> 1744[label="",style="solid", color="blue", weight=3]; 24.54/10.71 3451[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3451[label="",style="solid", color="blue", weight=9]; 24.54/10.71 3451 -> 1745[label="",style="solid", color="blue", weight=3]; 24.54/10.71 1704[label="Just vyw300",fontsize=16,color="green",shape="box"];165 -> 235[label="",style="dashed", color="red", weight=0]; 24.54/10.71 165[label="FiniteMap.lookupFM1 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) (Just vyw18 > Just vyw13)",fontsize=16,color="magenta"];165 -> 236[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 166 -> 4[label="",style="dashed", color="red", weight=0]; 24.54/10.71 166[label="FiniteMap.lookupFM vyw16 (Just vyw18)",fontsize=16,color="magenta"];166 -> 204[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 166 -> 205[label="",style="dashed", color="magenta", weight=3]; 24.54/10.71 159[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];159 -> 187[label="",style="solid", color="black", weight=3]; 24.54/10.71 158[label="FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 Nothing vyw23",fontsize=16,color="burlywood",shape="triangle"];3452[label="vyw23/False",fontsize=10,color="white",style="solid",shape="box"];158 -> 3452[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3452 -> 188[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3453[label="vyw23/True",fontsize=10,color="white",style="solid",shape="box"];158 -> 3453[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3453 -> 189[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 1730[label="compare2 vyw280 vyw290 False",fontsize=16,color="black",shape="box"];1730 -> 1750[label="",style="solid", color="black", weight=3]; 24.54/10.71 1731[label="compare2 vyw280 vyw290 True",fontsize=16,color="black",shape="box"];1731 -> 1751[label="",style="solid", color="black", weight=3]; 24.54/10.71 101[label="LT == LT",fontsize=16,color="black",shape="box"];101 -> 191[label="",style="solid", color="black", weight=3]; 24.54/10.71 102[label="LT == EQ",fontsize=16,color="black",shape="box"];102 -> 192[label="",style="solid", color="black", weight=3]; 24.54/10.71 103[label="LT == GT",fontsize=16,color="black",shape="box"];103 -> 193[label="",style="solid", color="black", weight=3]; 24.54/10.71 104[label="EQ == LT",fontsize=16,color="black",shape="box"];104 -> 194[label="",style="solid", color="black", weight=3]; 24.54/10.71 105[label="EQ == EQ",fontsize=16,color="black",shape="box"];105 -> 195[label="",style="solid", color="black", weight=3]; 24.54/10.71 106[label="EQ == GT",fontsize=16,color="black",shape="box"];106 -> 196[label="",style="solid", color="black", weight=3]; 24.54/10.71 107[label="GT == LT",fontsize=16,color="black",shape="box"];107 -> 197[label="",style="solid", color="black", weight=3]; 24.54/10.71 108[label="GT == EQ",fontsize=16,color="black",shape="box"];108 -> 198[label="",style="solid", color="black", weight=3]; 24.54/10.71 109[label="GT == GT",fontsize=16,color="black",shape="box"];109 -> 199[label="",style="solid", color="black", weight=3]; 24.54/10.71 201[label="Nothing > Just vyw300",fontsize=16,color="black",shape="box"];201 -> 206[label="",style="solid", color="black", weight=3]; 24.54/10.71 200[label="FiniteMap.lookupFM1 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing vyw31",fontsize=16,color="burlywood",shape="triangle"];3454[label="vyw31/False",fontsize=10,color="white",style="solid",shape="box"];200 -> 3454[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3454 -> 207[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3455[label="vyw31/True",fontsize=10,color="white",style="solid",shape="box"];200 -> 3455[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3455 -> 208[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 156[label="vyw33",fontsize=16,color="green",shape="box"];157[label="Nothing",fontsize=16,color="green",shape="box"];211[label="Just vyw40 > Nothing",fontsize=16,color="black",shape="box"];211 -> 213[label="",style="solid", color="black", weight=3]; 24.54/10.71 210[label="FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) vyw32",fontsize=16,color="burlywood",shape="triangle"];3456[label="vyw32/False",fontsize=10,color="white",style="solid",shape="box"];210 -> 3456[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3456 -> 214[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3457[label="vyw32/True",fontsize=10,color="white",style="solid",shape="box"];210 -> 3457[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3457 -> 215[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 169[label="vyw33",fontsize=16,color="green",shape="box"];170[label="Just vyw40",fontsize=16,color="green",shape="box"];1732[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3458[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3458[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3458 -> 1752[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 1733[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1733 -> 1753[label="",style="solid", color="black", weight=3]; 24.54/10.71 1734 -> 40[label="",style="dashed", color="red", weight=0]; 24.54/10.71 1734[label="vyw40 == vyw300",fontsize=16,color="magenta"];1735[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3459[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];1735 -> 3459[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3459 -> 1754[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3460[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];1735 -> 3460[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3460 -> 1755[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 1736[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1736 -> 1756[label="",style="solid", color="black", weight=3]; 24.54/10.71 1737[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3461[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];1737 -> 3461[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3461 -> 1757[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 1738[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3462[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];1738 -> 3462[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3462 -> 1758[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 1739[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1739 -> 1759[label="",style="solid", color="black", weight=3]; 24.54/10.71 1740[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3463[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3463[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3463 -> 1760[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3464[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3464[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3464 -> 1761[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 1741[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1741 -> 1762[label="",style="solid", color="black", weight=3]; 24.54/10.71 1742[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3465[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];1742 -> 3465[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3465 -> 1763[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 1743[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3466[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3466[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3466 -> 1764[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 3467[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3467[label="",style="solid", color="burlywood", weight=9]; 24.54/10.71 3467 -> 1765[label="",style="solid", color="burlywood", weight=3]; 24.54/10.71 1744[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3468[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3468[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3468 -> 1766[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1745[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3469[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3469[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3469 -> 1767[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3470[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3470[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3470 -> 1768[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 236[label="Just vyw18 > Just vyw13",fontsize=16,color="black",shape="box"];236 -> 238[label="",style="solid", color="black", weight=3]; 24.54/10.72 235[label="FiniteMap.lookupFM1 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) vyw33",fontsize=16,color="burlywood",shape="triangle"];3471[label="vyw33/False",fontsize=10,color="white",style="solid",shape="box"];235 -> 3471[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3471 -> 239[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3472[label="vyw33/True",fontsize=10,color="white",style="solid",shape="box"];235 -> 3472[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3472 -> 240[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 204[label="vyw16",fontsize=16,color="green",shape="box"];205[label="Just vyw18",fontsize=16,color="green",shape="box"];187 -> 40[label="",style="dashed", color="red", weight=0]; 24.54/10.72 187[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];187 -> 241[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 187 -> 242[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 188[label="FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 Nothing False",fontsize=16,color="black",shape="box"];188 -> 243[label="",style="solid", color="black", weight=3]; 24.54/10.72 189[label="FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 Nothing True",fontsize=16,color="black",shape="box"];189 -> 244[label="",style="solid", color="black", weight=3]; 24.54/10.72 1750[label="compare1 vyw280 vyw290 (vyw280 <= vyw290)",fontsize=16,color="burlywood",shape="box"];3473[label="vyw280/Nothing",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3473[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3473 -> 1783[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3474[label="vyw280/Just vyw2800",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3474[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3474 -> 1784[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1751[label="EQ",fontsize=16,color="green",shape="box"];191[label="True",fontsize=16,color="green",shape="box"];192[label="False",fontsize=16,color="green",shape="box"];193[label="False",fontsize=16,color="green",shape="box"];194[label="False",fontsize=16,color="green",shape="box"];195[label="True",fontsize=16,color="green",shape="box"];196[label="False",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="True",fontsize=16,color="green",shape="box"];206 -> 40[label="",style="dashed", color="red", weight=0]; 24.54/10.72 206[label="compare Nothing (Just vyw300) == GT",fontsize=16,color="magenta"];206 -> 245[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 206 -> 246[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 207[label="FiniteMap.lookupFM1 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing False",fontsize=16,color="black",shape="box"];207 -> 247[label="",style="solid", color="black", weight=3]; 24.54/10.72 208[label="FiniteMap.lookupFM1 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing True",fontsize=16,color="black",shape="box"];208 -> 248[label="",style="solid", color="black", weight=3]; 24.54/10.72 213 -> 40[label="",style="dashed", color="red", weight=0]; 24.54/10.72 213[label="compare (Just vyw40) Nothing == GT",fontsize=16,color="magenta"];213 -> 250[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 213 -> 251[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 214[label="FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) False",fontsize=16,color="black",shape="box"];214 -> 252[label="",style="solid", color="black", weight=3]; 24.54/10.72 215[label="FiniteMap.lookupFM1 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) True",fontsize=16,color="black",shape="box"];215 -> 253[label="",style="solid", color="black", weight=3]; 24.54/10.72 1752[label="(vyw400,vyw401,vyw402) == vyw300",fontsize=16,color="burlywood",shape="box"];3475[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];1752 -> 3475[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3475 -> 1785[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1753[label="primEqInt vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];3476[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3476[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3476 -> 1786[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3477[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3477[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3477 -> 1787[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1754[label="vyw400 : vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3478[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];1754 -> 3478[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3478 -> 1788[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3479[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];1754 -> 3479[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3479 -> 1789[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1755[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];3480[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];1755 -> 3480[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3480 -> 1790[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3481[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];1755 -> 3481[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3481 -> 1791[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1756[label="primEqChar vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3482[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];1756 -> 3482[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3482 -> 1792[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1757[label="(vyw400,vyw401) == vyw300",fontsize=16,color="burlywood",shape="box"];3483[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];1757 -> 3483[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3483 -> 1793[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1758[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];3484[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];1758 -> 3484[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3484 -> 1794[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1759[label="primEqFloat vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3485[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];1759 -> 3485[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3485 -> 1795[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1760[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];3486[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3486[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3486 -> 1796[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3487[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3487[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3487 -> 1797[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1761[label="Just vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3488[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1761 -> 3488[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3488 -> 1798[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3489[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];1761 -> 3489[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3489 -> 1799[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1762[label="primEqDouble vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3490[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];1762 -> 3490[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3490 -> 1800[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1763[label="Integer vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3491[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3491[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3491 -> 1801[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1764[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];3492[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3492[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3492 -> 1802[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3493[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3493[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3493 -> 1803[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1765[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];3494[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];1765 -> 3494[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3494 -> 1804[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3495[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];1765 -> 3495[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3495 -> 1805[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1766[label="vyw400 :% vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3496[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];1766 -> 3496[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3496 -> 1806[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1767[label="Left vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3497[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];1767 -> 3497[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3497 -> 1807[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3498[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];1767 -> 3498[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3498 -> 1808[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1768[label="Right vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3499[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];1768 -> 3499[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3499 -> 1809[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3500[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];1768 -> 3500[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3500 -> 1810[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 238 -> 40[label="",style="dashed", color="red", weight=0]; 24.54/10.72 238[label="compare (Just vyw18) (Just vyw13) == GT",fontsize=16,color="magenta"];238 -> 281[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 238 -> 282[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 239[label="FiniteMap.lookupFM1 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) False",fontsize=16,color="black",shape="box"];239 -> 283[label="",style="solid", color="black", weight=3]; 24.54/10.72 240[label="FiniteMap.lookupFM1 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) True",fontsize=16,color="black",shape="box"];240 -> 284[label="",style="solid", color="black", weight=3]; 24.54/10.72 241[label="GT",fontsize=16,color="green",shape="box"];242[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];242 -> 285[label="",style="solid", color="black", weight=3]; 24.54/10.72 243[label="FiniteMap.lookupFM0 Nothing vyw31 vyw32 vyw33 vyw34 Nothing otherwise",fontsize=16,color="black",shape="box"];243 -> 286[label="",style="solid", color="black", weight=3]; 24.54/10.72 244 -> 4[label="",style="dashed", color="red", weight=0]; 24.54/10.72 244[label="FiniteMap.lookupFM vyw34 Nothing",fontsize=16,color="magenta"];244 -> 287[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 244 -> 288[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1783[label="compare1 Nothing vyw290 (Nothing <= vyw290)",fontsize=16,color="burlywood",shape="box"];3501[label="vyw290/Nothing",fontsize=10,color="white",style="solid",shape="box"];1783 -> 3501[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3501 -> 1839[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3502[label="vyw290/Just vyw2900",fontsize=10,color="white",style="solid",shape="box"];1783 -> 3502[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3502 -> 1840[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1784[label="compare1 (Just vyw2800) vyw290 (Just vyw2800 <= vyw290)",fontsize=16,color="burlywood",shape="box"];3503[label="vyw290/Nothing",fontsize=10,color="white",style="solid",shape="box"];1784 -> 3503[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3503 -> 1841[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3504[label="vyw290/Just vyw2900",fontsize=10,color="white",style="solid",shape="box"];1784 -> 3504[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3504 -> 1842[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 245[label="GT",fontsize=16,color="green",shape="box"];246[label="compare Nothing (Just vyw300)",fontsize=16,color="black",shape="box"];246 -> 289[label="",style="solid", color="black", weight=3]; 24.54/10.72 247[label="FiniteMap.lookupFM0 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing otherwise",fontsize=16,color="black",shape="box"];247 -> 290[label="",style="solid", color="black", weight=3]; 24.54/10.72 248 -> 4[label="",style="dashed", color="red", weight=0]; 24.54/10.72 248[label="FiniteMap.lookupFM vyw34 Nothing",fontsize=16,color="magenta"];248 -> 291[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 248 -> 292[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 250[label="GT",fontsize=16,color="green",shape="box"];251[label="compare (Just vyw40) Nothing",fontsize=16,color="black",shape="box"];251 -> 294[label="",style="solid", color="black", weight=3]; 24.54/10.72 252[label="FiniteMap.lookupFM0 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) otherwise",fontsize=16,color="black",shape="box"];252 -> 295[label="",style="solid", color="black", weight=3]; 24.54/10.72 253 -> 4[label="",style="dashed", color="red", weight=0]; 24.54/10.72 253[label="FiniteMap.lookupFM vyw34 (Just vyw40)",fontsize=16,color="magenta"];253 -> 296[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 253 -> 297[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1785[label="(vyw400,vyw401,vyw402) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];1785 -> 1843[label="",style="solid", color="black", weight=3]; 24.54/10.72 1786[label="primEqInt (Pos vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3505[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3505[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3505 -> 1844[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3506[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3506[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3506 -> 1845[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1787[label="primEqInt (Neg vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3507[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];1787 -> 3507[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3507 -> 1846[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3508[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];1787 -> 3508[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3508 -> 1847[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1788[label="vyw400 : vyw401 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];1788 -> 1848[label="",style="solid", color="black", weight=3]; 24.54/10.72 1789[label="vyw400 : vyw401 == []",fontsize=16,color="black",shape="box"];1789 -> 1849[label="",style="solid", color="black", weight=3]; 24.54/10.72 1790[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];1790 -> 1850[label="",style="solid", color="black", weight=3]; 24.54/10.72 1791[label="[] == []",fontsize=16,color="black",shape="box"];1791 -> 1851[label="",style="solid", color="black", weight=3]; 24.54/10.72 1792[label="primEqChar (Char vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3509[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];1792 -> 3509[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3509 -> 1852[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1793[label="(vyw400,vyw401) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];1793 -> 1853[label="",style="solid", color="black", weight=3]; 24.54/10.72 1794[label="() == ()",fontsize=16,color="black",shape="box"];1794 -> 1854[label="",style="solid", color="black", weight=3]; 24.54/10.72 1795[label="primEqFloat (Float vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3510[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];1795 -> 3510[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3510 -> 1855[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1796[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1796 -> 1856[label="",style="solid", color="black", weight=3]; 24.54/10.72 1797[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];1797 -> 1857[label="",style="solid", color="black", weight=3]; 24.54/10.72 1798[label="Just vyw400 == Nothing",fontsize=16,color="black",shape="box"];1798 -> 1858[label="",style="solid", color="black", weight=3]; 24.54/10.72 1799[label="Just vyw400 == Just vyw3000",fontsize=16,color="black",shape="box"];1799 -> 1859[label="",style="solid", color="black", weight=3]; 24.54/10.72 1800[label="primEqDouble (Double vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3511[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];1800 -> 3511[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3511 -> 1860[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1801[label="Integer vyw400 == Integer vyw3000",fontsize=16,color="black",shape="box"];1801 -> 1861[label="",style="solid", color="black", weight=3]; 24.54/10.72 1802[label="False == False",fontsize=16,color="black",shape="box"];1802 -> 1862[label="",style="solid", color="black", weight=3]; 24.54/10.72 1803[label="False == True",fontsize=16,color="black",shape="box"];1803 -> 1863[label="",style="solid", color="black", weight=3]; 24.54/10.72 1804[label="True == False",fontsize=16,color="black",shape="box"];1804 -> 1864[label="",style="solid", color="black", weight=3]; 24.54/10.72 1805[label="True == True",fontsize=16,color="black",shape="box"];1805 -> 1865[label="",style="solid", color="black", weight=3]; 24.54/10.72 1806[label="vyw400 :% vyw401 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];1806 -> 1866[label="",style="solid", color="black", weight=3]; 24.54/10.72 1807[label="Left vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];1807 -> 1867[label="",style="solid", color="black", weight=3]; 24.54/10.72 1808[label="Left vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];1808 -> 1868[label="",style="solid", color="black", weight=3]; 24.54/10.72 1809[label="Right vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];1809 -> 1869[label="",style="solid", color="black", weight=3]; 24.54/10.72 1810[label="Right vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];1810 -> 1870[label="",style="solid", color="black", weight=3]; 24.54/10.72 281[label="GT",fontsize=16,color="green",shape="box"];282[label="compare (Just vyw18) (Just vyw13)",fontsize=16,color="black",shape="box"];282 -> 336[label="",style="solid", color="black", weight=3]; 24.54/10.72 283[label="FiniteMap.lookupFM0 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) otherwise",fontsize=16,color="black",shape="box"];283 -> 337[label="",style="solid", color="black", weight=3]; 24.54/10.72 284 -> 4[label="",style="dashed", color="red", weight=0]; 24.54/10.72 284[label="FiniteMap.lookupFM vyw17 (Just vyw18)",fontsize=16,color="magenta"];284 -> 338[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 284 -> 339[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 285[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];285 -> 340[label="",style="solid", color="black", weight=3]; 24.54/10.72 286[label="FiniteMap.lookupFM0 Nothing vyw31 vyw32 vyw33 vyw34 Nothing True",fontsize=16,color="black",shape="box"];286 -> 341[label="",style="solid", color="black", weight=3]; 24.54/10.72 287[label="vyw34",fontsize=16,color="green",shape="box"];288[label="Nothing",fontsize=16,color="green",shape="box"];1839[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];1839 -> 1871[label="",style="solid", color="black", weight=3]; 24.54/10.72 1840[label="compare1 Nothing (Just vyw2900) (Nothing <= Just vyw2900)",fontsize=16,color="black",shape="box"];1840 -> 1872[label="",style="solid", color="black", weight=3]; 24.54/10.72 1841[label="compare1 (Just vyw2800) Nothing (Just vyw2800 <= Nothing)",fontsize=16,color="black",shape="box"];1841 -> 1873[label="",style="solid", color="black", weight=3]; 24.54/10.72 1842[label="compare1 (Just vyw2800) (Just vyw2900) (Just vyw2800 <= Just vyw2900)",fontsize=16,color="black",shape="box"];1842 -> 1874[label="",style="solid", color="black", weight=3]; 24.54/10.72 289[label="compare3 Nothing (Just vyw300)",fontsize=16,color="black",shape="box"];289 -> 342[label="",style="solid", color="black", weight=3]; 24.54/10.72 290[label="FiniteMap.lookupFM0 (Just vyw300) vyw31 vyw32 vyw33 vyw34 Nothing True",fontsize=16,color="black",shape="box"];290 -> 343[label="",style="solid", color="black", weight=3]; 24.54/10.72 291[label="vyw34",fontsize=16,color="green",shape="box"];292[label="Nothing",fontsize=16,color="green",shape="box"];294[label="compare3 (Just vyw40) Nothing",fontsize=16,color="black",shape="box"];294 -> 344[label="",style="solid", color="black", weight=3]; 24.54/10.72 295[label="FiniteMap.lookupFM0 Nothing vyw31 vyw32 vyw33 vyw34 (Just vyw40) True",fontsize=16,color="black",shape="box"];295 -> 345[label="",style="solid", color="black", weight=3]; 24.54/10.72 296[label="vyw34",fontsize=16,color="green",shape="box"];297[label="Just vyw40",fontsize=16,color="green",shape="box"];1843 -> 1957[label="",style="dashed", color="red", weight=0]; 24.54/10.72 1843[label="vyw400 == vyw3000 && vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];1843 -> 1958[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1843 -> 1959[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1844[label="primEqInt (Pos (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3512[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3512[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3512 -> 1881[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3513[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3513[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3513 -> 1882[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1845[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3514[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1845 -> 3514[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3514 -> 1883[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3515[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1845 -> 3515[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3515 -> 1884[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1846[label="primEqInt (Neg (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3516[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3516[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3516 -> 1885[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3517[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3517[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3517 -> 1886[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1847[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3518[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1847 -> 3518[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3518 -> 1887[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 3519[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1847 -> 3519[label="",style="solid", color="burlywood", weight=9]; 24.54/10.72 3519 -> 1888[label="",style="solid", color="burlywood", weight=3]; 24.54/10.72 1848 -> 1957[label="",style="dashed", color="red", weight=0]; 24.54/10.72 1848[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];1848 -> 1960[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1848 -> 1961[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1849[label="False",fontsize=16,color="green",shape="box"];1850[label="False",fontsize=16,color="green",shape="box"];1851[label="True",fontsize=16,color="green",shape="box"];1852[label="primEqChar (Char vyw400) (Char vyw3000)",fontsize=16,color="black",shape="box"];1852 -> 1900[label="",style="solid", color="black", weight=3]; 24.54/10.72 1853 -> 1957[label="",style="dashed", color="red", weight=0]; 24.54/10.72 1853[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];1853 -> 1962[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1853 -> 1963[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1854[label="True",fontsize=16,color="green",shape="box"];1855[label="primEqFloat (Float vyw400 vyw401) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];1855 -> 1901[label="",style="solid", color="black", weight=3]; 24.54/10.72 1856[label="True",fontsize=16,color="green",shape="box"];1857[label="False",fontsize=16,color="green",shape="box"];1858[label="False",fontsize=16,color="green",shape="box"];1859[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3520[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3520[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3520 -> 1902[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3521[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3521[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3521 -> 1903[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3522[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3522[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3522 -> 1904[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3523[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3523[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3523 -> 1905[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3524[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3524[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3524 -> 1906[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3525[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3525[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3525 -> 1907[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3526[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3526[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3526 -> 1908[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3527[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3527[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3527 -> 1909[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3528[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3528[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3528 -> 1910[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3529[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3529[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3529 -> 1911[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3530[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3530[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3530 -> 1912[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3531[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3531[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3531 -> 1913[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3532[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3532[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3532 -> 1914[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3533[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3533[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3533 -> 1915[label="",style="solid", color="blue", weight=3]; 24.54/10.72 1860[label="primEqDouble (Double vyw400 vyw401) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];1860 -> 1916[label="",style="solid", color="black", weight=3]; 24.54/10.72 1861 -> 1753[label="",style="dashed", color="red", weight=0]; 24.54/10.72 1861[label="primEqInt vyw400 vyw3000",fontsize=16,color="magenta"];1861 -> 1917[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1861 -> 1918[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1862[label="True",fontsize=16,color="green",shape="box"];1863[label="False",fontsize=16,color="green",shape="box"];1864[label="False",fontsize=16,color="green",shape="box"];1865[label="True",fontsize=16,color="green",shape="box"];1866 -> 1957[label="",style="dashed", color="red", weight=0]; 24.54/10.72 1866[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];1866 -> 1964[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1866 -> 1965[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1867[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3534[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3534[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3534 -> 1919[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3535[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3535[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3535 -> 1920[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3536[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3536[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3536 -> 1921[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3537[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3537[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3537 -> 1922[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3538[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3538[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3538 -> 1923[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3539[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3539[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3539 -> 1924[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3540[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3540[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3540 -> 1925[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3541[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3541[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3541 -> 1926[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3542[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3542[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3542 -> 1927[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3543[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3543[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3543 -> 1928[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3544[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3544[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3544 -> 1929[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3545[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3545[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3545 -> 1930[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3546[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3546[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3546 -> 1931[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3547[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1867 -> 3547[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3547 -> 1932[label="",style="solid", color="blue", weight=3]; 24.54/10.72 1868[label="False",fontsize=16,color="green",shape="box"];1869[label="False",fontsize=16,color="green",shape="box"];1870[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3548[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3548[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3548 -> 1933[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3549[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3549[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3549 -> 1934[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3550[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3550[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3550 -> 1935[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3551[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3551[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3551 -> 1936[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3552[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3552[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3552 -> 1937[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3553[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3553[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3553 -> 1938[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3554[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3554[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3554 -> 1939[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3555[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3555[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3555 -> 1940[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3556[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3556[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3556 -> 1941[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3557[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3557[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3557 -> 1942[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3558[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3558[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3558 -> 1943[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3559[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3559[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3559 -> 1944[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3560[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3560[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3560 -> 1945[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3561[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3561[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3561 -> 1946[label="",style="solid", color="blue", weight=3]; 24.54/10.72 336[label="compare3 (Just vyw18) (Just vyw13)",fontsize=16,color="black",shape="box"];336 -> 434[label="",style="solid", color="black", weight=3]; 24.54/10.72 337[label="FiniteMap.lookupFM0 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) True",fontsize=16,color="black",shape="box"];337 -> 435[label="",style="solid", color="black", weight=3]; 24.54/10.72 338[label="vyw17",fontsize=16,color="green",shape="box"];339[label="Just vyw18",fontsize=16,color="green",shape="box"];340 -> 1695[label="",style="dashed", color="red", weight=0]; 24.54/10.72 340[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];340 -> 1714[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 340 -> 1715[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 340 -> 1716[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 341[label="Just vyw31",fontsize=16,color="green",shape="box"];1871[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];1871 -> 1947[label="",style="solid", color="black", weight=3]; 24.54/10.72 1872[label="compare1 Nothing (Just vyw2900) True",fontsize=16,color="black",shape="box"];1872 -> 1948[label="",style="solid", color="black", weight=3]; 24.54/10.72 1873[label="compare1 (Just vyw2800) Nothing False",fontsize=16,color="black",shape="box"];1873 -> 1949[label="",style="solid", color="black", weight=3]; 24.54/10.72 1874 -> 1950[label="",style="dashed", color="red", weight=0]; 24.54/10.72 1874[label="compare1 (Just vyw2800) (Just vyw2900) (vyw2800 <= vyw2900)",fontsize=16,color="magenta"];1874 -> 1951[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1874 -> 1952[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1874 -> 1953[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 342 -> 1695[label="",style="dashed", color="red", weight=0]; 24.54/10.72 342[label="compare2 Nothing (Just vyw300) (Nothing == Just vyw300)",fontsize=16,color="magenta"];342 -> 1717[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 342 -> 1718[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 342 -> 1719[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 343[label="Just vyw31",fontsize=16,color="green",shape="box"];344 -> 1695[label="",style="dashed", color="red", weight=0]; 24.54/10.72 344[label="compare2 (Just vyw40) Nothing (Just vyw40 == Nothing)",fontsize=16,color="magenta"];344 -> 1720[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 344 -> 1721[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 344 -> 1722[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 345[label="Just vyw31",fontsize=16,color="green",shape="box"];1958[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3562[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3562[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3562 -> 1970[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3563[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3563[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3563 -> 1971[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3564[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3564[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3564 -> 1972[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3565[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3565[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3565 -> 1973[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3566[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3566[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3566 -> 1974[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3567[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3567[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3567 -> 1975[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3568[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3568[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3568 -> 1976[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3569[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3569[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3569 -> 1977[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3570[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3570[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3570 -> 1978[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3571[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3571[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3571 -> 1979[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3572[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3572[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3572 -> 1980[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3573[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3573[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3573 -> 1981[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3574[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3574[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3574 -> 1982[label="",style="solid", color="blue", weight=3]; 24.54/10.72 3575[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3575[label="",style="solid", color="blue", weight=9]; 24.54/10.72 3575 -> 1983[label="",style="solid", color="blue", weight=3]; 24.54/10.72 1959 -> 1957[label="",style="dashed", color="red", weight=0]; 24.54/10.72 1959[label="vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];1959 -> 1984[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1959 -> 1985[label="",style="dashed", color="magenta", weight=3]; 24.54/10.72 1957[label="vyw101 && vyw102",fontsize=16,color="burlywood",shape="triangle"];3576[label="vyw101/False",fontsize=10,color="white",style="solid",shape="box"];1957 -> 3576[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3576 -> 1986[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3577[label="vyw101/True",fontsize=10,color="white",style="solid",shape="box"];1957 -> 3577[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3577 -> 1987[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1881[label="primEqInt (Pos (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3578[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1881 -> 3578[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3578 -> 1988[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3579[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1881 -> 3579[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3579 -> 1989[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1882[label="primEqInt (Pos (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];1882 -> 1990[label="",style="solid", color="black", weight=3]; 24.86/10.72 1883[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3580[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1883 -> 3580[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3580 -> 1991[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3581[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1883 -> 3581[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3581 -> 1992[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1884[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3582[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3582[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3582 -> 1993[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3583[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3583[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3583 -> 1994[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1885[label="primEqInt (Neg (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];1885 -> 1995[label="",style="solid", color="black", weight=3]; 24.86/10.72 1886[label="primEqInt (Neg (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3584[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3584[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3584 -> 1996[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3585[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3585[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3585 -> 1997[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1887[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3586[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1887 -> 3586[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3586 -> 1998[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3587[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1887 -> 3587[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3587 -> 1999[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1888[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3588[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1888 -> 3588[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3588 -> 2000[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3589[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1888 -> 3589[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3589 -> 2001[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1960[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3590[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3590[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3590 -> 2002[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3591[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3591[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3591 -> 2003[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3592[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3592[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3592 -> 2004[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3593[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3593[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3593 -> 2005[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3594[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3594[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3594 -> 2006[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3595[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3595[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3595 -> 2007[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3596[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3596[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3596 -> 2008[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3597[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3597[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3597 -> 2009[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3598[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3598[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3598 -> 2010[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3599[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3599[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3599 -> 2011[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3600[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3600[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3600 -> 2012[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3601[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3601[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3601 -> 2013[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3602[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3602[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3602 -> 2014[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3603[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3603[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3603 -> 2015[label="",style="solid", color="blue", weight=3]; 24.86/10.72 1961 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1961[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1961 -> 2016[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1961 -> 2017[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1900[label="primEqNat vyw400 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3604[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];1900 -> 3604[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3604 -> 2018[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3605[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];1900 -> 3605[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3605 -> 2019[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1962[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3606[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3606[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3606 -> 2020[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3607[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3607[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3607 -> 2021[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3608[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3608[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3608 -> 2022[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3609[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3609[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3609 -> 2023[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3610[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3610[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3610 -> 2024[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3611[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3611[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3611 -> 2025[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3612[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3612[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3612 -> 2026[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3613[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3613[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3613 -> 2027[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3614[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3614[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3614 -> 2028[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3615[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3615[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3615 -> 2029[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3616[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3616[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3616 -> 2030[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3617[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3617[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3617 -> 2031[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3618[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3618[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3618 -> 2032[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3619[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3619[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3619 -> 2033[label="",style="solid", color="blue", weight=3]; 24.86/10.72 1963[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3620[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3620[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3620 -> 2034[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3621[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3621[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3621 -> 2035[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3622[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3622[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3622 -> 2036[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3623[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3623[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3623 -> 2037[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3624[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3624[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3624 -> 2038[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3625[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3625[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3625 -> 2039[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3626[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3626[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3626 -> 2040[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3627[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3627[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3627 -> 2041[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3628[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3628[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3628 -> 2042[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3629[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3629[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3629 -> 2043[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3630[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3630[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3630 -> 2044[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3631[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3631[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3631 -> 2045[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3632[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3632[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3632 -> 2046[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3633[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3633[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3633 -> 2047[label="",style="solid", color="blue", weight=3]; 24.86/10.72 1901 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1901[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];1901 -> 2048[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1901 -> 2049[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1902 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1902[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1902 -> 2050[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1902 -> 2051[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1903 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1903[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1903 -> 2052[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1903 -> 2053[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1904 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1904[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1904 -> 2054[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1904 -> 2055[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1905 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1905[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1905 -> 2056[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1905 -> 2057[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1906 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1906[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1906 -> 2058[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1906 -> 2059[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1907 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1907[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1907 -> 2060[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1907 -> 2061[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1908 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1908[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1908 -> 2062[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1908 -> 2063[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1909 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1909[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1909 -> 2064[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1909 -> 2065[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1910 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1910[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1910 -> 2066[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1910 -> 2067[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1911 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1911[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1911 -> 2068[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1911 -> 2069[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1912 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1912[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1912 -> 2070[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1912 -> 2071[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1913 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1913[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1913 -> 2072[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1913 -> 2073[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1914 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1914[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1914 -> 2074[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1914 -> 2075[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1915 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1915[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1915 -> 2076[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1915 -> 2077[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1916 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1916[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];1916 -> 2078[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1916 -> 2079[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1917[label="vyw3000",fontsize=16,color="green",shape="box"];1918[label="vyw400",fontsize=16,color="green",shape="box"];1964[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3634[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 3634[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3634 -> 2080[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3635[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 3635[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3635 -> 2081[label="",style="solid", color="blue", weight=3]; 24.86/10.72 1965[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3636[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3636[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3636 -> 2082[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3637[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3637[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3637 -> 2083[label="",style="solid", color="blue", weight=3]; 24.86/10.72 1919 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1919[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1919 -> 2084[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1919 -> 2085[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1920 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1920[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1920 -> 2086[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1920 -> 2087[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1921 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1921[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1921 -> 2088[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1921 -> 2089[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1922 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1922[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1922 -> 2090[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1922 -> 2091[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1923 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1923[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1923 -> 2092[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1923 -> 2093[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1924 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1924[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1924 -> 2094[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1924 -> 2095[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1925 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1925[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1925 -> 2096[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1925 -> 2097[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1926 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1926[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1926 -> 2098[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1926 -> 2099[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1927 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1927[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1927 -> 2100[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1927 -> 2101[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1928 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1928[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1928 -> 2102[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1928 -> 2103[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1929 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1929[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1929 -> 2104[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1929 -> 2105[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1930 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1930[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1930 -> 2106[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1930 -> 2107[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1931 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1931[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1931 -> 2108[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1931 -> 2109[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1932 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1932[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1932 -> 2110[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1932 -> 2111[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1933 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1933[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1933 -> 2112[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1933 -> 2113[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1934 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1934[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1934 -> 2114[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1934 -> 2115[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1935 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1935[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1935 -> 2116[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1935 -> 2117[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1936 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1936[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1936 -> 2118[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1936 -> 2119[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1937 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1937[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1937 -> 2120[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1937 -> 2121[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1938 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1938[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1938 -> 2122[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1938 -> 2123[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1939 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1939[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1939 -> 2124[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1939 -> 2125[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1940 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1940[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1940 -> 2126[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1940 -> 2127[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1941 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1941[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1941 -> 2128[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1941 -> 2129[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1942 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1942[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1942 -> 2130[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1942 -> 2131[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1943 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1943[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1943 -> 2132[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1943 -> 2133[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1944 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1944[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1944 -> 2134[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1944 -> 2135[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1945 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1945[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1945 -> 2136[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1945 -> 2137[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1946 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1946[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1946 -> 2138[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1946 -> 2139[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 434 -> 1695[label="",style="dashed", color="red", weight=0]; 24.86/10.72 434[label="compare2 (Just vyw18) (Just vyw13) (Just vyw18 == Just vyw13)",fontsize=16,color="magenta"];434 -> 1723[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 434 -> 1724[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 434 -> 1725[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 435[label="Just vyw14",fontsize=16,color="green",shape="box"];1714[label="Nothing",fontsize=16,color="green",shape="box"];1715[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1715 -> 1746[label="",style="solid", color="black", weight=3]; 24.86/10.72 1716[label="Nothing",fontsize=16,color="green",shape="box"];1947[label="LT",fontsize=16,color="green",shape="box"];1948[label="LT",fontsize=16,color="green",shape="box"];1949[label="compare0 (Just vyw2800) Nothing otherwise",fontsize=16,color="black",shape="box"];1949 -> 2140[label="",style="solid", color="black", weight=3]; 24.86/10.72 1951[label="vyw2800",fontsize=16,color="green",shape="box"];1952[label="vyw2800 <= vyw2900",fontsize=16,color="blue",shape="box"];3638[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3638[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3638 -> 2141[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3639[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3639[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3639 -> 2142[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3640[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3640[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3640 -> 2143[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3641[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3641[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3641 -> 2144[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3642[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3642[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3642 -> 2145[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3643[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3643[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3643 -> 2146[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3644[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3644[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3644 -> 2147[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3645[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3645[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3645 -> 2148[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3646[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3646[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3646 -> 2149[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3647[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3647[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3647 -> 2150[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3648[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3648[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3648 -> 2151[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3649[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3649[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3649 -> 2152[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3650[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3650[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3650 -> 2153[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3651[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3651[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3651 -> 2154[label="",style="solid", color="blue", weight=3]; 24.86/10.72 1953[label="vyw2900",fontsize=16,color="green",shape="box"];1950[label="compare1 (Just vyw95) (Just vyw96) vyw97",fontsize=16,color="burlywood",shape="triangle"];3652[label="vyw97/False",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3652[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3652 -> 2155[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3653[label="vyw97/True",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3653[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3653 -> 2156[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1717[label="Nothing",fontsize=16,color="green",shape="box"];1718[label="Nothing == Just vyw300",fontsize=16,color="black",shape="box"];1718 -> 1747[label="",style="solid", color="black", weight=3]; 24.86/10.72 1719[label="Just vyw300",fontsize=16,color="green",shape="box"];1720[label="Just vyw40",fontsize=16,color="green",shape="box"];1721[label="Just vyw40 == Nothing",fontsize=16,color="black",shape="box"];1721 -> 1748[label="",style="solid", color="black", weight=3]; 24.86/10.72 1722[label="Nothing",fontsize=16,color="green",shape="box"];1970 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1970[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1970 -> 2157[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1970 -> 2158[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1971 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1971[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1971 -> 2159[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1971 -> 2160[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1972 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1972[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1972 -> 2161[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1972 -> 2162[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1973 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1973[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1973 -> 2163[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1973 -> 2164[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1974 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1974[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1974 -> 2165[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1974 -> 2166[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1975 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1975[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1975 -> 2167[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1975 -> 2168[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1976 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1976[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1976 -> 2169[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1976 -> 2170[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1977 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1977[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1977 -> 2171[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1977 -> 2172[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1978 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1978[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1978 -> 2173[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1978 -> 2174[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1979 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1979[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1979 -> 2175[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1979 -> 2176[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1980 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1980[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1980 -> 2177[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1980 -> 2178[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1981 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1981[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1981 -> 2179[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1981 -> 2180[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1982 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1982[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1982 -> 2181[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1982 -> 2182[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1983 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1983[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1983 -> 2183[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1983 -> 2184[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1984[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3654[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3654[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3654 -> 2185[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3655[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3655[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3655 -> 2186[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3656[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3656[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3656 -> 2187[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3657[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3657[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3657 -> 2188[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3658[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3658[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3658 -> 2189[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3659[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3659[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3659 -> 2190[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3660[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3660[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3660 -> 2191[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3661[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3661[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3661 -> 2192[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3662[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3662[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3662 -> 2193[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3663[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3663[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3663 -> 2194[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3664[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3664[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3664 -> 2195[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3665[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3665[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3665 -> 2196[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3666[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3666[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3666 -> 2197[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3667[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1984 -> 3667[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3667 -> 2198[label="",style="solid", color="blue", weight=3]; 24.86/10.72 1985[label="vyw402 == vyw3002",fontsize=16,color="blue",shape="box"];3668[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3668[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3668 -> 2199[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3669[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3669[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3669 -> 2200[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3670[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3670[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3670 -> 2201[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3671[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3671[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3671 -> 2202[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3672[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3672[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3672 -> 2203[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3673[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3673[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3673 -> 2204[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3674[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3674[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3674 -> 2205[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3675[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3675[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3675 -> 2206[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3676[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3676[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3676 -> 2207[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3677[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3677[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3677 -> 2208[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3678[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3678[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3678 -> 2209[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3679[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3679[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3679 -> 2210[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3680[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3680[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3680 -> 2211[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3681[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1985 -> 3681[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3681 -> 2212[label="",style="solid", color="blue", weight=3]; 24.86/10.72 1986[label="False && vyw102",fontsize=16,color="black",shape="box"];1986 -> 2213[label="",style="solid", color="black", weight=3]; 24.86/10.72 1987[label="True && vyw102",fontsize=16,color="black",shape="box"];1987 -> 2214[label="",style="solid", color="black", weight=3]; 24.86/10.72 1988[label="primEqInt (Pos (Succ vyw4000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1988 -> 2215[label="",style="solid", color="black", weight=3]; 24.86/10.72 1989[label="primEqInt (Pos (Succ vyw4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1989 -> 2216[label="",style="solid", color="black", weight=3]; 24.86/10.72 1990[label="False",fontsize=16,color="green",shape="box"];1991[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1991 -> 2217[label="",style="solid", color="black", weight=3]; 24.86/10.72 1992[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1992 -> 2218[label="",style="solid", color="black", weight=3]; 24.86/10.72 1993[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1993 -> 2219[label="",style="solid", color="black", weight=3]; 24.86/10.72 1994[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1994 -> 2220[label="",style="solid", color="black", weight=3]; 24.86/10.72 1995[label="False",fontsize=16,color="green",shape="box"];1996[label="primEqInt (Neg (Succ vyw4000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1996 -> 2221[label="",style="solid", color="black", weight=3]; 24.86/10.72 1997[label="primEqInt (Neg (Succ vyw4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1997 -> 2222[label="",style="solid", color="black", weight=3]; 24.86/10.72 1998[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1998 -> 2223[label="",style="solid", color="black", weight=3]; 24.86/10.72 1999[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1999 -> 2224[label="",style="solid", color="black", weight=3]; 24.86/10.72 2000[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2000 -> 2225[label="",style="solid", color="black", weight=3]; 24.86/10.72 2001[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2001 -> 2226[label="",style="solid", color="black", weight=3]; 24.86/10.72 2002 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2002[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2002 -> 2227[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2002 -> 2228[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2003 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2003[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2003 -> 2229[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2003 -> 2230[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2004 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2004[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2004 -> 2231[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2004 -> 2232[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2005 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2005[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2005 -> 2233[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2005 -> 2234[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2006 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2006[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2006 -> 2235[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2006 -> 2236[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2007 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2007[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2007 -> 2237[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2007 -> 2238[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2008 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2008[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2008 -> 2239[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2008 -> 2240[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2009 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2009[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2009 -> 2241[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2009 -> 2242[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2010 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2010[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2010 -> 2243[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2010 -> 2244[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2011 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2011[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2011 -> 2245[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2011 -> 2246[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2012 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2012[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2012 -> 2247[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2012 -> 2248[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2013 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2013[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2013 -> 2249[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2013 -> 2250[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2014 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2014[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2014 -> 2251[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2014 -> 2252[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2015 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2015[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2015 -> 2253[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2015 -> 2254[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2016[label="vyw3001",fontsize=16,color="green",shape="box"];2017[label="vyw401",fontsize=16,color="green",shape="box"];2018[label="primEqNat (Succ vyw4000) vyw3000",fontsize=16,color="burlywood",shape="box"];3682[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3682[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3682 -> 2255[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3683[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3683[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3683 -> 2256[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2019[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];3684[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2019 -> 3684[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3684 -> 2257[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3685[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2019 -> 3685[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3685 -> 2258[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2020 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2020[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2020 -> 2259[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2020 -> 2260[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2021 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2021[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2021 -> 2261[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2021 -> 2262[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2022 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2022[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2022 -> 2263[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2022 -> 2264[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2023 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2023[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2023 -> 2265[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2023 -> 2266[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2024 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2024[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2024 -> 2267[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2024 -> 2268[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2025 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2025[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2025 -> 2269[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2025 -> 2270[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2026 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2026[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2026 -> 2271[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2026 -> 2272[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2027 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2027[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2027 -> 2273[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2027 -> 2274[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2028 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2028[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2028 -> 2275[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2028 -> 2276[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2029 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2029[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2029 -> 2277[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2029 -> 2278[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2030 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2030[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2030 -> 2279[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2030 -> 2280[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2031 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2031[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2031 -> 2281[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2031 -> 2282[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2032 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2032[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2032 -> 2283[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2032 -> 2284[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2033 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2033[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2033 -> 2285[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2033 -> 2286[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2034 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2034[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2034 -> 2287[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2034 -> 2288[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2035 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2035[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2035 -> 2289[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2035 -> 2290[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2036 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2036[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2036 -> 2291[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2036 -> 2292[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2037 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2037[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2037 -> 2293[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2037 -> 2294[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2038 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2038[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2038 -> 2295[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2038 -> 2296[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2039 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2039[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2039 -> 2297[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2039 -> 2298[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2040 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2040[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2040 -> 2299[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2040 -> 2300[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2041 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2041[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2041 -> 2301[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2041 -> 2302[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2042 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2042[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2042 -> 2303[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2042 -> 2304[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2043 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2043[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2043 -> 2305[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2043 -> 2306[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2044 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2044[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2044 -> 2307[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2044 -> 2308[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2045 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2045[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2045 -> 2309[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2045 -> 2310[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2046 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2046[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2046 -> 2311[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2046 -> 2312[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2047 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2047[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2047 -> 2313[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2047 -> 2314[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2048[label="vyw401 * vyw3000",fontsize=16,color="black",shape="triangle"];2048 -> 2315[label="",style="solid", color="black", weight=3]; 24.86/10.72 2049 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2049[label="vyw400 * vyw3001",fontsize=16,color="magenta"];2049 -> 2316[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2049 -> 2317[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2050[label="vyw3000",fontsize=16,color="green",shape="box"];2051[label="vyw400",fontsize=16,color="green",shape="box"];2052[label="vyw3000",fontsize=16,color="green",shape="box"];2053[label="vyw400",fontsize=16,color="green",shape="box"];2054[label="vyw3000",fontsize=16,color="green",shape="box"];2055[label="vyw400",fontsize=16,color="green",shape="box"];2056[label="vyw3000",fontsize=16,color="green",shape="box"];2057[label="vyw400",fontsize=16,color="green",shape="box"];2058[label="vyw3000",fontsize=16,color="green",shape="box"];2059[label="vyw400",fontsize=16,color="green",shape="box"];2060[label="vyw3000",fontsize=16,color="green",shape="box"];2061[label="vyw400",fontsize=16,color="green",shape="box"];2062[label="vyw3000",fontsize=16,color="green",shape="box"];2063[label="vyw400",fontsize=16,color="green",shape="box"];2064[label="vyw3000",fontsize=16,color="green",shape="box"];2065[label="vyw400",fontsize=16,color="green",shape="box"];2066[label="vyw3000",fontsize=16,color="green",shape="box"];2067[label="vyw400",fontsize=16,color="green",shape="box"];2068[label="vyw3000",fontsize=16,color="green",shape="box"];2069[label="vyw400",fontsize=16,color="green",shape="box"];2070[label="vyw3000",fontsize=16,color="green",shape="box"];2071[label="vyw400",fontsize=16,color="green",shape="box"];2072[label="vyw3000",fontsize=16,color="green",shape="box"];2073[label="vyw400",fontsize=16,color="green",shape="box"];2074[label="vyw3000",fontsize=16,color="green",shape="box"];2075[label="vyw400",fontsize=16,color="green",shape="box"];2076[label="vyw3000",fontsize=16,color="green",shape="box"];2077[label="vyw400",fontsize=16,color="green",shape="box"];2078 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2078[label="vyw401 * vyw3000",fontsize=16,color="magenta"];2078 -> 2318[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2078 -> 2319[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2079 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2079[label="vyw400 * vyw3001",fontsize=16,color="magenta"];2079 -> 2320[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2079 -> 2321[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2080 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2080[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2080 -> 2322[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2080 -> 2323[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2081 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2081[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2081 -> 2324[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2081 -> 2325[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2082 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2082[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2082 -> 2326[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2082 -> 2327[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2083 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2083[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2083 -> 2328[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2083 -> 2329[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2084[label="vyw3000",fontsize=16,color="green",shape="box"];2085[label="vyw400",fontsize=16,color="green",shape="box"];2086[label="vyw3000",fontsize=16,color="green",shape="box"];2087[label="vyw400",fontsize=16,color="green",shape="box"];2088[label="vyw3000",fontsize=16,color="green",shape="box"];2089[label="vyw400",fontsize=16,color="green",shape="box"];2090[label="vyw3000",fontsize=16,color="green",shape="box"];2091[label="vyw400",fontsize=16,color="green",shape="box"];2092[label="vyw3000",fontsize=16,color="green",shape="box"];2093[label="vyw400",fontsize=16,color="green",shape="box"];2094[label="vyw3000",fontsize=16,color="green",shape="box"];2095[label="vyw400",fontsize=16,color="green",shape="box"];2096[label="vyw3000",fontsize=16,color="green",shape="box"];2097[label="vyw400",fontsize=16,color="green",shape="box"];2098[label="vyw3000",fontsize=16,color="green",shape="box"];2099[label="vyw400",fontsize=16,color="green",shape="box"];2100[label="vyw3000",fontsize=16,color="green",shape="box"];2101[label="vyw400",fontsize=16,color="green",shape="box"];2102[label="vyw3000",fontsize=16,color="green",shape="box"];2103[label="vyw400",fontsize=16,color="green",shape="box"];2104[label="vyw3000",fontsize=16,color="green",shape="box"];2105[label="vyw400",fontsize=16,color="green",shape="box"];2106[label="vyw3000",fontsize=16,color="green",shape="box"];2107[label="vyw400",fontsize=16,color="green",shape="box"];2108[label="vyw3000",fontsize=16,color="green",shape="box"];2109[label="vyw400",fontsize=16,color="green",shape="box"];2110[label="vyw3000",fontsize=16,color="green",shape="box"];2111[label="vyw400",fontsize=16,color="green",shape="box"];2112[label="vyw3000",fontsize=16,color="green",shape="box"];2113[label="vyw400",fontsize=16,color="green",shape="box"];2114[label="vyw3000",fontsize=16,color="green",shape="box"];2115[label="vyw400",fontsize=16,color="green",shape="box"];2116[label="vyw3000",fontsize=16,color="green",shape="box"];2117[label="vyw400",fontsize=16,color="green",shape="box"];2118[label="vyw3000",fontsize=16,color="green",shape="box"];2119[label="vyw400",fontsize=16,color="green",shape="box"];2120[label="vyw3000",fontsize=16,color="green",shape="box"];2121[label="vyw400",fontsize=16,color="green",shape="box"];2122[label="vyw3000",fontsize=16,color="green",shape="box"];2123[label="vyw400",fontsize=16,color="green",shape="box"];2124[label="vyw3000",fontsize=16,color="green",shape="box"];2125[label="vyw400",fontsize=16,color="green",shape="box"];2126[label="vyw3000",fontsize=16,color="green",shape="box"];2127[label="vyw400",fontsize=16,color="green",shape="box"];2128[label="vyw3000",fontsize=16,color="green",shape="box"];2129[label="vyw400",fontsize=16,color="green",shape="box"];2130[label="vyw3000",fontsize=16,color="green",shape="box"];2131[label="vyw400",fontsize=16,color="green",shape="box"];2132[label="vyw3000",fontsize=16,color="green",shape="box"];2133[label="vyw400",fontsize=16,color="green",shape="box"];2134[label="vyw3000",fontsize=16,color="green",shape="box"];2135[label="vyw400",fontsize=16,color="green",shape="box"];2136[label="vyw3000",fontsize=16,color="green",shape="box"];2137[label="vyw400",fontsize=16,color="green",shape="box"];2138[label="vyw3000",fontsize=16,color="green",shape="box"];2139[label="vyw400",fontsize=16,color="green",shape="box"];1723[label="Just vyw18",fontsize=16,color="green",shape="box"];1724[label="Just vyw18 == Just vyw13",fontsize=16,color="black",shape="box"];1724 -> 1749[label="",style="solid", color="black", weight=3]; 24.86/10.72 1725[label="Just vyw13",fontsize=16,color="green",shape="box"];1746[label="True",fontsize=16,color="green",shape="box"];2140[label="compare0 (Just vyw2800) Nothing True",fontsize=16,color="black",shape="box"];2140 -> 2330[label="",style="solid", color="black", weight=3]; 24.86/10.72 2141[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2141 -> 2331[label="",style="solid", color="black", weight=3]; 24.86/10.72 2142[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2142 -> 2332[label="",style="solid", color="black", weight=3]; 24.86/10.72 2143[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2143 -> 2333[label="",style="solid", color="black", weight=3]; 24.86/10.72 2144[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2144 -> 2334[label="",style="solid", color="black", weight=3]; 24.86/10.72 2145[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2145 -> 2335[label="",style="solid", color="black", weight=3]; 24.86/10.72 2146[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2146 -> 2336[label="",style="solid", color="black", weight=3]; 24.86/10.72 2147[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3686[label="vyw2800/Nothing",fontsize=10,color="white",style="solid",shape="box"];2147 -> 3686[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3686 -> 2337[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3687[label="vyw2800/Just vyw28000",fontsize=10,color="white",style="solid",shape="box"];2147 -> 3687[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3687 -> 2338[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2148[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3688[label="vyw2800/(vyw28000,vyw28001,vyw28002)",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3688[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3688 -> 2339[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2149[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2149 -> 2340[label="",style="solid", color="black", weight=3]; 24.86/10.72 2150[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2150 -> 2341[label="",style="solid", color="black", weight=3]; 24.86/10.72 2151[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3689[label="vyw2800/Left vyw28000",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3689[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3689 -> 2342[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3690[label="vyw2800/Right vyw28000",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3690[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3690 -> 2343[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2152[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3691[label="vyw2800/(vyw28000,vyw28001)",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3691[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3691 -> 2344[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2153[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3692[label="vyw2800/False",fontsize=10,color="white",style="solid",shape="box"];2153 -> 3692[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3692 -> 2345[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3693[label="vyw2800/True",fontsize=10,color="white",style="solid",shape="box"];2153 -> 3693[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3693 -> 2346[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2154[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3694[label="vyw2800/LT",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3694[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3694 -> 2347[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3695[label="vyw2800/EQ",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3695[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3695 -> 2348[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3696[label="vyw2800/GT",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3696[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3696 -> 2349[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2155[label="compare1 (Just vyw95) (Just vyw96) False",fontsize=16,color="black",shape="box"];2155 -> 2350[label="",style="solid", color="black", weight=3]; 24.86/10.72 2156[label="compare1 (Just vyw95) (Just vyw96) True",fontsize=16,color="black",shape="box"];2156 -> 2351[label="",style="solid", color="black", weight=3]; 24.86/10.72 1747[label="False",fontsize=16,color="green",shape="box"];1748[label="False",fontsize=16,color="green",shape="box"];2157[label="vyw3000",fontsize=16,color="green",shape="box"];2158[label="vyw400",fontsize=16,color="green",shape="box"];2159[label="vyw3000",fontsize=16,color="green",shape="box"];2160[label="vyw400",fontsize=16,color="green",shape="box"];2161[label="vyw3000",fontsize=16,color="green",shape="box"];2162[label="vyw400",fontsize=16,color="green",shape="box"];2163[label="vyw3000",fontsize=16,color="green",shape="box"];2164[label="vyw400",fontsize=16,color="green",shape="box"];2165[label="vyw3000",fontsize=16,color="green",shape="box"];2166[label="vyw400",fontsize=16,color="green",shape="box"];2167[label="vyw3000",fontsize=16,color="green",shape="box"];2168[label="vyw400",fontsize=16,color="green",shape="box"];2169[label="vyw3000",fontsize=16,color="green",shape="box"];2170[label="vyw400",fontsize=16,color="green",shape="box"];2171[label="vyw3000",fontsize=16,color="green",shape="box"];2172[label="vyw400",fontsize=16,color="green",shape="box"];2173[label="vyw3000",fontsize=16,color="green",shape="box"];2174[label="vyw400",fontsize=16,color="green",shape="box"];2175[label="vyw3000",fontsize=16,color="green",shape="box"];2176[label="vyw400",fontsize=16,color="green",shape="box"];2177[label="vyw3000",fontsize=16,color="green",shape="box"];2178[label="vyw400",fontsize=16,color="green",shape="box"];2179[label="vyw3000",fontsize=16,color="green",shape="box"];2180[label="vyw400",fontsize=16,color="green",shape="box"];2181[label="vyw3000",fontsize=16,color="green",shape="box"];2182[label="vyw400",fontsize=16,color="green",shape="box"];2183[label="vyw3000",fontsize=16,color="green",shape="box"];2184[label="vyw400",fontsize=16,color="green",shape="box"];2185 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2185[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2185 -> 2352[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2185 -> 2353[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2186 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2186[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2186 -> 2354[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2186 -> 2355[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2187 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2187[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2187 -> 2356[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2187 -> 2357[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2188 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2188[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2188 -> 2358[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2188 -> 2359[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2189 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2189[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2189 -> 2360[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2189 -> 2361[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2190 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2190[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2190 -> 2362[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2190 -> 2363[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2191 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2191[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2191 -> 2364[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2191 -> 2365[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2192 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2192[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2192 -> 2366[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2192 -> 2367[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2193 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2193[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2193 -> 2368[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2193 -> 2369[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2194 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2194[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2194 -> 2370[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2194 -> 2371[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2195 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2195[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2195 -> 2372[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2195 -> 2373[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2196 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2196[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2196 -> 2374[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2196 -> 2375[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2197 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2197[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2197 -> 2376[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2197 -> 2377[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2198 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2198[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2198 -> 2378[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2198 -> 2379[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2199 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2199[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2199 -> 2380[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2199 -> 2381[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2200 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2200[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2200 -> 2382[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2200 -> 2383[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2201 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2201[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2201 -> 2384[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2201 -> 2385[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2202 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2202[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2202 -> 2386[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2202 -> 2387[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2203 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2203[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2203 -> 2388[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2203 -> 2389[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2204 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2204[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2204 -> 2390[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2204 -> 2391[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2205 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2205[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2205 -> 2392[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2205 -> 2393[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2206 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2206[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2206 -> 2394[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2206 -> 2395[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2207 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2207[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2207 -> 2396[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2207 -> 2397[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2208 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2208[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2208 -> 2398[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2208 -> 2399[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2209 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2209[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2209 -> 2400[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2209 -> 2401[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2210 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2210[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2210 -> 2402[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2210 -> 2403[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2211 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2211[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2211 -> 2404[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2211 -> 2405[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2212 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2212[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2212 -> 2406[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2212 -> 2407[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2213[label="False",fontsize=16,color="green",shape="box"];2214[label="vyw102",fontsize=16,color="green",shape="box"];2215 -> 1900[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2215[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2215 -> 2408[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2215 -> 2409[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2216[label="False",fontsize=16,color="green",shape="box"];2217[label="False",fontsize=16,color="green",shape="box"];2218[label="True",fontsize=16,color="green",shape="box"];2219[label="False",fontsize=16,color="green",shape="box"];2220[label="True",fontsize=16,color="green",shape="box"];2221 -> 1900[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2221[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2221 -> 2410[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2221 -> 2411[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2222[label="False",fontsize=16,color="green",shape="box"];2223[label="False",fontsize=16,color="green",shape="box"];2224[label="True",fontsize=16,color="green",shape="box"];2225[label="False",fontsize=16,color="green",shape="box"];2226[label="True",fontsize=16,color="green",shape="box"];2227[label="vyw3000",fontsize=16,color="green",shape="box"];2228[label="vyw400",fontsize=16,color="green",shape="box"];2229[label="vyw3000",fontsize=16,color="green",shape="box"];2230[label="vyw400",fontsize=16,color="green",shape="box"];2231[label="vyw3000",fontsize=16,color="green",shape="box"];2232[label="vyw400",fontsize=16,color="green",shape="box"];2233[label="vyw3000",fontsize=16,color="green",shape="box"];2234[label="vyw400",fontsize=16,color="green",shape="box"];2235[label="vyw3000",fontsize=16,color="green",shape="box"];2236[label="vyw400",fontsize=16,color="green",shape="box"];2237[label="vyw3000",fontsize=16,color="green",shape="box"];2238[label="vyw400",fontsize=16,color="green",shape="box"];2239[label="vyw3000",fontsize=16,color="green",shape="box"];2240[label="vyw400",fontsize=16,color="green",shape="box"];2241[label="vyw3000",fontsize=16,color="green",shape="box"];2242[label="vyw400",fontsize=16,color="green",shape="box"];2243[label="vyw3000",fontsize=16,color="green",shape="box"];2244[label="vyw400",fontsize=16,color="green",shape="box"];2245[label="vyw3000",fontsize=16,color="green",shape="box"];2246[label="vyw400",fontsize=16,color="green",shape="box"];2247[label="vyw3000",fontsize=16,color="green",shape="box"];2248[label="vyw400",fontsize=16,color="green",shape="box"];2249[label="vyw3000",fontsize=16,color="green",shape="box"];2250[label="vyw400",fontsize=16,color="green",shape="box"];2251[label="vyw3000",fontsize=16,color="green",shape="box"];2252[label="vyw400",fontsize=16,color="green",shape="box"];2253[label="vyw3000",fontsize=16,color="green",shape="box"];2254[label="vyw400",fontsize=16,color="green",shape="box"];2255[label="primEqNat (Succ vyw4000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];2255 -> 2412[label="",style="solid", color="black", weight=3]; 24.86/10.72 2256[label="primEqNat (Succ vyw4000) Zero",fontsize=16,color="black",shape="box"];2256 -> 2413[label="",style="solid", color="black", weight=3]; 24.86/10.72 2257[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];2257 -> 2414[label="",style="solid", color="black", weight=3]; 24.86/10.72 2258[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2258 -> 2415[label="",style="solid", color="black", weight=3]; 24.86/10.72 2259[label="vyw3000",fontsize=16,color="green",shape="box"];2260[label="vyw400",fontsize=16,color="green",shape="box"];2261[label="vyw3000",fontsize=16,color="green",shape="box"];2262[label="vyw400",fontsize=16,color="green",shape="box"];2263[label="vyw3000",fontsize=16,color="green",shape="box"];2264[label="vyw400",fontsize=16,color="green",shape="box"];2265[label="vyw3000",fontsize=16,color="green",shape="box"];2266[label="vyw400",fontsize=16,color="green",shape="box"];2267[label="vyw3000",fontsize=16,color="green",shape="box"];2268[label="vyw400",fontsize=16,color="green",shape="box"];2269[label="vyw3000",fontsize=16,color="green",shape="box"];2270[label="vyw400",fontsize=16,color="green",shape="box"];2271[label="vyw3000",fontsize=16,color="green",shape="box"];2272[label="vyw400",fontsize=16,color="green",shape="box"];2273[label="vyw3000",fontsize=16,color="green",shape="box"];2274[label="vyw400",fontsize=16,color="green",shape="box"];2275[label="vyw3000",fontsize=16,color="green",shape="box"];2276[label="vyw400",fontsize=16,color="green",shape="box"];2277[label="vyw3000",fontsize=16,color="green",shape="box"];2278[label="vyw400",fontsize=16,color="green",shape="box"];2279[label="vyw3000",fontsize=16,color="green",shape="box"];2280[label="vyw400",fontsize=16,color="green",shape="box"];2281[label="vyw3000",fontsize=16,color="green",shape="box"];2282[label="vyw400",fontsize=16,color="green",shape="box"];2283[label="vyw3000",fontsize=16,color="green",shape="box"];2284[label="vyw400",fontsize=16,color="green",shape="box"];2285[label="vyw3000",fontsize=16,color="green",shape="box"];2286[label="vyw400",fontsize=16,color="green",shape="box"];2287[label="vyw3001",fontsize=16,color="green",shape="box"];2288[label="vyw401",fontsize=16,color="green",shape="box"];2289[label="vyw3001",fontsize=16,color="green",shape="box"];2290[label="vyw401",fontsize=16,color="green",shape="box"];2291[label="vyw3001",fontsize=16,color="green",shape="box"];2292[label="vyw401",fontsize=16,color="green",shape="box"];2293[label="vyw3001",fontsize=16,color="green",shape="box"];2294[label="vyw401",fontsize=16,color="green",shape="box"];2295[label="vyw3001",fontsize=16,color="green",shape="box"];2296[label="vyw401",fontsize=16,color="green",shape="box"];2297[label="vyw3001",fontsize=16,color="green",shape="box"];2298[label="vyw401",fontsize=16,color="green",shape="box"];2299[label="vyw3001",fontsize=16,color="green",shape="box"];2300[label="vyw401",fontsize=16,color="green",shape="box"];2301[label="vyw3001",fontsize=16,color="green",shape="box"];2302[label="vyw401",fontsize=16,color="green",shape="box"];2303[label="vyw3001",fontsize=16,color="green",shape="box"];2304[label="vyw401",fontsize=16,color="green",shape="box"];2305[label="vyw3001",fontsize=16,color="green",shape="box"];2306[label="vyw401",fontsize=16,color="green",shape="box"];2307[label="vyw3001",fontsize=16,color="green",shape="box"];2308[label="vyw401",fontsize=16,color="green",shape="box"];2309[label="vyw3001",fontsize=16,color="green",shape="box"];2310[label="vyw401",fontsize=16,color="green",shape="box"];2311[label="vyw3001",fontsize=16,color="green",shape="box"];2312[label="vyw401",fontsize=16,color="green",shape="box"];2313[label="vyw3001",fontsize=16,color="green",shape="box"];2314[label="vyw401",fontsize=16,color="green",shape="box"];2315[label="primMulInt vyw401 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3697[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];2315 -> 3697[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3697 -> 2416[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3698[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];2315 -> 3698[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3698 -> 2417[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2316[label="vyw3001",fontsize=16,color="green",shape="box"];2317[label="vyw400",fontsize=16,color="green",shape="box"];2318[label="vyw3000",fontsize=16,color="green",shape="box"];2319[label="vyw401",fontsize=16,color="green",shape="box"];2320[label="vyw3001",fontsize=16,color="green",shape="box"];2321[label="vyw400",fontsize=16,color="green",shape="box"];2322[label="vyw3000",fontsize=16,color="green",shape="box"];2323[label="vyw400",fontsize=16,color="green",shape="box"];2324[label="vyw3000",fontsize=16,color="green",shape="box"];2325[label="vyw400",fontsize=16,color="green",shape="box"];2326[label="vyw3001",fontsize=16,color="green",shape="box"];2327[label="vyw401",fontsize=16,color="green",shape="box"];2328[label="vyw3001",fontsize=16,color="green",shape="box"];2329[label="vyw401",fontsize=16,color="green",shape="box"];1749[label="vyw18 == vyw13",fontsize=16,color="blue",shape="box"];3699[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3699[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3699 -> 1769[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3700[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3700[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3700 -> 1770[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3701[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3701[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3701 -> 1771[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3702[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3702[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3702 -> 1772[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3703[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3703[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3703 -> 1773[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3704[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3704[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3704 -> 1774[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3705[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3705[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3705 -> 1775[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3706[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3706[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3706 -> 1776[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3707[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3707[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3707 -> 1777[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3708[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3708[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3708 -> 1778[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3709[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3709[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3709 -> 1779[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3710[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3710[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3710 -> 1780[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3711[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3711[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3711 -> 1781[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3712[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3712[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3712 -> 1782[label="",style="solid", color="blue", weight=3]; 24.86/10.72 2330[label="GT",fontsize=16,color="green",shape="box"];2331[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2331 -> 2418[label="",style="solid", color="black", weight=3]; 24.86/10.72 2332[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2332 -> 2419[label="",style="solid", color="black", weight=3]; 24.86/10.72 2333[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2333 -> 2420[label="",style="solid", color="black", weight=3]; 24.86/10.72 2334[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2334 -> 2421[label="",style="solid", color="black", weight=3]; 24.86/10.72 2335[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2335 -> 2422[label="",style="solid", color="black", weight=3]; 24.86/10.72 2336[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2336 -> 2423[label="",style="solid", color="black", weight=3]; 24.86/10.72 2337[label="Nothing <= vyw2900",fontsize=16,color="burlywood",shape="box"];3713[label="vyw2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2337 -> 3713[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3713 -> 2424[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3714[label="vyw2900/Just vyw29000",fontsize=10,color="white",style="solid",shape="box"];2337 -> 3714[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3714 -> 2425[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2338[label="Just vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3715[label="vyw2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2338 -> 3715[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3715 -> 2426[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3716[label="vyw2900/Just vyw29000",fontsize=10,color="white",style="solid",shape="box"];2338 -> 3716[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3716 -> 2427[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2339[label="(vyw28000,vyw28001,vyw28002) <= vyw2900",fontsize=16,color="burlywood",shape="box"];3717[label="vyw2900/(vyw29000,vyw29001,vyw29002)",fontsize=10,color="white",style="solid",shape="box"];2339 -> 3717[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3717 -> 2428[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2340[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2340 -> 2429[label="",style="solid", color="black", weight=3]; 24.86/10.72 2341[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2341 -> 2430[label="",style="solid", color="black", weight=3]; 24.86/10.72 2342[label="Left vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3718[label="vyw2900/Left vyw29000",fontsize=10,color="white",style="solid",shape="box"];2342 -> 3718[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3718 -> 2431[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3719[label="vyw2900/Right vyw29000",fontsize=10,color="white",style="solid",shape="box"];2342 -> 3719[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3719 -> 2432[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2343[label="Right vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3720[label="vyw2900/Left vyw29000",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3720[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3720 -> 2433[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3721[label="vyw2900/Right vyw29000",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3721[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3721 -> 2434[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2344[label="(vyw28000,vyw28001) <= vyw2900",fontsize=16,color="burlywood",shape="box"];3722[label="vyw2900/(vyw29000,vyw29001)",fontsize=10,color="white",style="solid",shape="box"];2344 -> 3722[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3722 -> 2435[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2345[label="False <= vyw2900",fontsize=16,color="burlywood",shape="box"];3723[label="vyw2900/False",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3723[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3723 -> 2436[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3724[label="vyw2900/True",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3724[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3724 -> 2437[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2346[label="True <= vyw2900",fontsize=16,color="burlywood",shape="box"];3725[label="vyw2900/False",fontsize=10,color="white",style="solid",shape="box"];2346 -> 3725[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3725 -> 2438[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3726[label="vyw2900/True",fontsize=10,color="white",style="solid",shape="box"];2346 -> 3726[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3726 -> 2439[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2347[label="LT <= vyw2900",fontsize=16,color="burlywood",shape="box"];3727[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2347 -> 3727[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3727 -> 2440[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3728[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2347 -> 3728[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3728 -> 2441[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3729[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2347 -> 3729[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3729 -> 2442[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2348[label="EQ <= vyw2900",fontsize=16,color="burlywood",shape="box"];3730[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2348 -> 3730[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3730 -> 2443[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3731[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2348 -> 3731[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3731 -> 2444[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3732[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2348 -> 3732[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3732 -> 2445[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2349[label="GT <= vyw2900",fontsize=16,color="burlywood",shape="box"];3733[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2349 -> 3733[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3733 -> 2446[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3734[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2349 -> 3734[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3734 -> 2447[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3735[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2349 -> 3735[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3735 -> 2448[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2350[label="compare0 (Just vyw95) (Just vyw96) otherwise",fontsize=16,color="black",shape="box"];2350 -> 2449[label="",style="solid", color="black", weight=3]; 24.86/10.72 2351[label="LT",fontsize=16,color="green",shape="box"];2352[label="vyw3001",fontsize=16,color="green",shape="box"];2353[label="vyw401",fontsize=16,color="green",shape="box"];2354[label="vyw3001",fontsize=16,color="green",shape="box"];2355[label="vyw401",fontsize=16,color="green",shape="box"];2356[label="vyw3001",fontsize=16,color="green",shape="box"];2357[label="vyw401",fontsize=16,color="green",shape="box"];2358[label="vyw3001",fontsize=16,color="green",shape="box"];2359[label="vyw401",fontsize=16,color="green",shape="box"];2360[label="vyw3001",fontsize=16,color="green",shape="box"];2361[label="vyw401",fontsize=16,color="green",shape="box"];2362[label="vyw3001",fontsize=16,color="green",shape="box"];2363[label="vyw401",fontsize=16,color="green",shape="box"];2364[label="vyw3001",fontsize=16,color="green",shape="box"];2365[label="vyw401",fontsize=16,color="green",shape="box"];2366[label="vyw3001",fontsize=16,color="green",shape="box"];2367[label="vyw401",fontsize=16,color="green",shape="box"];2368[label="vyw3001",fontsize=16,color="green",shape="box"];2369[label="vyw401",fontsize=16,color="green",shape="box"];2370[label="vyw3001",fontsize=16,color="green",shape="box"];2371[label="vyw401",fontsize=16,color="green",shape="box"];2372[label="vyw3001",fontsize=16,color="green",shape="box"];2373[label="vyw401",fontsize=16,color="green",shape="box"];2374[label="vyw3001",fontsize=16,color="green",shape="box"];2375[label="vyw401",fontsize=16,color="green",shape="box"];2376[label="vyw3001",fontsize=16,color="green",shape="box"];2377[label="vyw401",fontsize=16,color="green",shape="box"];2378[label="vyw3001",fontsize=16,color="green",shape="box"];2379[label="vyw401",fontsize=16,color="green",shape="box"];2380[label="vyw3002",fontsize=16,color="green",shape="box"];2381[label="vyw402",fontsize=16,color="green",shape="box"];2382[label="vyw3002",fontsize=16,color="green",shape="box"];2383[label="vyw402",fontsize=16,color="green",shape="box"];2384[label="vyw3002",fontsize=16,color="green",shape="box"];2385[label="vyw402",fontsize=16,color="green",shape="box"];2386[label="vyw3002",fontsize=16,color="green",shape="box"];2387[label="vyw402",fontsize=16,color="green",shape="box"];2388[label="vyw3002",fontsize=16,color="green",shape="box"];2389[label="vyw402",fontsize=16,color="green",shape="box"];2390[label="vyw3002",fontsize=16,color="green",shape="box"];2391[label="vyw402",fontsize=16,color="green",shape="box"];2392[label="vyw3002",fontsize=16,color="green",shape="box"];2393[label="vyw402",fontsize=16,color="green",shape="box"];2394[label="vyw3002",fontsize=16,color="green",shape="box"];2395[label="vyw402",fontsize=16,color="green",shape="box"];2396[label="vyw3002",fontsize=16,color="green",shape="box"];2397[label="vyw402",fontsize=16,color="green",shape="box"];2398[label="vyw3002",fontsize=16,color="green",shape="box"];2399[label="vyw402",fontsize=16,color="green",shape="box"];2400[label="vyw3002",fontsize=16,color="green",shape="box"];2401[label="vyw402",fontsize=16,color="green",shape="box"];2402[label="vyw3002",fontsize=16,color="green",shape="box"];2403[label="vyw402",fontsize=16,color="green",shape="box"];2404[label="vyw3002",fontsize=16,color="green",shape="box"];2405[label="vyw402",fontsize=16,color="green",shape="box"];2406[label="vyw3002",fontsize=16,color="green",shape="box"];2407[label="vyw402",fontsize=16,color="green",shape="box"];2408[label="vyw4000",fontsize=16,color="green",shape="box"];2409[label="vyw30000",fontsize=16,color="green",shape="box"];2410[label="vyw4000",fontsize=16,color="green",shape="box"];2411[label="vyw30000",fontsize=16,color="green",shape="box"];2412 -> 1900[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2412[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2412 -> 2450[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2412 -> 2451[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2413[label="False",fontsize=16,color="green",shape="box"];2414[label="False",fontsize=16,color="green",shape="box"];2415[label="True",fontsize=16,color="green",shape="box"];2416[label="primMulInt (Pos vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];3736[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3736[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3736 -> 2452[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3737[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3737[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3737 -> 2453[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2417[label="primMulInt (Neg vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];3738[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];2417 -> 3738[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3738 -> 2454[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3739[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];2417 -> 3739[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3739 -> 2455[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 1769 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1769[label="vyw18 == vyw13",fontsize=16,color="magenta"];1769 -> 1811[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1769 -> 1812[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1770 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1770[label="vyw18 == vyw13",fontsize=16,color="magenta"];1770 -> 1813[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1770 -> 1814[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1771 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1771[label="vyw18 == vyw13",fontsize=16,color="magenta"];1771 -> 1815[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1771 -> 1816[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1772 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1772[label="vyw18 == vyw13",fontsize=16,color="magenta"];1772 -> 1817[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1772 -> 1818[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1773 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1773[label="vyw18 == vyw13",fontsize=16,color="magenta"];1773 -> 1819[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1773 -> 1820[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1774 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1774[label="vyw18 == vyw13",fontsize=16,color="magenta"];1774 -> 1821[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1774 -> 1822[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1775 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1775[label="vyw18 == vyw13",fontsize=16,color="magenta"];1775 -> 1823[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1775 -> 1824[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1776 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1776[label="vyw18 == vyw13",fontsize=16,color="magenta"];1776 -> 1825[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1776 -> 1826[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1777 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1777[label="vyw18 == vyw13",fontsize=16,color="magenta"];1777 -> 1827[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1777 -> 1828[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1778 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1778[label="vyw18 == vyw13",fontsize=16,color="magenta"];1778 -> 1829[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1778 -> 1830[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1779 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1779[label="vyw18 == vyw13",fontsize=16,color="magenta"];1779 -> 1831[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1779 -> 1832[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1780 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1780[label="vyw18 == vyw13",fontsize=16,color="magenta"];1780 -> 1833[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1780 -> 1834[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1781 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1781[label="vyw18 == vyw13",fontsize=16,color="magenta"];1781 -> 1835[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1781 -> 1836[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1782 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.72 1782[label="vyw18 == vyw13",fontsize=16,color="magenta"];1782 -> 1837[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 1782 -> 1838[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2418 -> 2456[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2418[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2418 -> 2457[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2419 -> 2456[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2419[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2419 -> 2458[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2420 -> 2456[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2420[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2420 -> 2459[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2421 -> 2456[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2421[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2421 -> 2460[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2422 -> 2456[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2422[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2422 -> 2461[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2423 -> 2456[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2423[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2423 -> 2462[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2424[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2424 -> 2465[label="",style="solid", color="black", weight=3]; 24.86/10.72 2425[label="Nothing <= Just vyw29000",fontsize=16,color="black",shape="box"];2425 -> 2466[label="",style="solid", color="black", weight=3]; 24.86/10.72 2426[label="Just vyw28000 <= Nothing",fontsize=16,color="black",shape="box"];2426 -> 2467[label="",style="solid", color="black", weight=3]; 24.86/10.72 2427[label="Just vyw28000 <= Just vyw29000",fontsize=16,color="black",shape="box"];2427 -> 2468[label="",style="solid", color="black", weight=3]; 24.86/10.72 2428[label="(vyw28000,vyw28001,vyw28002) <= (vyw29000,vyw29001,vyw29002)",fontsize=16,color="black",shape="box"];2428 -> 2469[label="",style="solid", color="black", weight=3]; 24.86/10.72 2429 -> 2456[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2429[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2429 -> 2463[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2430 -> 2456[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2430[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2430 -> 2464[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2431[label="Left vyw28000 <= Left vyw29000",fontsize=16,color="black",shape="box"];2431 -> 2470[label="",style="solid", color="black", weight=3]; 24.86/10.72 2432[label="Left vyw28000 <= Right vyw29000",fontsize=16,color="black",shape="box"];2432 -> 2471[label="",style="solid", color="black", weight=3]; 24.86/10.72 2433[label="Right vyw28000 <= Left vyw29000",fontsize=16,color="black",shape="box"];2433 -> 2472[label="",style="solid", color="black", weight=3]; 24.86/10.72 2434[label="Right vyw28000 <= Right vyw29000",fontsize=16,color="black",shape="box"];2434 -> 2473[label="",style="solid", color="black", weight=3]; 24.86/10.72 2435[label="(vyw28000,vyw28001) <= (vyw29000,vyw29001)",fontsize=16,color="black",shape="box"];2435 -> 2474[label="",style="solid", color="black", weight=3]; 24.86/10.72 2436[label="False <= False",fontsize=16,color="black",shape="box"];2436 -> 2475[label="",style="solid", color="black", weight=3]; 24.86/10.72 2437[label="False <= True",fontsize=16,color="black",shape="box"];2437 -> 2476[label="",style="solid", color="black", weight=3]; 24.86/10.72 2438[label="True <= False",fontsize=16,color="black",shape="box"];2438 -> 2477[label="",style="solid", color="black", weight=3]; 24.86/10.72 2439[label="True <= True",fontsize=16,color="black",shape="box"];2439 -> 2478[label="",style="solid", color="black", weight=3]; 24.86/10.72 2440[label="LT <= LT",fontsize=16,color="black",shape="box"];2440 -> 2479[label="",style="solid", color="black", weight=3]; 24.86/10.72 2441[label="LT <= EQ",fontsize=16,color="black",shape="box"];2441 -> 2480[label="",style="solid", color="black", weight=3]; 24.86/10.72 2442[label="LT <= GT",fontsize=16,color="black",shape="box"];2442 -> 2481[label="",style="solid", color="black", weight=3]; 24.86/10.72 2443[label="EQ <= LT",fontsize=16,color="black",shape="box"];2443 -> 2482[label="",style="solid", color="black", weight=3]; 24.86/10.72 2444[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2444 -> 2483[label="",style="solid", color="black", weight=3]; 24.86/10.72 2445[label="EQ <= GT",fontsize=16,color="black",shape="box"];2445 -> 2484[label="",style="solid", color="black", weight=3]; 24.86/10.72 2446[label="GT <= LT",fontsize=16,color="black",shape="box"];2446 -> 2485[label="",style="solid", color="black", weight=3]; 24.86/10.72 2447[label="GT <= EQ",fontsize=16,color="black",shape="box"];2447 -> 2486[label="",style="solid", color="black", weight=3]; 24.86/10.72 2448[label="GT <= GT",fontsize=16,color="black",shape="box"];2448 -> 2487[label="",style="solid", color="black", weight=3]; 24.86/10.72 2449[label="compare0 (Just vyw95) (Just vyw96) True",fontsize=16,color="black",shape="box"];2449 -> 2488[label="",style="solid", color="black", weight=3]; 24.86/10.72 2450[label="vyw4000",fontsize=16,color="green",shape="box"];2451[label="vyw30000",fontsize=16,color="green",shape="box"];2452[label="primMulInt (Pos vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];2452 -> 2489[label="",style="solid", color="black", weight=3]; 24.86/10.72 2453[label="primMulInt (Pos vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];2453 -> 2490[label="",style="solid", color="black", weight=3]; 24.86/10.72 2454[label="primMulInt (Neg vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];2454 -> 2491[label="",style="solid", color="black", weight=3]; 24.86/10.72 2455[label="primMulInt (Neg vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];2455 -> 2492[label="",style="solid", color="black", weight=3]; 24.86/10.72 1811[label="vyw13",fontsize=16,color="green",shape="box"];1812[label="vyw18",fontsize=16,color="green",shape="box"];1813[label="vyw13",fontsize=16,color="green",shape="box"];1814[label="vyw18",fontsize=16,color="green",shape="box"];1815[label="vyw13",fontsize=16,color="green",shape="box"];1816[label="vyw18",fontsize=16,color="green",shape="box"];1817[label="vyw13",fontsize=16,color="green",shape="box"];1818[label="vyw18",fontsize=16,color="green",shape="box"];1819[label="vyw13",fontsize=16,color="green",shape="box"];1820[label="vyw18",fontsize=16,color="green",shape="box"];1821[label="vyw13",fontsize=16,color="green",shape="box"];1822[label="vyw18",fontsize=16,color="green",shape="box"];1823[label="vyw13",fontsize=16,color="green",shape="box"];1824[label="vyw18",fontsize=16,color="green",shape="box"];1825[label="vyw13",fontsize=16,color="green",shape="box"];1826[label="vyw18",fontsize=16,color="green",shape="box"];1827[label="vyw13",fontsize=16,color="green",shape="box"];1828[label="vyw18",fontsize=16,color="green",shape="box"];1829[label="vyw13",fontsize=16,color="green",shape="box"];1830[label="vyw18",fontsize=16,color="green",shape="box"];1831[label="vyw13",fontsize=16,color="green",shape="box"];1832[label="vyw18",fontsize=16,color="green",shape="box"];1833[label="vyw13",fontsize=16,color="green",shape="box"];1834[label="vyw18",fontsize=16,color="green",shape="box"];1835[label="vyw13",fontsize=16,color="green",shape="box"];1836[label="vyw18",fontsize=16,color="green",shape="box"];1837[label="vyw13",fontsize=16,color="green",shape="box"];1838[label="vyw18",fontsize=16,color="green",shape="box"];2457 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2457[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2457 -> 2493[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2457 -> 2494[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2456[label="not vyw103",fontsize=16,color="burlywood",shape="triangle"];3740[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3740[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3740 -> 2495[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3741[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3741[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3741 -> 2496[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2458 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2458[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2458 -> 2497[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2458 -> 2498[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2459 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2459[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2459 -> 2499[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2459 -> 2500[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2460 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2460[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2460 -> 2501[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2460 -> 2502[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2461 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2461[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2461 -> 2503[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2461 -> 2504[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2462 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2462[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2462 -> 2505[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2462 -> 2506[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2465[label="True",fontsize=16,color="green",shape="box"];2466[label="True",fontsize=16,color="green",shape="box"];2467[label="False",fontsize=16,color="green",shape="box"];2468[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3742[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3742[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3742 -> 2511[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3743[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3743[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3743 -> 2512[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3744[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3744[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3744 -> 2513[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3745[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3745[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3745 -> 2514[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3746[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3746[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3746 -> 2515[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3747[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3747[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3747 -> 2516[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3748[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3748[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3748 -> 2517[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3749[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3749[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3749 -> 2518[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3750[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3750[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3750 -> 2519[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3751[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3751[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3751 -> 2520[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3752[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3752[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3752 -> 2521[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3753[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3753[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3753 -> 2522[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3754[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3754[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3754 -> 2523[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3755[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3755[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3755 -> 2524[label="",style="solid", color="blue", weight=3]; 24.86/10.72 2469 -> 2601[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2469[label="vyw28000 < vyw29000 || vyw28000 == vyw29000 && (vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002)",fontsize=16,color="magenta"];2469 -> 2602[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2469 -> 2603[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2463 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2463[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2463 -> 2507[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2463 -> 2508[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2464 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2464[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2464 -> 2509[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2464 -> 2510[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2470[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3756[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3756[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3756 -> 2530[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3757[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3757[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3757 -> 2531[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3758[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3758[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3758 -> 2532[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3759[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3759[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3759 -> 2533[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3760[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3760[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3760 -> 2534[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3761[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3761[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3761 -> 2535[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3762[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3762[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3762 -> 2536[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3763[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3763[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3763 -> 2537[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3764[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3764[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3764 -> 2538[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3765[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3765[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3765 -> 2539[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3766[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3766[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3766 -> 2540[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3767[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3767[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3767 -> 2541[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3768[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3768[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3768 -> 2542[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3769[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 3769[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3769 -> 2543[label="",style="solid", color="blue", weight=3]; 24.86/10.72 2471[label="True",fontsize=16,color="green",shape="box"];2472[label="False",fontsize=16,color="green",shape="box"];2473[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3770[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3770[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3770 -> 2544[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3771[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3771[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3771 -> 2545[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3772[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3772[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3772 -> 2546[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3773[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3773[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3773 -> 2547[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3774[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3774[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3774 -> 2548[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3775[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3775[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3775 -> 2549[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3776[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3776[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3776 -> 2550[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3777[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3777[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3777 -> 2551[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3778[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3778[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3778 -> 2552[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3779[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3779[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3779 -> 2553[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3780[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3780[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3780 -> 2554[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3781[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3781[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3781 -> 2555[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3782[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3782[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3782 -> 2556[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3783[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2473 -> 3783[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3783 -> 2557[label="",style="solid", color="blue", weight=3]; 24.86/10.72 2474 -> 2601[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2474[label="vyw28000 < vyw29000 || vyw28000 == vyw29000 && vyw28001 <= vyw29001",fontsize=16,color="magenta"];2474 -> 2604[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2474 -> 2605[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2475[label="True",fontsize=16,color="green",shape="box"];2476[label="True",fontsize=16,color="green",shape="box"];2477[label="False",fontsize=16,color="green",shape="box"];2478[label="True",fontsize=16,color="green",shape="box"];2479[label="True",fontsize=16,color="green",shape="box"];2480[label="True",fontsize=16,color="green",shape="box"];2481[label="True",fontsize=16,color="green",shape="box"];2482[label="False",fontsize=16,color="green",shape="box"];2483[label="True",fontsize=16,color="green",shape="box"];2484[label="True",fontsize=16,color="green",shape="box"];2485[label="False",fontsize=16,color="green",shape="box"];2486[label="False",fontsize=16,color="green",shape="box"];2487[label="True",fontsize=16,color="green",shape="box"];2488[label="GT",fontsize=16,color="green",shape="box"];2489[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2489 -> 2558[label="",style="dashed", color="green", weight=3]; 24.86/10.72 2490[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2490 -> 2559[label="",style="dashed", color="green", weight=3]; 24.86/10.72 2491[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2491 -> 2560[label="",style="dashed", color="green", weight=3]; 24.86/10.72 2492[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2492 -> 2561[label="",style="dashed", color="green", weight=3]; 24.86/10.72 2493[label="GT",fontsize=16,color="green",shape="box"];2494[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3784[label="vyw2800/vyw28000 : vyw28001",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3784[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3784 -> 2562[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3785[label="vyw2800/[]",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3785[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3785 -> 2563[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2495[label="not False",fontsize=16,color="black",shape="box"];2495 -> 2564[label="",style="solid", color="black", weight=3]; 24.86/10.72 2496[label="not True",fontsize=16,color="black",shape="box"];2496 -> 2565[label="",style="solid", color="black", weight=3]; 24.86/10.72 2497[label="GT",fontsize=16,color="green",shape="box"];2498[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2498 -> 2566[label="",style="solid", color="black", weight=3]; 24.86/10.72 2499[label="GT",fontsize=16,color="green",shape="box"];2500[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2500 -> 2567[label="",style="solid", color="black", weight=3]; 24.86/10.72 2501[label="GT",fontsize=16,color="green",shape="box"];2502[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3786[label="vyw2800/Integer vyw28000",fontsize=10,color="white",style="solid",shape="box"];2502 -> 3786[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3786 -> 2568[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2503[label="GT",fontsize=16,color="green",shape="box"];2504[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3787[label="vyw2800/vyw28000 :% vyw28001",fontsize=10,color="white",style="solid",shape="box"];2504 -> 3787[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3787 -> 2569[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2505[label="GT",fontsize=16,color="green",shape="box"];2506[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2506 -> 2570[label="",style="solid", color="black", weight=3]; 24.86/10.72 2511 -> 2141[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2511[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2511 -> 2571[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2511 -> 2572[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2512 -> 2142[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2512[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2512 -> 2573[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2512 -> 2574[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2513 -> 2143[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2513[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2513 -> 2575[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2513 -> 2576[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2514 -> 2144[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2514[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2514 -> 2577[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2514 -> 2578[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2515 -> 2145[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2515[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2515 -> 2579[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2515 -> 2580[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2516 -> 2146[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2516[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2516 -> 2581[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2516 -> 2582[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2517 -> 2147[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2517[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2517 -> 2583[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2517 -> 2584[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2518 -> 2148[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2518[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2518 -> 2585[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2518 -> 2586[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2519 -> 2149[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2519[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2519 -> 2587[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2519 -> 2588[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2520 -> 2150[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2520[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2520 -> 2589[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2520 -> 2590[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2521 -> 2151[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2521[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2521 -> 2591[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2521 -> 2592[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2522 -> 2152[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2522[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2522 -> 2593[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2522 -> 2594[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2523 -> 2153[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2523[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2523 -> 2595[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2523 -> 2596[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2524 -> 2154[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2524[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2524 -> 2597[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2524 -> 2598[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2602[label="vyw28000 < vyw29000",fontsize=16,color="blue",shape="box"];3788[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3788[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3788 -> 2610[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3789[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3789[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3789 -> 2611[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3790[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3790[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3790 -> 2612[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3791[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3791[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3791 -> 2613[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3792[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3792[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3792 -> 2614[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3793[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3793[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3793 -> 2615[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3794[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3794[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3794 -> 2616[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3795[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3795[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3795 -> 2617[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3796[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3796[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3796 -> 2618[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3797[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3797[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3797 -> 2619[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3798[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3798[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3798 -> 2620[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3799[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3799[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3799 -> 2621[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3800[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3800[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3800 -> 2622[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3801[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3801[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3801 -> 2623[label="",style="solid", color="blue", weight=3]; 24.86/10.72 2603 -> 1957[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2603[label="vyw28000 == vyw29000 && (vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002)",fontsize=16,color="magenta"];2603 -> 2624[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2603 -> 2625[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2601[label="vyw109 || vyw110",fontsize=16,color="burlywood",shape="triangle"];3802[label="vyw109/False",fontsize=10,color="white",style="solid",shape="box"];2601 -> 3802[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3802 -> 2626[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 3803[label="vyw109/True",fontsize=10,color="white",style="solid",shape="box"];2601 -> 3803[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3803 -> 2627[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2507[label="GT",fontsize=16,color="green",shape="box"];2508[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3804[label="vyw2800/()",fontsize=10,color="white",style="solid",shape="box"];2508 -> 3804[label="",style="solid", color="burlywood", weight=9]; 24.86/10.72 3804 -> 2628[label="",style="solid", color="burlywood", weight=3]; 24.86/10.72 2509[label="GT",fontsize=16,color="green",shape="box"];2510[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2510 -> 2629[label="",style="solid", color="black", weight=3]; 24.86/10.72 2530 -> 2141[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2530[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2530 -> 2630[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2530 -> 2631[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2531 -> 2142[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2531[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2531 -> 2632[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2531 -> 2633[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2532 -> 2143[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2532[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2532 -> 2634[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2532 -> 2635[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2533 -> 2144[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2533[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2533 -> 2636[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2533 -> 2637[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2534 -> 2145[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2534[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2534 -> 2638[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2534 -> 2639[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2535 -> 2146[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2535[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2535 -> 2640[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2535 -> 2641[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2536 -> 2147[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2536[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2536 -> 2642[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2536 -> 2643[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2537 -> 2148[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2537[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2537 -> 2644[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2537 -> 2645[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2538 -> 2149[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2538[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2538 -> 2646[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2538 -> 2647[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2539 -> 2150[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2539[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2539 -> 2648[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2539 -> 2649[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2540 -> 2151[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2540[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2540 -> 2650[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2540 -> 2651[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2541 -> 2152[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2541[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2541 -> 2652[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2541 -> 2653[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2542 -> 2153[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2542[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2542 -> 2654[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2542 -> 2655[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2543 -> 2154[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2543[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2543 -> 2656[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2543 -> 2657[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2544 -> 2141[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2544[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2544 -> 2658[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2544 -> 2659[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2545 -> 2142[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2545[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2545 -> 2660[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2545 -> 2661[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2546 -> 2143[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2546[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2546 -> 2662[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2546 -> 2663[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2547 -> 2144[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2547[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2547 -> 2664[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2547 -> 2665[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2548 -> 2145[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2548[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2548 -> 2666[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2548 -> 2667[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2549 -> 2146[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2549[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2549 -> 2668[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2549 -> 2669[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2550 -> 2147[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2550[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2550 -> 2670[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2550 -> 2671[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2551 -> 2148[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2551[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2551 -> 2672[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2551 -> 2673[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2552 -> 2149[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2552[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2552 -> 2674[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2552 -> 2675[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2553 -> 2150[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2553[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2553 -> 2676[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2553 -> 2677[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2554 -> 2151[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2554[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2554 -> 2678[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2554 -> 2679[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2555 -> 2152[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2555[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2555 -> 2680[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2555 -> 2681[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2556 -> 2153[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2556[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2556 -> 2682[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2556 -> 2683[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2557 -> 2154[label="",style="dashed", color="red", weight=0]; 24.86/10.72 2557[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2557 -> 2684[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2557 -> 2685[label="",style="dashed", color="magenta", weight=3]; 24.86/10.72 2604[label="vyw28000 < vyw29000",fontsize=16,color="blue",shape="box"];3805[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3805[label="",style="solid", color="blue", weight=9]; 24.86/10.72 3805 -> 2686[label="",style="solid", color="blue", weight=3]; 24.86/10.72 3806[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3806[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3806 -> 2687[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3807[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3807[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3807 -> 2688[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3808[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3808[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3808 -> 2689[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3809[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3809[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3809 -> 2690[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3810[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3810[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3810 -> 2691[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3811[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3811[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3811 -> 2692[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3812[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3812[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3812 -> 2693[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3813[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3813[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3813 -> 2694[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3814[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3814[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3814 -> 2695[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3815[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3815[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3815 -> 2696[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3816[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3816[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3816 -> 2697[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3817[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3817[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3817 -> 2698[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3818[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2604 -> 3818[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3818 -> 2699[label="",style="solid", color="blue", weight=3]; 24.86/10.73 2605 -> 1957[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2605[label="vyw28000 == vyw29000 && vyw28001 <= vyw29001",fontsize=16,color="magenta"];2605 -> 2700[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2605 -> 2701[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2558[label="primMulNat vyw4010 vyw30000",fontsize=16,color="burlywood",shape="triangle"];3819[label="vyw4010/Succ vyw40100",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3819[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3819 -> 2702[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3820[label="vyw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3820[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3820 -> 2703[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2559 -> 2558[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2559[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2559 -> 2704[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2560 -> 2558[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2560[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2560 -> 2705[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2561 -> 2558[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2561[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2561 -> 2706[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2561 -> 2707[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2562[label="compare (vyw28000 : vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3821[label="vyw2900/vyw29000 : vyw29001",fontsize=10,color="white",style="solid",shape="box"];2562 -> 3821[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3821 -> 2708[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3822[label="vyw2900/[]",fontsize=10,color="white",style="solid",shape="box"];2562 -> 3822[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3822 -> 2709[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2563[label="compare [] vyw2900",fontsize=16,color="burlywood",shape="box"];3823[label="vyw2900/vyw29000 : vyw29001",fontsize=10,color="white",style="solid",shape="box"];2563 -> 3823[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3823 -> 2710[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3824[label="vyw2900/[]",fontsize=10,color="white",style="solid",shape="box"];2563 -> 3824[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3824 -> 2711[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2564[label="True",fontsize=16,color="green",shape="box"];2565[label="False",fontsize=16,color="green",shape="box"];2566[label="primCmpInt vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3825[label="vyw2800/Pos vyw28000",fontsize=10,color="white",style="solid",shape="box"];2566 -> 3825[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3825 -> 2712[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3826[label="vyw2800/Neg vyw28000",fontsize=10,color="white",style="solid",shape="box"];2566 -> 3826[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3826 -> 2713[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2567[label="primCmpChar vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3827[label="vyw2800/Char vyw28000",fontsize=10,color="white",style="solid",shape="box"];2567 -> 3827[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3827 -> 2714[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2568[label="compare (Integer vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3828[label="vyw2900/Integer vyw29000",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3828[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3828 -> 2715[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2569[label="compare (vyw28000 :% vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3829[label="vyw2900/vyw29000 :% vyw29001",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3829[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3829 -> 2716[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2570[label="primCmpDouble vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3830[label="vyw2800/Double vyw28000 vyw28001",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3830[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3830 -> 2717[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2571[label="vyw29000",fontsize=16,color="green",shape="box"];2572[label="vyw28000",fontsize=16,color="green",shape="box"];2573[label="vyw29000",fontsize=16,color="green",shape="box"];2574[label="vyw28000",fontsize=16,color="green",shape="box"];2575[label="vyw29000",fontsize=16,color="green",shape="box"];2576[label="vyw28000",fontsize=16,color="green",shape="box"];2577[label="vyw29000",fontsize=16,color="green",shape="box"];2578[label="vyw28000",fontsize=16,color="green",shape="box"];2579[label="vyw29000",fontsize=16,color="green",shape="box"];2580[label="vyw28000",fontsize=16,color="green",shape="box"];2581[label="vyw29000",fontsize=16,color="green",shape="box"];2582[label="vyw28000",fontsize=16,color="green",shape="box"];2583[label="vyw29000",fontsize=16,color="green",shape="box"];2584[label="vyw28000",fontsize=16,color="green",shape="box"];2585[label="vyw29000",fontsize=16,color="green",shape="box"];2586[label="vyw28000",fontsize=16,color="green",shape="box"];2587[label="vyw29000",fontsize=16,color="green",shape="box"];2588[label="vyw28000",fontsize=16,color="green",shape="box"];2589[label="vyw29000",fontsize=16,color="green",shape="box"];2590[label="vyw28000",fontsize=16,color="green",shape="box"];2591[label="vyw29000",fontsize=16,color="green",shape="box"];2592[label="vyw28000",fontsize=16,color="green",shape="box"];2593[label="vyw29000",fontsize=16,color="green",shape="box"];2594[label="vyw28000",fontsize=16,color="green",shape="box"];2595[label="vyw29000",fontsize=16,color="green",shape="box"];2596[label="vyw28000",fontsize=16,color="green",shape="box"];2597[label="vyw29000",fontsize=16,color="green",shape="box"];2598[label="vyw28000",fontsize=16,color="green",shape="box"];2610[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2610 -> 2718[label="",style="solid", color="black", weight=3]; 24.86/10.73 2611[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2611 -> 2719[label="",style="solid", color="black", weight=3]; 24.86/10.73 2612[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2612 -> 2720[label="",style="solid", color="black", weight=3]; 24.86/10.73 2613[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2613 -> 2721[label="",style="solid", color="black", weight=3]; 24.86/10.73 2614[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2614 -> 2722[label="",style="solid", color="black", weight=3]; 24.86/10.73 2615[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2615 -> 2723[label="",style="solid", color="black", weight=3]; 24.86/10.73 2616[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2616 -> 2724[label="",style="solid", color="black", weight=3]; 24.86/10.73 2617[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2617 -> 2725[label="",style="solid", color="black", weight=3]; 24.86/10.73 2618[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2618 -> 2726[label="",style="solid", color="black", weight=3]; 24.86/10.73 2619[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2619 -> 2727[label="",style="solid", color="black", weight=3]; 24.86/10.73 2620[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2620 -> 2728[label="",style="solid", color="black", weight=3]; 24.86/10.73 2621[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2621 -> 2729[label="",style="solid", color="black", weight=3]; 24.86/10.73 2622[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2622 -> 2730[label="",style="solid", color="black", weight=3]; 24.86/10.73 2623[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2623 -> 2731[label="",style="solid", color="black", weight=3]; 24.86/10.73 2624[label="vyw28000 == vyw29000",fontsize=16,color="blue",shape="box"];3831[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3831[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3831 -> 2732[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3832[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3832[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3832 -> 2733[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3833[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3833[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3833 -> 2734[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3834[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3834[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3834 -> 2735[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3835[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3835[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3835 -> 2736[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3836[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3836[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3836 -> 2737[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3837[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3837[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3837 -> 2738[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3838[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3838[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3838 -> 2739[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3839[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3839[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3839 -> 2740[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3840[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3840[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3840 -> 2741[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3841[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3841[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3841 -> 2742[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3842[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3842[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3842 -> 2743[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3843[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3843[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3843 -> 2744[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3844[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 3844[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3844 -> 2745[label="",style="solid", color="blue", weight=3]; 24.86/10.73 2625 -> 2601[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2625[label="vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002",fontsize=16,color="magenta"];2625 -> 2746[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2625 -> 2747[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2626[label="False || vyw110",fontsize=16,color="black",shape="box"];2626 -> 2748[label="",style="solid", color="black", weight=3]; 24.86/10.73 2627[label="True || vyw110",fontsize=16,color="black",shape="box"];2627 -> 2749[label="",style="solid", color="black", weight=3]; 24.86/10.73 2628[label="compare () vyw2900",fontsize=16,color="burlywood",shape="box"];3845[label="vyw2900/()",fontsize=10,color="white",style="solid",shape="box"];2628 -> 3845[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3845 -> 2750[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2629[label="primCmpFloat vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3846[label="vyw2800/Float vyw28000 vyw28001",fontsize=10,color="white",style="solid",shape="box"];2629 -> 3846[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3846 -> 2751[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2630[label="vyw29000",fontsize=16,color="green",shape="box"];2631[label="vyw28000",fontsize=16,color="green",shape="box"];2632[label="vyw29000",fontsize=16,color="green",shape="box"];2633[label="vyw28000",fontsize=16,color="green",shape="box"];2634[label="vyw29000",fontsize=16,color="green",shape="box"];2635[label="vyw28000",fontsize=16,color="green",shape="box"];2636[label="vyw29000",fontsize=16,color="green",shape="box"];2637[label="vyw28000",fontsize=16,color="green",shape="box"];2638[label="vyw29000",fontsize=16,color="green",shape="box"];2639[label="vyw28000",fontsize=16,color="green",shape="box"];2640[label="vyw29000",fontsize=16,color="green",shape="box"];2641[label="vyw28000",fontsize=16,color="green",shape="box"];2642[label="vyw29000",fontsize=16,color="green",shape="box"];2643[label="vyw28000",fontsize=16,color="green",shape="box"];2644[label="vyw29000",fontsize=16,color="green",shape="box"];2645[label="vyw28000",fontsize=16,color="green",shape="box"];2646[label="vyw29000",fontsize=16,color="green",shape="box"];2647[label="vyw28000",fontsize=16,color="green",shape="box"];2648[label="vyw29000",fontsize=16,color="green",shape="box"];2649[label="vyw28000",fontsize=16,color="green",shape="box"];2650[label="vyw29000",fontsize=16,color="green",shape="box"];2651[label="vyw28000",fontsize=16,color="green",shape="box"];2652[label="vyw29000",fontsize=16,color="green",shape="box"];2653[label="vyw28000",fontsize=16,color="green",shape="box"];2654[label="vyw29000",fontsize=16,color="green",shape="box"];2655[label="vyw28000",fontsize=16,color="green",shape="box"];2656[label="vyw29000",fontsize=16,color="green",shape="box"];2657[label="vyw28000",fontsize=16,color="green",shape="box"];2658[label="vyw29000",fontsize=16,color="green",shape="box"];2659[label="vyw28000",fontsize=16,color="green",shape="box"];2660[label="vyw29000",fontsize=16,color="green",shape="box"];2661[label="vyw28000",fontsize=16,color="green",shape="box"];2662[label="vyw29000",fontsize=16,color="green",shape="box"];2663[label="vyw28000",fontsize=16,color="green",shape="box"];2664[label="vyw29000",fontsize=16,color="green",shape="box"];2665[label="vyw28000",fontsize=16,color="green",shape="box"];2666[label="vyw29000",fontsize=16,color="green",shape="box"];2667[label="vyw28000",fontsize=16,color="green",shape="box"];2668[label="vyw29000",fontsize=16,color="green",shape="box"];2669[label="vyw28000",fontsize=16,color="green",shape="box"];2670[label="vyw29000",fontsize=16,color="green",shape="box"];2671[label="vyw28000",fontsize=16,color="green",shape="box"];2672[label="vyw29000",fontsize=16,color="green",shape="box"];2673[label="vyw28000",fontsize=16,color="green",shape="box"];2674[label="vyw29000",fontsize=16,color="green",shape="box"];2675[label="vyw28000",fontsize=16,color="green",shape="box"];2676[label="vyw29000",fontsize=16,color="green",shape="box"];2677[label="vyw28000",fontsize=16,color="green",shape="box"];2678[label="vyw29000",fontsize=16,color="green",shape="box"];2679[label="vyw28000",fontsize=16,color="green",shape="box"];2680[label="vyw29000",fontsize=16,color="green",shape="box"];2681[label="vyw28000",fontsize=16,color="green",shape="box"];2682[label="vyw29000",fontsize=16,color="green",shape="box"];2683[label="vyw28000",fontsize=16,color="green",shape="box"];2684[label="vyw29000",fontsize=16,color="green",shape="box"];2685[label="vyw28000",fontsize=16,color="green",shape="box"];2686 -> 2610[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2686[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2686 -> 2752[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2686 -> 2753[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2687 -> 2611[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2687[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2687 -> 2754[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2687 -> 2755[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2688 -> 2612[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2688[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2688 -> 2756[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2688 -> 2757[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2689 -> 2613[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2689[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2689 -> 2758[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2689 -> 2759[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2690 -> 2614[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2690[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2690 -> 2760[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2690 -> 2761[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2691 -> 2615[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2691[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2691 -> 2762[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2691 -> 2763[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2692 -> 2616[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2692[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2692 -> 2764[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2692 -> 2765[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2693 -> 2617[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2693[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2693 -> 2766[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2693 -> 2767[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2694 -> 2618[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2694[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2694 -> 2768[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2694 -> 2769[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2695 -> 2619[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2695[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2695 -> 2770[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2695 -> 2771[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2696 -> 2620[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2696[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2696 -> 2772[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2696 -> 2773[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2697 -> 2621[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2697[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2697 -> 2774[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2697 -> 2775[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2698 -> 2622[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2698[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2698 -> 2776[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2698 -> 2777[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2699 -> 2623[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2699[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2699 -> 2778[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2699 -> 2779[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2700[label="vyw28000 == vyw29000",fontsize=16,color="blue",shape="box"];3847[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3847[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3847 -> 2780[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3848[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3848[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3848 -> 2781[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3849[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3849[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3849 -> 2782[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3850[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3850[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3850 -> 2783[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3851[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3851[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3851 -> 2784[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3852[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3852[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3852 -> 2785[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3853[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3853[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3853 -> 2786[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3854[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3854[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3854 -> 2787[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3855[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3855[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3855 -> 2788[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3856[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3856[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3856 -> 2789[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3857[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3857[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3857 -> 2790[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3858[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3858[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3858 -> 2791[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3859[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3859[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3859 -> 2792[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3860[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3860[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3860 -> 2793[label="",style="solid", color="blue", weight=3]; 24.86/10.73 2701[label="vyw28001 <= vyw29001",fontsize=16,color="blue",shape="box"];3861[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3861[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3861 -> 2794[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3862[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3862[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3862 -> 2795[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3863[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3863[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3863 -> 2796[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3864[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3864[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3864 -> 2797[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3865[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3865[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3865 -> 2798[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3866[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3866[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3866 -> 2799[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3867[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3867[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3867 -> 2800[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3868[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3868[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3868 -> 2801[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3869[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3869[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3869 -> 2802[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3870[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3870[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3870 -> 2803[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3871[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3871[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3871 -> 2804[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3872[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3872[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3872 -> 2805[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3873[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3873[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3873 -> 2806[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3874[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3874[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3874 -> 2807[label="",style="solid", color="blue", weight=3]; 24.86/10.73 2702[label="primMulNat (Succ vyw40100) vyw30000",fontsize=16,color="burlywood",shape="box"];3875[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3875[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3875 -> 2808[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3876[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2702 -> 3876[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3876 -> 2809[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2703[label="primMulNat Zero vyw30000",fontsize=16,color="burlywood",shape="box"];3877[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];2703 -> 3877[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3877 -> 2810[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3878[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2703 -> 3878[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3878 -> 2811[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2704[label="vyw30000",fontsize=16,color="green",shape="box"];2705[label="vyw4010",fontsize=16,color="green",shape="box"];2706[label="vyw30000",fontsize=16,color="green",shape="box"];2707[label="vyw4010",fontsize=16,color="green",shape="box"];2708[label="compare (vyw28000 : vyw28001) (vyw29000 : vyw29001)",fontsize=16,color="black",shape="box"];2708 -> 2812[label="",style="solid", color="black", weight=3]; 24.86/10.73 2709[label="compare (vyw28000 : vyw28001) []",fontsize=16,color="black",shape="box"];2709 -> 2813[label="",style="solid", color="black", weight=3]; 24.86/10.73 2710[label="compare [] (vyw29000 : vyw29001)",fontsize=16,color="black",shape="box"];2710 -> 2814[label="",style="solid", color="black", weight=3]; 24.86/10.73 2711[label="compare [] []",fontsize=16,color="black",shape="box"];2711 -> 2815[label="",style="solid", color="black", weight=3]; 24.86/10.73 2712[label="primCmpInt (Pos vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3879[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];2712 -> 3879[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3879 -> 2816[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3880[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];2712 -> 3880[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3880 -> 2817[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2713[label="primCmpInt (Neg vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3881[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];2713 -> 3881[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3881 -> 2818[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3882[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];2713 -> 3882[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3882 -> 2819[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2714[label="primCmpChar (Char vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3883[label="vyw2900/Char vyw29000",fontsize=10,color="white",style="solid",shape="box"];2714 -> 3883[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3883 -> 2820[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2715[label="compare (Integer vyw28000) (Integer vyw29000)",fontsize=16,color="black",shape="box"];2715 -> 2821[label="",style="solid", color="black", weight=3]; 24.86/10.73 2716[label="compare (vyw28000 :% vyw28001) (vyw29000 :% vyw29001)",fontsize=16,color="black",shape="box"];2716 -> 2822[label="",style="solid", color="black", weight=3]; 24.86/10.73 2717[label="primCmpDouble (Double vyw28000 vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3884[label="vyw28001/Pos vyw280010",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3884[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3884 -> 2823[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3885[label="vyw28001/Neg vyw280010",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3885[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3885 -> 2824[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2718 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2718[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2718 -> 2825[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2718 -> 2826[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2719 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2719[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2719 -> 2827[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2719 -> 2828[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2720 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2720[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2720 -> 2829[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2720 -> 2830[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2721 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2721[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2721 -> 2831[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2721 -> 2832[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2722 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2722[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2722 -> 2833[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2722 -> 2834[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2723 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2723[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2723 -> 2835[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2723 -> 2836[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2724 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2724[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2724 -> 2837[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2724 -> 2838[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2725 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2725[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2725 -> 2839[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2725 -> 2840[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2726 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2726[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2726 -> 2841[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2726 -> 2842[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2727 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2727[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2727 -> 2843[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2727 -> 2844[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2728 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2728[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2728 -> 2845[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2728 -> 2846[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2729 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2729[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2729 -> 2847[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2729 -> 2848[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2730 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2730[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2730 -> 2849[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2730 -> 2850[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2731 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2731[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2731 -> 2851[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2731 -> 2852[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2732 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2732[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2732 -> 2853[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2732 -> 2854[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2733 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2733[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2733 -> 2855[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2733 -> 2856[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2734 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2734[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2734 -> 2857[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2734 -> 2858[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2735 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2735[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2735 -> 2859[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2735 -> 2860[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2736 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2736[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2736 -> 2861[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2736 -> 2862[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2737 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2737[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2737 -> 2863[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2737 -> 2864[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2738 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2738[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2738 -> 2865[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2738 -> 2866[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2739 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2739[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2739 -> 2867[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2739 -> 2868[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2740 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2740[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2740 -> 2869[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2740 -> 2870[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2741 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2741[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2741 -> 2871[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2741 -> 2872[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2742 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2742[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2742 -> 2873[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2742 -> 2874[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2743 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2743[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2743 -> 2875[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2743 -> 2876[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2744 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2744[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2744 -> 2877[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2744 -> 2878[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2745 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2745[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2745 -> 2879[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2745 -> 2880[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2746[label="vyw28001 < vyw29001",fontsize=16,color="blue",shape="box"];3886[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3886[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3886 -> 2881[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3887[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3887[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3887 -> 2882[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3888[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3888[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3888 -> 2883[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3889[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3889[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3889 -> 2884[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3890[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3890[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3890 -> 2885[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3891[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3891[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3891 -> 2886[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3892[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3892[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3892 -> 2887[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3893[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3893[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3893 -> 2888[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3894[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3894[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3894 -> 2889[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3895[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3895[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3895 -> 2890[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3896[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3896[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3896 -> 2891[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3897[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3897[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3897 -> 2892[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3898[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3898[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3898 -> 2893[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3899[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 3899[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3899 -> 2894[label="",style="solid", color="blue", weight=3]; 24.86/10.73 2747 -> 1957[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2747[label="vyw28001 == vyw29001 && vyw28002 <= vyw29002",fontsize=16,color="magenta"];2747 -> 2895[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2747 -> 2896[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2748[label="vyw110",fontsize=16,color="green",shape="box"];2749[label="True",fontsize=16,color="green",shape="box"];2750[label="compare () ()",fontsize=16,color="black",shape="box"];2750 -> 2897[label="",style="solid", color="black", weight=3]; 24.86/10.73 2751[label="primCmpFloat (Float vyw28000 vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3900[label="vyw28001/Pos vyw280010",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3900[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3900 -> 2898[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3901[label="vyw28001/Neg vyw280010",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3901[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3901 -> 2899[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2752[label="vyw29000",fontsize=16,color="green",shape="box"];2753[label="vyw28000",fontsize=16,color="green",shape="box"];2754[label="vyw29000",fontsize=16,color="green",shape="box"];2755[label="vyw28000",fontsize=16,color="green",shape="box"];2756[label="vyw29000",fontsize=16,color="green",shape="box"];2757[label="vyw28000",fontsize=16,color="green",shape="box"];2758[label="vyw29000",fontsize=16,color="green",shape="box"];2759[label="vyw28000",fontsize=16,color="green",shape="box"];2760[label="vyw29000",fontsize=16,color="green",shape="box"];2761[label="vyw28000",fontsize=16,color="green",shape="box"];2762[label="vyw29000",fontsize=16,color="green",shape="box"];2763[label="vyw28000",fontsize=16,color="green",shape="box"];2764[label="vyw29000",fontsize=16,color="green",shape="box"];2765[label="vyw28000",fontsize=16,color="green",shape="box"];2766[label="vyw29000",fontsize=16,color="green",shape="box"];2767[label="vyw28000",fontsize=16,color="green",shape="box"];2768[label="vyw29000",fontsize=16,color="green",shape="box"];2769[label="vyw28000",fontsize=16,color="green",shape="box"];2770[label="vyw29000",fontsize=16,color="green",shape="box"];2771[label="vyw28000",fontsize=16,color="green",shape="box"];2772[label="vyw29000",fontsize=16,color="green",shape="box"];2773[label="vyw28000",fontsize=16,color="green",shape="box"];2774[label="vyw29000",fontsize=16,color="green",shape="box"];2775[label="vyw28000",fontsize=16,color="green",shape="box"];2776[label="vyw29000",fontsize=16,color="green",shape="box"];2777[label="vyw28000",fontsize=16,color="green",shape="box"];2778[label="vyw29000",fontsize=16,color="green",shape="box"];2779[label="vyw28000",fontsize=16,color="green",shape="box"];2780 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2780[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2780 -> 2900[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2780 -> 2901[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2781 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2781[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2781 -> 2902[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2781 -> 2903[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2782 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2782[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2782 -> 2904[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2782 -> 2905[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2783 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2783[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2783 -> 2906[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2783 -> 2907[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2784 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2784[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2784 -> 2908[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2784 -> 2909[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2785 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2785[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2785 -> 2910[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2785 -> 2911[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2786 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2786[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2786 -> 2912[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2786 -> 2913[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2787 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2787[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2787 -> 2914[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2787 -> 2915[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2788 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2788[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2788 -> 2916[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2788 -> 2917[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2789 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2789[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2789 -> 2918[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2789 -> 2919[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2790 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2790[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2790 -> 2920[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2790 -> 2921[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2791 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2791[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2791 -> 2922[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2791 -> 2923[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2792 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2792[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2792 -> 2924[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2792 -> 2925[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2793 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2793[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2793 -> 2926[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2793 -> 2927[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2794 -> 2141[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2794[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2794 -> 2928[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2794 -> 2929[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2795 -> 2142[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2795[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2795 -> 2930[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2795 -> 2931[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2796 -> 2143[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2796[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2796 -> 2932[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2796 -> 2933[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2797 -> 2144[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2797[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2797 -> 2934[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2797 -> 2935[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2798 -> 2145[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2798[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2798 -> 2936[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2798 -> 2937[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2799 -> 2146[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2799[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2799 -> 2938[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2799 -> 2939[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2800 -> 2147[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2800[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2800 -> 2940[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2800 -> 2941[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2801 -> 2148[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2801[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2801 -> 2942[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2801 -> 2943[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2802 -> 2149[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2802[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2802 -> 2944[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2802 -> 2945[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2803 -> 2150[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2803[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2803 -> 2946[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2803 -> 2947[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2804 -> 2151[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2804[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2804 -> 2948[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2804 -> 2949[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2805 -> 2152[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2805[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2805 -> 2950[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2805 -> 2951[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2806 -> 2153[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2806[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2806 -> 2952[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2806 -> 2953[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2807 -> 2154[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2807[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2807 -> 2954[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2807 -> 2955[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2808[label="primMulNat (Succ vyw40100) (Succ vyw300000)",fontsize=16,color="black",shape="box"];2808 -> 2956[label="",style="solid", color="black", weight=3]; 24.86/10.73 2809[label="primMulNat (Succ vyw40100) Zero",fontsize=16,color="black",shape="box"];2809 -> 2957[label="",style="solid", color="black", weight=3]; 24.86/10.73 2810[label="primMulNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];2810 -> 2958[label="",style="solid", color="black", weight=3]; 24.86/10.73 2811[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2811 -> 2959[label="",style="solid", color="black", weight=3]; 24.86/10.73 2812 -> 2960[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2812[label="primCompAux vyw28000 vyw29000 (compare vyw28001 vyw29001)",fontsize=16,color="magenta"];2812 -> 2961[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2813[label="GT",fontsize=16,color="green",shape="box"];2814[label="LT",fontsize=16,color="green",shape="box"];2815[label="EQ",fontsize=16,color="green",shape="box"];2816[label="primCmpInt (Pos (Succ vyw280000)) vyw2900",fontsize=16,color="burlywood",shape="box"];3902[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2816 -> 3902[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3902 -> 2962[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3903[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2816 -> 3903[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3903 -> 2963[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2817[label="primCmpInt (Pos Zero) vyw2900",fontsize=16,color="burlywood",shape="box"];3904[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2817 -> 3904[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3904 -> 2964[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3905[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2817 -> 3905[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3905 -> 2965[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2818[label="primCmpInt (Neg (Succ vyw280000)) vyw2900",fontsize=16,color="burlywood",shape="box"];3906[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2818 -> 3906[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3906 -> 2966[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3907[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2818 -> 3907[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3907 -> 2967[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2819[label="primCmpInt (Neg Zero) vyw2900",fontsize=16,color="burlywood",shape="box"];3908[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2819 -> 3908[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3908 -> 2968[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3909[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2819 -> 3909[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3909 -> 2969[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2820[label="primCmpChar (Char vyw28000) (Char vyw29000)",fontsize=16,color="black",shape="box"];2820 -> 2970[label="",style="solid", color="black", weight=3]; 24.86/10.73 2821 -> 2566[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2821[label="primCmpInt vyw28000 vyw29000",fontsize=16,color="magenta"];2821 -> 2971[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2821 -> 2972[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2822[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="blue",shape="box"];3910[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2822 -> 3910[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3910 -> 2973[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3911[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2822 -> 3911[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3911 -> 2974[label="",style="solid", color="blue", weight=3]; 24.86/10.73 2823[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3912[label="vyw2900/Double vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2823 -> 3912[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3912 -> 2975[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2824[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3913[label="vyw2900/Double vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3913[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3913 -> 2976[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2825[label="LT",fontsize=16,color="green",shape="box"];2826 -> 2494[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2826[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2826 -> 2977[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2826 -> 2978[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2827[label="LT",fontsize=16,color="green",shape="box"];2828 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2828[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2828 -> 2979[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2828 -> 2980[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2829[label="LT",fontsize=16,color="green",shape="box"];2830 -> 2500[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2830[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2830 -> 2981[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2830 -> 2982[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2831[label="LT",fontsize=16,color="green",shape="box"];2832 -> 2502[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2832[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2832 -> 2983[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2832 -> 2984[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2833[label="LT",fontsize=16,color="green",shape="box"];2834 -> 2504[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2834[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2834 -> 2985[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2834 -> 2986[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2835[label="LT",fontsize=16,color="green",shape="box"];2836 -> 2506[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2836[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2836 -> 2987[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2836 -> 2988[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2837[label="LT",fontsize=16,color="green",shape="box"];2838[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2838 -> 2989[label="",style="solid", color="black", weight=3]; 24.86/10.73 2839[label="LT",fontsize=16,color="green",shape="box"];2840[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2840 -> 2990[label="",style="solid", color="black", weight=3]; 24.86/10.73 2841[label="LT",fontsize=16,color="green",shape="box"];2842 -> 2508[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2842[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2842 -> 2991[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2842 -> 2992[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2843[label="LT",fontsize=16,color="green",shape="box"];2844 -> 2510[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2844[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2844 -> 2993[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2844 -> 2994[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2845[label="LT",fontsize=16,color="green",shape="box"];2846[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2846 -> 2995[label="",style="solid", color="black", weight=3]; 24.86/10.73 2847[label="LT",fontsize=16,color="green",shape="box"];2848[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2848 -> 2996[label="",style="solid", color="black", weight=3]; 24.86/10.73 2849[label="LT",fontsize=16,color="green",shape="box"];2850[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2850 -> 2997[label="",style="solid", color="black", weight=3]; 24.86/10.73 2851[label="LT",fontsize=16,color="green",shape="box"];2852[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2852 -> 2998[label="",style="solid", color="black", weight=3]; 24.86/10.73 2853[label="vyw29000",fontsize=16,color="green",shape="box"];2854[label="vyw28000",fontsize=16,color="green",shape="box"];2855[label="vyw29000",fontsize=16,color="green",shape="box"];2856[label="vyw28000",fontsize=16,color="green",shape="box"];2857[label="vyw29000",fontsize=16,color="green",shape="box"];2858[label="vyw28000",fontsize=16,color="green",shape="box"];2859[label="vyw29000",fontsize=16,color="green",shape="box"];2860[label="vyw28000",fontsize=16,color="green",shape="box"];2861[label="vyw29000",fontsize=16,color="green",shape="box"];2862[label="vyw28000",fontsize=16,color="green",shape="box"];2863[label="vyw29000",fontsize=16,color="green",shape="box"];2864[label="vyw28000",fontsize=16,color="green",shape="box"];2865[label="vyw29000",fontsize=16,color="green",shape="box"];2866[label="vyw28000",fontsize=16,color="green",shape="box"];2867[label="vyw29000",fontsize=16,color="green",shape="box"];2868[label="vyw28000",fontsize=16,color="green",shape="box"];2869[label="vyw29000",fontsize=16,color="green",shape="box"];2870[label="vyw28000",fontsize=16,color="green",shape="box"];2871[label="vyw29000",fontsize=16,color="green",shape="box"];2872[label="vyw28000",fontsize=16,color="green",shape="box"];2873[label="vyw29000",fontsize=16,color="green",shape="box"];2874[label="vyw28000",fontsize=16,color="green",shape="box"];2875[label="vyw29000",fontsize=16,color="green",shape="box"];2876[label="vyw28000",fontsize=16,color="green",shape="box"];2877[label="vyw29000",fontsize=16,color="green",shape="box"];2878[label="vyw28000",fontsize=16,color="green",shape="box"];2879[label="vyw29000",fontsize=16,color="green",shape="box"];2880[label="vyw28000",fontsize=16,color="green",shape="box"];2881 -> 2610[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2881[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2881 -> 2999[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2881 -> 3000[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2882 -> 2611[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2882[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2882 -> 3001[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2882 -> 3002[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2883 -> 2612[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2883[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2883 -> 3003[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2883 -> 3004[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2884 -> 2613[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2884[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2884 -> 3005[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2884 -> 3006[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2885 -> 2614[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2885[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2885 -> 3007[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2885 -> 3008[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2886 -> 2615[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2886[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2886 -> 3009[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2886 -> 3010[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2887 -> 2616[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2887[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2887 -> 3011[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2887 -> 3012[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2888 -> 2617[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2888[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2888 -> 3013[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2888 -> 3014[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2889 -> 2618[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2889[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2889 -> 3015[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2889 -> 3016[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2890 -> 2619[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2890[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2890 -> 3017[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2890 -> 3018[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2891 -> 2620[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2891[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2891 -> 3019[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2891 -> 3020[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2892 -> 2621[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2892[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2892 -> 3021[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2892 -> 3022[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2893 -> 2622[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2893[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2893 -> 3023[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2893 -> 3024[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2894 -> 2623[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2894[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2894 -> 3025[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2894 -> 3026[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2895[label="vyw28001 == vyw29001",fontsize=16,color="blue",shape="box"];3914[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3914[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3914 -> 3027[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3915[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3915[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3915 -> 3028[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3916[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3916[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3916 -> 3029[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3917[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3917[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3917 -> 3030[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3918[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3918[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3918 -> 3031[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3919[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3919[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3919 -> 3032[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3920[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3920[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3920 -> 3033[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3921[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3921[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3921 -> 3034[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3922[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3922[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3922 -> 3035[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3923[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3923[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3923 -> 3036[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3924[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3924[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3924 -> 3037[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3925[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3925[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3925 -> 3038[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3926[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3926[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3926 -> 3039[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3927[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3927[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3927 -> 3040[label="",style="solid", color="blue", weight=3]; 24.86/10.73 2896[label="vyw28002 <= vyw29002",fontsize=16,color="blue",shape="box"];3928[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3928[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3928 -> 3041[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3929[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3929[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3929 -> 3042[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3930[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3930[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3930 -> 3043[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3931[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3931[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3931 -> 3044[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3932[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3932[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3932 -> 3045[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3933[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3933[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3933 -> 3046[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3934[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3934[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3934 -> 3047[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3935[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3935[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3935 -> 3048[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3936[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3936[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3936 -> 3049[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3937[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3937[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3937 -> 3050[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3938[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3938[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3938 -> 3051[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3939[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3939[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3939 -> 3052[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3940[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3940[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3940 -> 3053[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3941[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3941[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3941 -> 3054[label="",style="solid", color="blue", weight=3]; 24.86/10.73 2897[label="EQ",fontsize=16,color="green",shape="box"];2898[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3942[label="vyw2900/Float vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2898 -> 3942[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3942 -> 3055[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2899[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3943[label="vyw2900/Float vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2899 -> 3943[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3943 -> 3056[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2900[label="vyw29000",fontsize=16,color="green",shape="box"];2901[label="vyw28000",fontsize=16,color="green",shape="box"];2902[label="vyw29000",fontsize=16,color="green",shape="box"];2903[label="vyw28000",fontsize=16,color="green",shape="box"];2904[label="vyw29000",fontsize=16,color="green",shape="box"];2905[label="vyw28000",fontsize=16,color="green",shape="box"];2906[label="vyw29000",fontsize=16,color="green",shape="box"];2907[label="vyw28000",fontsize=16,color="green",shape="box"];2908[label="vyw29000",fontsize=16,color="green",shape="box"];2909[label="vyw28000",fontsize=16,color="green",shape="box"];2910[label="vyw29000",fontsize=16,color="green",shape="box"];2911[label="vyw28000",fontsize=16,color="green",shape="box"];2912[label="vyw29000",fontsize=16,color="green",shape="box"];2913[label="vyw28000",fontsize=16,color="green",shape="box"];2914[label="vyw29000",fontsize=16,color="green",shape="box"];2915[label="vyw28000",fontsize=16,color="green",shape="box"];2916[label="vyw29000",fontsize=16,color="green",shape="box"];2917[label="vyw28000",fontsize=16,color="green",shape="box"];2918[label="vyw29000",fontsize=16,color="green",shape="box"];2919[label="vyw28000",fontsize=16,color="green",shape="box"];2920[label="vyw29000",fontsize=16,color="green",shape="box"];2921[label="vyw28000",fontsize=16,color="green",shape="box"];2922[label="vyw29000",fontsize=16,color="green",shape="box"];2923[label="vyw28000",fontsize=16,color="green",shape="box"];2924[label="vyw29000",fontsize=16,color="green",shape="box"];2925[label="vyw28000",fontsize=16,color="green",shape="box"];2926[label="vyw29000",fontsize=16,color="green",shape="box"];2927[label="vyw28000",fontsize=16,color="green",shape="box"];2928[label="vyw29001",fontsize=16,color="green",shape="box"];2929[label="vyw28001",fontsize=16,color="green",shape="box"];2930[label="vyw29001",fontsize=16,color="green",shape="box"];2931[label="vyw28001",fontsize=16,color="green",shape="box"];2932[label="vyw29001",fontsize=16,color="green",shape="box"];2933[label="vyw28001",fontsize=16,color="green",shape="box"];2934[label="vyw29001",fontsize=16,color="green",shape="box"];2935[label="vyw28001",fontsize=16,color="green",shape="box"];2936[label="vyw29001",fontsize=16,color="green",shape="box"];2937[label="vyw28001",fontsize=16,color="green",shape="box"];2938[label="vyw29001",fontsize=16,color="green",shape="box"];2939[label="vyw28001",fontsize=16,color="green",shape="box"];2940[label="vyw29001",fontsize=16,color="green",shape="box"];2941[label="vyw28001",fontsize=16,color="green",shape="box"];2942[label="vyw29001",fontsize=16,color="green",shape="box"];2943[label="vyw28001",fontsize=16,color="green",shape="box"];2944[label="vyw29001",fontsize=16,color="green",shape="box"];2945[label="vyw28001",fontsize=16,color="green",shape="box"];2946[label="vyw29001",fontsize=16,color="green",shape="box"];2947[label="vyw28001",fontsize=16,color="green",shape="box"];2948[label="vyw29001",fontsize=16,color="green",shape="box"];2949[label="vyw28001",fontsize=16,color="green",shape="box"];2950[label="vyw29001",fontsize=16,color="green",shape="box"];2951[label="vyw28001",fontsize=16,color="green",shape="box"];2952[label="vyw29001",fontsize=16,color="green",shape="box"];2953[label="vyw28001",fontsize=16,color="green",shape="box"];2954[label="vyw29001",fontsize=16,color="green",shape="box"];2955[label="vyw28001",fontsize=16,color="green",shape="box"];2956 -> 3057[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2956[label="primPlusNat (primMulNat vyw40100 (Succ vyw300000)) (Succ vyw300000)",fontsize=16,color="magenta"];2956 -> 3058[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2957[label="Zero",fontsize=16,color="green",shape="box"];2958[label="Zero",fontsize=16,color="green",shape="box"];2959[label="Zero",fontsize=16,color="green",shape="box"];2961 -> 2494[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2961[label="compare vyw28001 vyw29001",fontsize=16,color="magenta"];2961 -> 3059[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2961 -> 3060[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2960[label="primCompAux vyw28000 vyw29000 vyw111",fontsize=16,color="black",shape="triangle"];2960 -> 3061[label="",style="solid", color="black", weight=3]; 24.86/10.73 2962[label="primCmpInt (Pos (Succ vyw280000)) (Pos vyw29000)",fontsize=16,color="black",shape="box"];2962 -> 3062[label="",style="solid", color="black", weight=3]; 24.86/10.73 2963[label="primCmpInt (Pos (Succ vyw280000)) (Neg vyw29000)",fontsize=16,color="black",shape="box"];2963 -> 3063[label="",style="solid", color="black", weight=3]; 24.86/10.73 2964[label="primCmpInt (Pos Zero) (Pos vyw29000)",fontsize=16,color="burlywood",shape="box"];3944[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];2964 -> 3944[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3944 -> 3064[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3945[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];2964 -> 3945[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3945 -> 3065[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2965[label="primCmpInt (Pos Zero) (Neg vyw29000)",fontsize=16,color="burlywood",shape="box"];3946[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];2965 -> 3946[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3946 -> 3066[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3947[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];2965 -> 3947[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3947 -> 3067[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2966[label="primCmpInt (Neg (Succ vyw280000)) (Pos vyw29000)",fontsize=16,color="black",shape="box"];2966 -> 3068[label="",style="solid", color="black", weight=3]; 24.86/10.73 2967[label="primCmpInt (Neg (Succ vyw280000)) (Neg vyw29000)",fontsize=16,color="black",shape="box"];2967 -> 3069[label="",style="solid", color="black", weight=3]; 24.86/10.73 2968[label="primCmpInt (Neg Zero) (Pos vyw29000)",fontsize=16,color="burlywood",shape="box"];3948[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3948[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3948 -> 3070[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3949[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3949[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3949 -> 3071[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2969[label="primCmpInt (Neg Zero) (Neg vyw29000)",fontsize=16,color="burlywood",shape="box"];3950[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3950[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3950 -> 3072[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3951[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3951[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3951 -> 3073[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2970[label="primCmpNat vyw28000 vyw29000",fontsize=16,color="burlywood",shape="triangle"];3952[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];2970 -> 3952[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3952 -> 3074[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3953[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];2970 -> 3953[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3953 -> 3075[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2971[label="vyw29000",fontsize=16,color="green",shape="box"];2972[label="vyw28000",fontsize=16,color="green",shape="box"];2973 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2973[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="magenta"];2973 -> 3076[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2973 -> 3077[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2974 -> 2502[label="",style="dashed", color="red", weight=0]; 24.86/10.73 2974[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="magenta"];2974 -> 3078[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2974 -> 3079[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 2975[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3954[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];2975 -> 3954[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3954 -> 3080[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3955[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];2975 -> 3955[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3955 -> 3081[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2976[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3956[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];2976 -> 3956[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3956 -> 3082[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3957[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];2976 -> 3957[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3957 -> 3083[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 2977[label="vyw29000",fontsize=16,color="green",shape="box"];2978[label="vyw28000",fontsize=16,color="green",shape="box"];2979[label="vyw29000",fontsize=16,color="green",shape="box"];2980[label="vyw28000",fontsize=16,color="green",shape="box"];2981[label="vyw29000",fontsize=16,color="green",shape="box"];2982[label="vyw28000",fontsize=16,color="green",shape="box"];2983[label="vyw29000",fontsize=16,color="green",shape="box"];2984[label="vyw28000",fontsize=16,color="green",shape="box"];2985[label="vyw29000",fontsize=16,color="green",shape="box"];2986[label="vyw28000",fontsize=16,color="green",shape="box"];2987[label="vyw29000",fontsize=16,color="green",shape="box"];2988[label="vyw28000",fontsize=16,color="green",shape="box"];2989[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2989 -> 3084[label="",style="solid", color="black", weight=3]; 24.86/10.73 2990[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2990 -> 3085[label="",style="solid", color="black", weight=3]; 24.86/10.73 2991[label="vyw29000",fontsize=16,color="green",shape="box"];2992[label="vyw28000",fontsize=16,color="green",shape="box"];2993[label="vyw29000",fontsize=16,color="green",shape="box"];2994[label="vyw28000",fontsize=16,color="green",shape="box"];2995[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2995 -> 3086[label="",style="solid", color="black", weight=3]; 24.86/10.73 2996[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2996 -> 3087[label="",style="solid", color="black", weight=3]; 24.86/10.73 2997[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2997 -> 3088[label="",style="solid", color="black", weight=3]; 24.86/10.73 2998[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2998 -> 3089[label="",style="solid", color="black", weight=3]; 24.86/10.73 2999[label="vyw29001",fontsize=16,color="green",shape="box"];3000[label="vyw28001",fontsize=16,color="green",shape="box"];3001[label="vyw29001",fontsize=16,color="green",shape="box"];3002[label="vyw28001",fontsize=16,color="green",shape="box"];3003[label="vyw29001",fontsize=16,color="green",shape="box"];3004[label="vyw28001",fontsize=16,color="green",shape="box"];3005[label="vyw29001",fontsize=16,color="green",shape="box"];3006[label="vyw28001",fontsize=16,color="green",shape="box"];3007[label="vyw29001",fontsize=16,color="green",shape="box"];3008[label="vyw28001",fontsize=16,color="green",shape="box"];3009[label="vyw29001",fontsize=16,color="green",shape="box"];3010[label="vyw28001",fontsize=16,color="green",shape="box"];3011[label="vyw29001",fontsize=16,color="green",shape="box"];3012[label="vyw28001",fontsize=16,color="green",shape="box"];3013[label="vyw29001",fontsize=16,color="green",shape="box"];3014[label="vyw28001",fontsize=16,color="green",shape="box"];3015[label="vyw29001",fontsize=16,color="green",shape="box"];3016[label="vyw28001",fontsize=16,color="green",shape="box"];3017[label="vyw29001",fontsize=16,color="green",shape="box"];3018[label="vyw28001",fontsize=16,color="green",shape="box"];3019[label="vyw29001",fontsize=16,color="green",shape="box"];3020[label="vyw28001",fontsize=16,color="green",shape="box"];3021[label="vyw29001",fontsize=16,color="green",shape="box"];3022[label="vyw28001",fontsize=16,color="green",shape="box"];3023[label="vyw29001",fontsize=16,color="green",shape="box"];3024[label="vyw28001",fontsize=16,color="green",shape="box"];3025[label="vyw29001",fontsize=16,color="green",shape="box"];3026[label="vyw28001",fontsize=16,color="green",shape="box"];3027 -> 1735[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3027[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3027 -> 3090[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3027 -> 3091[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3028 -> 1733[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3028[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3028 -> 3092[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3028 -> 3093[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3029 -> 1736[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3029[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3029 -> 3094[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3029 -> 3095[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3030 -> 1742[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3030[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3030 -> 3096[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3030 -> 3097[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3031 -> 1744[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3031[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3031 -> 3098[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3031 -> 3099[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3032 -> 1741[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3032[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3032 -> 3100[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3032 -> 3101[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3033 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3033[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3033 -> 3102[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3033 -> 3103[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3034 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3034[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3034 -> 3104[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3034 -> 3105[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3035 -> 1738[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3035[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3035 -> 3106[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3035 -> 3107[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3036 -> 1739[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3036[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3036 -> 3108[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3036 -> 3109[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3037 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3037[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3037 -> 3110[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3037 -> 3111[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3038 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3038[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3038 -> 3112[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3038 -> 3113[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3039 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3039[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3039 -> 3114[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3039 -> 3115[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3040 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3040[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3040 -> 3116[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3040 -> 3117[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3041 -> 2141[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3041[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3041 -> 3118[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3041 -> 3119[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3042 -> 2142[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3042[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3042 -> 3120[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3042 -> 3121[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3043 -> 2143[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3043[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3043 -> 3122[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3043 -> 3123[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3044 -> 2144[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3044[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3044 -> 3124[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3044 -> 3125[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3045 -> 2145[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3045[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3045 -> 3126[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3045 -> 3127[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3046 -> 2146[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3046[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3046 -> 3128[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3046 -> 3129[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3047 -> 2147[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3047[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3047 -> 3130[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3047 -> 3131[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3048 -> 2148[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3048[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3048 -> 3132[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3048 -> 3133[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3049 -> 2149[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3049[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3049 -> 3134[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3049 -> 3135[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3050 -> 2150[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3050[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3050 -> 3136[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3050 -> 3137[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3051 -> 2151[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3051[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3051 -> 3138[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3051 -> 3139[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3052 -> 2152[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3052[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3052 -> 3140[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3052 -> 3141[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3053 -> 2153[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3053[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3053 -> 3142[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3053 -> 3143[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3054 -> 2154[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3054[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];3054 -> 3144[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3054 -> 3145[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3055[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3958[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];3055 -> 3958[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3958 -> 3146[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3959[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];3055 -> 3959[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3959 -> 3147[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3056[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3960[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];3056 -> 3960[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3960 -> 3148[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3961[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];3056 -> 3961[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3961 -> 3149[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3058 -> 2558[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3058[label="primMulNat vyw40100 (Succ vyw300000)",fontsize=16,color="magenta"];3058 -> 3150[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3058 -> 3151[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3057[label="primPlusNat vyw112 (Succ vyw300000)",fontsize=16,color="burlywood",shape="triangle"];3962[label="vyw112/Succ vyw1120",fontsize=10,color="white",style="solid",shape="box"];3057 -> 3962[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3962 -> 3152[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3963[label="vyw112/Zero",fontsize=10,color="white",style="solid",shape="box"];3057 -> 3963[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3963 -> 3153[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3059[label="vyw29001",fontsize=16,color="green",shape="box"];3060[label="vyw28001",fontsize=16,color="green",shape="box"];3061 -> 3154[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3061[label="primCompAux0 vyw111 (compare vyw28000 vyw29000)",fontsize=16,color="magenta"];3061 -> 3155[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3061 -> 3156[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3062 -> 2970[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3062[label="primCmpNat (Succ vyw280000) vyw29000",fontsize=16,color="magenta"];3062 -> 3157[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3062 -> 3158[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3063[label="GT",fontsize=16,color="green",shape="box"];3064[label="primCmpInt (Pos Zero) (Pos (Succ vyw290000))",fontsize=16,color="black",shape="box"];3064 -> 3159[label="",style="solid", color="black", weight=3]; 24.86/10.73 3065[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3065 -> 3160[label="",style="solid", color="black", weight=3]; 24.86/10.73 3066[label="primCmpInt (Pos Zero) (Neg (Succ vyw290000))",fontsize=16,color="black",shape="box"];3066 -> 3161[label="",style="solid", color="black", weight=3]; 24.86/10.73 3067[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3067 -> 3162[label="",style="solid", color="black", weight=3]; 24.86/10.73 3068[label="LT",fontsize=16,color="green",shape="box"];3069 -> 2970[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3069[label="primCmpNat vyw29000 (Succ vyw280000)",fontsize=16,color="magenta"];3069 -> 3163[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3069 -> 3164[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3070[label="primCmpInt (Neg Zero) (Pos (Succ vyw290000))",fontsize=16,color="black",shape="box"];3070 -> 3165[label="",style="solid", color="black", weight=3]; 24.86/10.73 3071[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3071 -> 3166[label="",style="solid", color="black", weight=3]; 24.86/10.73 3072[label="primCmpInt (Neg Zero) (Neg (Succ vyw290000))",fontsize=16,color="black",shape="box"];3072 -> 3167[label="",style="solid", color="black", weight=3]; 24.86/10.73 3073[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3073 -> 3168[label="",style="solid", color="black", weight=3]; 24.86/10.73 3074[label="primCmpNat (Succ vyw280000) vyw29000",fontsize=16,color="burlywood",shape="box"];3964[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3074 -> 3964[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3964 -> 3169[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3965[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3074 -> 3965[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3965 -> 3170[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3075[label="primCmpNat Zero vyw29000",fontsize=16,color="burlywood",shape="box"];3966[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3075 -> 3966[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3966 -> 3171[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3967[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3075 -> 3967[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3967 -> 3172[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3076 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3076[label="vyw29000 * vyw28001",fontsize=16,color="magenta"];3076 -> 3173[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3076 -> 3174[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3077 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3077[label="vyw28000 * vyw29001",fontsize=16,color="magenta"];3077 -> 3175[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3077 -> 3176[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3078[label="vyw29000 * vyw28001",fontsize=16,color="burlywood",shape="triangle"];3968[label="vyw29000/Integer vyw290000",fontsize=10,color="white",style="solid",shape="box"];3078 -> 3968[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3968 -> 3177[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3079 -> 3078[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3079[label="vyw28000 * vyw29001",fontsize=16,color="magenta"];3079 -> 3178[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3079 -> 3179[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3080[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3080 -> 3180[label="",style="solid", color="black", weight=3]; 24.86/10.73 3081[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3081 -> 3181[label="",style="solid", color="black", weight=3]; 24.86/10.73 3082[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3082 -> 3182[label="",style="solid", color="black", weight=3]; 24.86/10.73 3083[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3083 -> 3183[label="",style="solid", color="black", weight=3]; 24.86/10.73 3084 -> 1695[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3084[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3084 -> 3184[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3084 -> 3185[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3084 -> 3186[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3085 -> 3187[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3085[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3085 -> 3188[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3086 -> 3189[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3086[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3086 -> 3190[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3087 -> 3191[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3087[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3087 -> 3192[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3088 -> 3193[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3088[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3088 -> 3194[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3089 -> 3195[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3089[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3089 -> 3196[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3090[label="vyw29001",fontsize=16,color="green",shape="box"];3091[label="vyw28001",fontsize=16,color="green",shape="box"];3092[label="vyw29001",fontsize=16,color="green",shape="box"];3093[label="vyw28001",fontsize=16,color="green",shape="box"];3094[label="vyw29001",fontsize=16,color="green",shape="box"];3095[label="vyw28001",fontsize=16,color="green",shape="box"];3096[label="vyw29001",fontsize=16,color="green",shape="box"];3097[label="vyw28001",fontsize=16,color="green",shape="box"];3098[label="vyw29001",fontsize=16,color="green",shape="box"];3099[label="vyw28001",fontsize=16,color="green",shape="box"];3100[label="vyw29001",fontsize=16,color="green",shape="box"];3101[label="vyw28001",fontsize=16,color="green",shape="box"];3102[label="vyw29001",fontsize=16,color="green",shape="box"];3103[label="vyw28001",fontsize=16,color="green",shape="box"];3104[label="vyw29001",fontsize=16,color="green",shape="box"];3105[label="vyw28001",fontsize=16,color="green",shape="box"];3106[label="vyw29001",fontsize=16,color="green",shape="box"];3107[label="vyw28001",fontsize=16,color="green",shape="box"];3108[label="vyw29001",fontsize=16,color="green",shape="box"];3109[label="vyw28001",fontsize=16,color="green",shape="box"];3110[label="vyw29001",fontsize=16,color="green",shape="box"];3111[label="vyw28001",fontsize=16,color="green",shape="box"];3112[label="vyw29001",fontsize=16,color="green",shape="box"];3113[label="vyw28001",fontsize=16,color="green",shape="box"];3114[label="vyw29001",fontsize=16,color="green",shape="box"];3115[label="vyw28001",fontsize=16,color="green",shape="box"];3116[label="vyw29001",fontsize=16,color="green",shape="box"];3117[label="vyw28001",fontsize=16,color="green",shape="box"];3118[label="vyw29002",fontsize=16,color="green",shape="box"];3119[label="vyw28002",fontsize=16,color="green",shape="box"];3120[label="vyw29002",fontsize=16,color="green",shape="box"];3121[label="vyw28002",fontsize=16,color="green",shape="box"];3122[label="vyw29002",fontsize=16,color="green",shape="box"];3123[label="vyw28002",fontsize=16,color="green",shape="box"];3124[label="vyw29002",fontsize=16,color="green",shape="box"];3125[label="vyw28002",fontsize=16,color="green",shape="box"];3126[label="vyw29002",fontsize=16,color="green",shape="box"];3127[label="vyw28002",fontsize=16,color="green",shape="box"];3128[label="vyw29002",fontsize=16,color="green",shape="box"];3129[label="vyw28002",fontsize=16,color="green",shape="box"];3130[label="vyw29002",fontsize=16,color="green",shape="box"];3131[label="vyw28002",fontsize=16,color="green",shape="box"];3132[label="vyw29002",fontsize=16,color="green",shape="box"];3133[label="vyw28002",fontsize=16,color="green",shape="box"];3134[label="vyw29002",fontsize=16,color="green",shape="box"];3135[label="vyw28002",fontsize=16,color="green",shape="box"];3136[label="vyw29002",fontsize=16,color="green",shape="box"];3137[label="vyw28002",fontsize=16,color="green",shape="box"];3138[label="vyw29002",fontsize=16,color="green",shape="box"];3139[label="vyw28002",fontsize=16,color="green",shape="box"];3140[label="vyw29002",fontsize=16,color="green",shape="box"];3141[label="vyw28002",fontsize=16,color="green",shape="box"];3142[label="vyw29002",fontsize=16,color="green",shape="box"];3143[label="vyw28002",fontsize=16,color="green",shape="box"];3144[label="vyw29002",fontsize=16,color="green",shape="box"];3145[label="vyw28002",fontsize=16,color="green",shape="box"];3146[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3146 -> 3197[label="",style="solid", color="black", weight=3]; 24.86/10.73 3147[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3147 -> 3198[label="",style="solid", color="black", weight=3]; 24.86/10.73 3148[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3148 -> 3199[label="",style="solid", color="black", weight=3]; 24.86/10.73 3149[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3149 -> 3200[label="",style="solid", color="black", weight=3]; 24.86/10.73 3150[label="Succ vyw300000",fontsize=16,color="green",shape="box"];3151[label="vyw40100",fontsize=16,color="green",shape="box"];3152[label="primPlusNat (Succ vyw1120) (Succ vyw300000)",fontsize=16,color="black",shape="box"];3152 -> 3201[label="",style="solid", color="black", weight=3]; 24.86/10.73 3153[label="primPlusNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];3153 -> 3202[label="",style="solid", color="black", weight=3]; 24.86/10.73 3155[label="compare vyw28000 vyw29000",fontsize=16,color="blue",shape="box"];3969[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3969[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3969 -> 3203[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3970[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3970[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3970 -> 3204[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3971[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3971[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3971 -> 3205[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3972[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3972[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3972 -> 3206[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3973[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3973[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3973 -> 3207[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3974[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3974[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3974 -> 3208[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3975[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3975[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3975 -> 3209[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3976[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3976[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3976 -> 3210[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3977[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3977[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3977 -> 3211[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3978[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3978[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3978 -> 3212[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3979[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3979[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3979 -> 3213[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3980[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3980[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3980 -> 3214[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3981[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3981[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3981 -> 3215[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3982[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3155 -> 3982[label="",style="solid", color="blue", weight=9]; 24.86/10.73 3982 -> 3216[label="",style="solid", color="blue", weight=3]; 24.86/10.73 3156[label="vyw111",fontsize=16,color="green",shape="box"];3154[label="primCompAux0 vyw116 vyw117",fontsize=16,color="burlywood",shape="triangle"];3983[label="vyw117/LT",fontsize=10,color="white",style="solid",shape="box"];3154 -> 3983[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3983 -> 3217[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3984[label="vyw117/EQ",fontsize=10,color="white",style="solid",shape="box"];3154 -> 3984[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3984 -> 3218[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3985[label="vyw117/GT",fontsize=10,color="white",style="solid",shape="box"];3154 -> 3985[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3985 -> 3219[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3157[label="Succ vyw280000",fontsize=16,color="green",shape="box"];3158[label="vyw29000",fontsize=16,color="green",shape="box"];3159 -> 2970[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3159[label="primCmpNat Zero (Succ vyw290000)",fontsize=16,color="magenta"];3159 -> 3220[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3159 -> 3221[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3160[label="EQ",fontsize=16,color="green",shape="box"];3161[label="GT",fontsize=16,color="green",shape="box"];3162[label="EQ",fontsize=16,color="green",shape="box"];3163[label="vyw29000",fontsize=16,color="green",shape="box"];3164[label="Succ vyw280000",fontsize=16,color="green",shape="box"];3165[label="LT",fontsize=16,color="green",shape="box"];3166[label="EQ",fontsize=16,color="green",shape="box"];3167 -> 2970[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3167[label="primCmpNat (Succ vyw290000) Zero",fontsize=16,color="magenta"];3167 -> 3222[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3167 -> 3223[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3168[label="EQ",fontsize=16,color="green",shape="box"];3169[label="primCmpNat (Succ vyw280000) (Succ vyw290000)",fontsize=16,color="black",shape="box"];3169 -> 3224[label="",style="solid", color="black", weight=3]; 24.86/10.73 3170[label="primCmpNat (Succ vyw280000) Zero",fontsize=16,color="black",shape="box"];3170 -> 3225[label="",style="solid", color="black", weight=3]; 24.86/10.73 3171[label="primCmpNat Zero (Succ vyw290000)",fontsize=16,color="black",shape="box"];3171 -> 3226[label="",style="solid", color="black", weight=3]; 24.86/10.73 3172[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3172 -> 3227[label="",style="solid", color="black", weight=3]; 24.86/10.73 3173[label="vyw28001",fontsize=16,color="green",shape="box"];3174[label="vyw29000",fontsize=16,color="green",shape="box"];3175[label="vyw29001",fontsize=16,color="green",shape="box"];3176[label="vyw28000",fontsize=16,color="green",shape="box"];3177[label="Integer vyw290000 * vyw28001",fontsize=16,color="burlywood",shape="box"];3986[label="vyw28001/Integer vyw280010",fontsize=10,color="white",style="solid",shape="box"];3177 -> 3986[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3986 -> 3228[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3178[label="vyw29001",fontsize=16,color="green",shape="box"];3179[label="vyw28000",fontsize=16,color="green",shape="box"];3180 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3180[label="compare (vyw28000 * Pos vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3180 -> 3229[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3180 -> 3230[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3181 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3181[label="compare (vyw28000 * Pos vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3181 -> 3231[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3181 -> 3232[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3182 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3182[label="compare (vyw28000 * Neg vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3182 -> 3233[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3182 -> 3234[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3183 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3183[label="compare (vyw28000 * Neg vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3183 -> 3235[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3183 -> 3236[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3184[label="vyw28000",fontsize=16,color="green",shape="box"];3185 -> 1740[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3185[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3185 -> 3237[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3185 -> 3238[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3186[label="vyw29000",fontsize=16,color="green",shape="box"];3188 -> 1732[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3188[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3188 -> 3239[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3188 -> 3240[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3187[label="compare2 vyw28000 vyw29000 vyw118",fontsize=16,color="burlywood",shape="triangle"];3987[label="vyw118/False",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3987[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3987 -> 3241[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3988[label="vyw118/True",fontsize=10,color="white",style="solid",shape="box"];3187 -> 3988[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3988 -> 3242[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3190 -> 1745[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3190[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3190 -> 3243[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3190 -> 3244[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3189[label="compare2 vyw28000 vyw29000 vyw119",fontsize=16,color="burlywood",shape="triangle"];3989[label="vyw119/False",fontsize=10,color="white",style="solid",shape="box"];3189 -> 3989[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3989 -> 3245[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3990[label="vyw119/True",fontsize=10,color="white",style="solid",shape="box"];3189 -> 3990[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3990 -> 3246[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3192 -> 1737[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3192[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3192 -> 3247[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3192 -> 3248[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3191[label="compare2 vyw28000 vyw29000 vyw120",fontsize=16,color="burlywood",shape="triangle"];3991[label="vyw120/False",fontsize=10,color="white",style="solid",shape="box"];3191 -> 3991[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3991 -> 3249[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3992[label="vyw120/True",fontsize=10,color="white",style="solid",shape="box"];3191 -> 3992[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3992 -> 3250[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3194 -> 1743[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3194[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3194 -> 3251[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3194 -> 3252[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3193[label="compare2 vyw28000 vyw29000 vyw121",fontsize=16,color="burlywood",shape="triangle"];3993[label="vyw121/False",fontsize=10,color="white",style="solid",shape="box"];3193 -> 3993[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3993 -> 3253[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3994[label="vyw121/True",fontsize=10,color="white",style="solid",shape="box"];3193 -> 3994[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3994 -> 3254[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3196 -> 40[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3196[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3196 -> 3255[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3196 -> 3256[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3195[label="compare2 vyw28000 vyw29000 vyw122",fontsize=16,color="burlywood",shape="triangle"];3995[label="vyw122/False",fontsize=10,color="white",style="solid",shape="box"];3195 -> 3995[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3995 -> 3257[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3996[label="vyw122/True",fontsize=10,color="white",style="solid",shape="box"];3195 -> 3996[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3996 -> 3258[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3197 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3197[label="compare (vyw28000 * Pos vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3197 -> 3259[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3197 -> 3260[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3198 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3198[label="compare (vyw28000 * Pos vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3198 -> 3261[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3198 -> 3262[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3199 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3199[label="compare (vyw28000 * Neg vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3199 -> 3263[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3199 -> 3264[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3200 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3200[label="compare (vyw28000 * Neg vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3200 -> 3265[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3200 -> 3266[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3201[label="Succ (Succ (primPlusNat vyw1120 vyw300000))",fontsize=16,color="green",shape="box"];3201 -> 3267[label="",style="dashed", color="green", weight=3]; 24.86/10.73 3202[label="Succ vyw300000",fontsize=16,color="green",shape="box"];3203 -> 2494[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3203[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3203 -> 3268[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3203 -> 3269[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3204 -> 2498[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3204[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3204 -> 3270[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3204 -> 3271[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3205 -> 2500[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3205[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3205 -> 3272[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3205 -> 3273[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3206 -> 2502[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3206[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3206 -> 3274[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3206 -> 3275[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3207 -> 2504[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3207[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3207 -> 3276[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3207 -> 3277[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3208 -> 2506[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3208[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3208 -> 3278[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3208 -> 3279[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3209 -> 2838[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3209[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3209 -> 3280[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3209 -> 3281[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3210 -> 2840[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3210[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3210 -> 3282[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3210 -> 3283[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3211 -> 2508[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3211[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3211 -> 3284[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3211 -> 3285[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3212 -> 2510[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3212[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3212 -> 3286[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3212 -> 3287[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3213 -> 2846[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3213[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3213 -> 3288[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3213 -> 3289[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3214 -> 2848[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3214[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3214 -> 3290[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3214 -> 3291[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3215 -> 2850[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3215[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3215 -> 3292[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3215 -> 3293[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3216 -> 2852[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3216[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3216 -> 3294[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3216 -> 3295[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3217[label="primCompAux0 vyw116 LT",fontsize=16,color="black",shape="box"];3217 -> 3296[label="",style="solid", color="black", weight=3]; 24.86/10.73 3218[label="primCompAux0 vyw116 EQ",fontsize=16,color="black",shape="box"];3218 -> 3297[label="",style="solid", color="black", weight=3]; 24.86/10.73 3219[label="primCompAux0 vyw116 GT",fontsize=16,color="black",shape="box"];3219 -> 3298[label="",style="solid", color="black", weight=3]; 24.86/10.73 3220[label="Zero",fontsize=16,color="green",shape="box"];3221[label="Succ vyw290000",fontsize=16,color="green",shape="box"];3222[label="Succ vyw290000",fontsize=16,color="green",shape="box"];3223[label="Zero",fontsize=16,color="green",shape="box"];3224 -> 2970[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3224[label="primCmpNat vyw280000 vyw290000",fontsize=16,color="magenta"];3224 -> 3299[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3224 -> 3300[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3225[label="GT",fontsize=16,color="green",shape="box"];3226[label="LT",fontsize=16,color="green",shape="box"];3227[label="EQ",fontsize=16,color="green",shape="box"];3228[label="Integer vyw290000 * Integer vyw280010",fontsize=16,color="black",shape="box"];3228 -> 3301[label="",style="solid", color="black", weight=3]; 24.86/10.73 3229 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3229[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3229 -> 3302[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3229 -> 3303[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3230 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3230[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3230 -> 3304[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3230 -> 3305[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3231 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3231[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3231 -> 3306[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3231 -> 3307[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3232 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3232[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3232 -> 3308[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3232 -> 3309[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3233 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3233[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3233 -> 3310[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3233 -> 3311[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3234 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3234[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3234 -> 3312[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3234 -> 3313[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3235 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3235[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3235 -> 3314[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3235 -> 3315[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3236 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3236[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3236 -> 3316[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3236 -> 3317[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3237[label="vyw29000",fontsize=16,color="green",shape="box"];3238[label="vyw28000",fontsize=16,color="green",shape="box"];3239[label="vyw29000",fontsize=16,color="green",shape="box"];3240[label="vyw28000",fontsize=16,color="green",shape="box"];3241[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3241 -> 3318[label="",style="solid", color="black", weight=3]; 24.86/10.73 3242[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3242 -> 3319[label="",style="solid", color="black", weight=3]; 24.86/10.73 3243[label="vyw29000",fontsize=16,color="green",shape="box"];3244[label="vyw28000",fontsize=16,color="green",shape="box"];3245[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3245 -> 3320[label="",style="solid", color="black", weight=3]; 24.86/10.73 3246[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3246 -> 3321[label="",style="solid", color="black", weight=3]; 24.86/10.73 3247[label="vyw29000",fontsize=16,color="green",shape="box"];3248[label="vyw28000",fontsize=16,color="green",shape="box"];3249[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3249 -> 3322[label="",style="solid", color="black", weight=3]; 24.86/10.73 3250[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3250 -> 3323[label="",style="solid", color="black", weight=3]; 24.86/10.73 3251[label="vyw29000",fontsize=16,color="green",shape="box"];3252[label="vyw28000",fontsize=16,color="green",shape="box"];3253[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3253 -> 3324[label="",style="solid", color="black", weight=3]; 24.86/10.73 3254[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3254 -> 3325[label="",style="solid", color="black", weight=3]; 24.86/10.73 3255[label="vyw29000",fontsize=16,color="green",shape="box"];3256[label="vyw28000",fontsize=16,color="green",shape="box"];3257[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3257 -> 3326[label="",style="solid", color="black", weight=3]; 24.86/10.73 3258[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3258 -> 3327[label="",style="solid", color="black", weight=3]; 24.86/10.73 3259 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3259[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3259 -> 3328[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3259 -> 3329[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3260 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3260[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3260 -> 3330[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3260 -> 3331[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3261 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3261[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3261 -> 3332[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3261 -> 3333[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3262 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3262[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3262 -> 3334[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3262 -> 3335[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3263 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3263[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3263 -> 3336[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3263 -> 3337[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3264 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3264[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3264 -> 3338[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3264 -> 3339[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3265 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3265[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3265 -> 3340[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3265 -> 3341[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3266 -> 2048[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3266[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3266 -> 3342[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3266 -> 3343[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3267[label="primPlusNat vyw1120 vyw300000",fontsize=16,color="burlywood",shape="triangle"];3997[label="vyw1120/Succ vyw11200",fontsize=10,color="white",style="solid",shape="box"];3267 -> 3997[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3997 -> 3344[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3998[label="vyw1120/Zero",fontsize=10,color="white",style="solid",shape="box"];3267 -> 3998[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3998 -> 3345[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3268[label="vyw29000",fontsize=16,color="green",shape="box"];3269[label="vyw28000",fontsize=16,color="green",shape="box"];3270[label="vyw29000",fontsize=16,color="green",shape="box"];3271[label="vyw28000",fontsize=16,color="green",shape="box"];3272[label="vyw29000",fontsize=16,color="green",shape="box"];3273[label="vyw28000",fontsize=16,color="green",shape="box"];3274[label="vyw29000",fontsize=16,color="green",shape="box"];3275[label="vyw28000",fontsize=16,color="green",shape="box"];3276[label="vyw29000",fontsize=16,color="green",shape="box"];3277[label="vyw28000",fontsize=16,color="green",shape="box"];3278[label="vyw29000",fontsize=16,color="green",shape="box"];3279[label="vyw28000",fontsize=16,color="green",shape="box"];3280[label="vyw29000",fontsize=16,color="green",shape="box"];3281[label="vyw28000",fontsize=16,color="green",shape="box"];3282[label="vyw29000",fontsize=16,color="green",shape="box"];3283[label="vyw28000",fontsize=16,color="green",shape="box"];3284[label="vyw29000",fontsize=16,color="green",shape="box"];3285[label="vyw28000",fontsize=16,color="green",shape="box"];3286[label="vyw29000",fontsize=16,color="green",shape="box"];3287[label="vyw28000",fontsize=16,color="green",shape="box"];3288[label="vyw29000",fontsize=16,color="green",shape="box"];3289[label="vyw28000",fontsize=16,color="green",shape="box"];3290[label="vyw29000",fontsize=16,color="green",shape="box"];3291[label="vyw28000",fontsize=16,color="green",shape="box"];3292[label="vyw29000",fontsize=16,color="green",shape="box"];3293[label="vyw28000",fontsize=16,color="green",shape="box"];3294[label="vyw29000",fontsize=16,color="green",shape="box"];3295[label="vyw28000",fontsize=16,color="green",shape="box"];3296[label="LT",fontsize=16,color="green",shape="box"];3297[label="vyw116",fontsize=16,color="green",shape="box"];3298[label="GT",fontsize=16,color="green",shape="box"];3299[label="vyw280000",fontsize=16,color="green",shape="box"];3300[label="vyw290000",fontsize=16,color="green",shape="box"];3301[label="Integer (primMulInt vyw290000 vyw280010)",fontsize=16,color="green",shape="box"];3301 -> 3346[label="",style="dashed", color="green", weight=3]; 24.86/10.73 3302[label="vyw29000",fontsize=16,color="green",shape="box"];3303[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3304[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3305[label="vyw28000",fontsize=16,color="green",shape="box"];3306[label="vyw29000",fontsize=16,color="green",shape="box"];3307[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3308[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3309[label="vyw28000",fontsize=16,color="green",shape="box"];3310[label="vyw29000",fontsize=16,color="green",shape="box"];3311[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3312[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3313[label="vyw28000",fontsize=16,color="green",shape="box"];3314[label="vyw29000",fontsize=16,color="green",shape="box"];3315[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3316[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3317[label="vyw28000",fontsize=16,color="green",shape="box"];3318 -> 3347[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3318[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3318 -> 3348[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3319[label="EQ",fontsize=16,color="green",shape="box"];3320 -> 3349[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3320[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3320 -> 3350[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3321[label="EQ",fontsize=16,color="green",shape="box"];3322 -> 3351[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3322[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3322 -> 3352[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3323[label="EQ",fontsize=16,color="green",shape="box"];3324 -> 3353[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3324[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3324 -> 3354[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3325[label="EQ",fontsize=16,color="green",shape="box"];3326 -> 3355[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3326[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3326 -> 3356[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3327[label="EQ",fontsize=16,color="green",shape="box"];3328[label="vyw29000",fontsize=16,color="green",shape="box"];3329[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3330[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3331[label="vyw28000",fontsize=16,color="green",shape="box"];3332[label="vyw29000",fontsize=16,color="green",shape="box"];3333[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3334[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3335[label="vyw28000",fontsize=16,color="green",shape="box"];3336[label="vyw29000",fontsize=16,color="green",shape="box"];3337[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3338[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3339[label="vyw28000",fontsize=16,color="green",shape="box"];3340[label="vyw29000",fontsize=16,color="green",shape="box"];3341[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3342[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3343[label="vyw28000",fontsize=16,color="green",shape="box"];3344[label="primPlusNat (Succ vyw11200) vyw300000",fontsize=16,color="burlywood",shape="box"];3999[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];3344 -> 3999[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 3999 -> 3357[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 4000[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4000[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4000 -> 3358[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3345[label="primPlusNat Zero vyw300000",fontsize=16,color="burlywood",shape="box"];4001[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];3345 -> 4001[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4001 -> 3359[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 4002[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3345 -> 4002[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4002 -> 3360[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3346 -> 2315[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3346[label="primMulInt vyw290000 vyw280010",fontsize=16,color="magenta"];3346 -> 3361[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3346 -> 3362[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3348 -> 2148[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3348[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3348 -> 3363[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3348 -> 3364[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3347[label="compare1 vyw28000 vyw29000 vyw123",fontsize=16,color="burlywood",shape="triangle"];4003[label="vyw123/False",fontsize=10,color="white",style="solid",shape="box"];3347 -> 4003[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4003 -> 3365[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 4004[label="vyw123/True",fontsize=10,color="white",style="solid",shape="box"];3347 -> 4004[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4004 -> 3366[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3350 -> 2151[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3350[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3350 -> 3367[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3350 -> 3368[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3349[label="compare1 vyw28000 vyw29000 vyw124",fontsize=16,color="burlywood",shape="triangle"];4005[label="vyw124/False",fontsize=10,color="white",style="solid",shape="box"];3349 -> 4005[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4005 -> 3369[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 4006[label="vyw124/True",fontsize=10,color="white",style="solid",shape="box"];3349 -> 4006[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4006 -> 3370[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3352 -> 2152[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3352[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3352 -> 3371[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3352 -> 3372[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3351[label="compare1 vyw28000 vyw29000 vyw125",fontsize=16,color="burlywood",shape="triangle"];4007[label="vyw125/False",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4007[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4007 -> 3373[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 4008[label="vyw125/True",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4008[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4008 -> 3374[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3354 -> 2153[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3354[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3354 -> 3375[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3354 -> 3376[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3353[label="compare1 vyw28000 vyw29000 vyw126",fontsize=16,color="burlywood",shape="triangle"];4009[label="vyw126/False",fontsize=10,color="white",style="solid",shape="box"];3353 -> 4009[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4009 -> 3377[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 4010[label="vyw126/True",fontsize=10,color="white",style="solid",shape="box"];3353 -> 4010[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4010 -> 3378[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3356 -> 2154[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3356[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3356 -> 3379[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3356 -> 3380[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3355[label="compare1 vyw28000 vyw29000 vyw127",fontsize=16,color="burlywood",shape="triangle"];4011[label="vyw127/False",fontsize=10,color="white",style="solid",shape="box"];3355 -> 4011[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4011 -> 3381[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 4012[label="vyw127/True",fontsize=10,color="white",style="solid",shape="box"];3355 -> 4012[label="",style="solid", color="burlywood", weight=9]; 24.86/10.73 4012 -> 3382[label="",style="solid", color="burlywood", weight=3]; 24.86/10.73 3357[label="primPlusNat (Succ vyw11200) (Succ vyw3000000)",fontsize=16,color="black",shape="box"];3357 -> 3383[label="",style="solid", color="black", weight=3]; 24.86/10.73 3358[label="primPlusNat (Succ vyw11200) Zero",fontsize=16,color="black",shape="box"];3358 -> 3384[label="",style="solid", color="black", weight=3]; 24.86/10.73 3359[label="primPlusNat Zero (Succ vyw3000000)",fontsize=16,color="black",shape="box"];3359 -> 3385[label="",style="solid", color="black", weight=3]; 24.86/10.73 3360[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3360 -> 3386[label="",style="solid", color="black", weight=3]; 24.86/10.73 3361[label="vyw280010",fontsize=16,color="green",shape="box"];3362[label="vyw290000",fontsize=16,color="green",shape="box"];3363[label="vyw29000",fontsize=16,color="green",shape="box"];3364[label="vyw28000",fontsize=16,color="green",shape="box"];3365[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3365 -> 3387[label="",style="solid", color="black", weight=3]; 24.86/10.73 3366[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3366 -> 3388[label="",style="solid", color="black", weight=3]; 24.86/10.73 3367[label="vyw29000",fontsize=16,color="green",shape="box"];3368[label="vyw28000",fontsize=16,color="green",shape="box"];3369[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3369 -> 3389[label="",style="solid", color="black", weight=3]; 24.86/10.73 3370[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3370 -> 3390[label="",style="solid", color="black", weight=3]; 24.86/10.73 3371[label="vyw29000",fontsize=16,color="green",shape="box"];3372[label="vyw28000",fontsize=16,color="green",shape="box"];3373[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3373 -> 3391[label="",style="solid", color="black", weight=3]; 24.86/10.73 3374[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3374 -> 3392[label="",style="solid", color="black", weight=3]; 24.86/10.73 3375[label="vyw29000",fontsize=16,color="green",shape="box"];3376[label="vyw28000",fontsize=16,color="green",shape="box"];3377[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3377 -> 3393[label="",style="solid", color="black", weight=3]; 24.86/10.73 3378[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3378 -> 3394[label="",style="solid", color="black", weight=3]; 24.86/10.73 3379[label="vyw29000",fontsize=16,color="green",shape="box"];3380[label="vyw28000",fontsize=16,color="green",shape="box"];3381[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3381 -> 3395[label="",style="solid", color="black", weight=3]; 24.86/10.73 3382[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3382 -> 3396[label="",style="solid", color="black", weight=3]; 24.86/10.73 3383[label="Succ (Succ (primPlusNat vyw11200 vyw3000000))",fontsize=16,color="green",shape="box"];3383 -> 3397[label="",style="dashed", color="green", weight=3]; 24.86/10.73 3384[label="Succ vyw11200",fontsize=16,color="green",shape="box"];3385[label="Succ vyw3000000",fontsize=16,color="green",shape="box"];3386[label="Zero",fontsize=16,color="green",shape="box"];3387[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3387 -> 3398[label="",style="solid", color="black", weight=3]; 24.86/10.73 3388[label="LT",fontsize=16,color="green",shape="box"];3389[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3389 -> 3399[label="",style="solid", color="black", weight=3]; 24.86/10.73 3390[label="LT",fontsize=16,color="green",shape="box"];3391[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3391 -> 3400[label="",style="solid", color="black", weight=3]; 24.86/10.73 3392[label="LT",fontsize=16,color="green",shape="box"];3393[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3393 -> 3401[label="",style="solid", color="black", weight=3]; 24.86/10.73 3394[label="LT",fontsize=16,color="green",shape="box"];3395[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3395 -> 3402[label="",style="solid", color="black", weight=3]; 24.86/10.73 3396[label="LT",fontsize=16,color="green",shape="box"];3397 -> 3267[label="",style="dashed", color="red", weight=0]; 24.86/10.73 3397[label="primPlusNat vyw11200 vyw3000000",fontsize=16,color="magenta"];3397 -> 3403[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3397 -> 3404[label="",style="dashed", color="magenta", weight=3]; 24.86/10.73 3398[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3398 -> 3405[label="",style="solid", color="black", weight=3]; 24.86/10.73 3399[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3399 -> 3406[label="",style="solid", color="black", weight=3]; 24.86/10.73 3400[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3400 -> 3407[label="",style="solid", color="black", weight=3]; 24.86/10.73 3401[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3401 -> 3408[label="",style="solid", color="black", weight=3]; 24.86/10.73 3402[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3402 -> 3409[label="",style="solid", color="black", weight=3]; 24.86/10.73 3403[label="vyw11200",fontsize=16,color="green",shape="box"];3404[label="vyw3000000",fontsize=16,color="green",shape="box"];3405[label="GT",fontsize=16,color="green",shape="box"];3406[label="GT",fontsize=16,color="green",shape="box"];3407[label="GT",fontsize=16,color="green",shape="box"];3408[label="GT",fontsize=16,color="green",shape="box"];3409[label="GT",fontsize=16,color="green",shape="box"];} 24.86/10.73 24.86/10.73 ---------------------------------------- 24.86/10.73 24.86/10.73 (16) 24.86/10.73 Complex Obligation (AND) 24.86/10.73 24.86/10.73 ---------------------------------------- 24.86/10.73 24.86/10.73 (17) 24.86/10.73 Obligation: 24.86/10.73 Q DP problem: 24.86/10.73 The TRS P consists of the following rules: 24.86/10.73 24.86/10.73 new_primCmpNat(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat(vyw280000, vyw290000) 24.86/10.73 24.86/10.73 R is empty. 24.86/10.73 Q is empty. 24.86/10.73 We have to consider all minimal (P,Q,R)-chains. 24.86/10.73 ---------------------------------------- 24.86/10.73 24.86/10.73 (18) QDPSizeChangeProof (EQUIVALENT) 24.86/10.73 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. 24.86/10.73 24.86/10.73 From the DPs we obtained the following set of size-change graphs: 24.86/10.73 *new_primCmpNat(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat(vyw280000, vyw290000) 24.86/10.73 The graph contains the following edges 1 > 1, 2 > 2 24.86/10.73 24.86/10.73 24.86/10.73 ---------------------------------------- 24.86/10.73 24.86/10.73 (19) 24.86/10.73 YES 24.86/10.73 24.86/10.73 ---------------------------------------- 24.86/10.73 24.86/10.73 (20) 24.86/10.73 Obligation: 24.86/10.73 Q DP problem: 24.86/10.73 The TRS P consists of the following rules: 24.86/10.73 24.86/10.73 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw33, Just(vyw40), h, ba) 24.86/10.73 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Just(vyw300), False, ba), LT), h, ba) 24.86/10.73 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupFM1(vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Nothing, True, ba), GT), h, ba) 24.86/10.73 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), LT), h, ba) 24.86/10.73 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), GT), h, ba) 24.86/10.73 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw16, Just(vyw18), bb, bc) 24.86/10.73 new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw34, Just(vyw40), h, ba) 24.86/10.73 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Just(vyw300), new_esEs29(vyw40, vyw300, ba), ba), LT), h, ba) 24.86/10.73 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare26(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) 24.86/10.73 new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw33, Nothing, h, ba) 24.86/10.73 new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw34, Nothing, h, ba) 24.86/10.73 new_lookupFM1(vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw34, Nothing, h, ba) 24.86/10.73 new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw17, Just(vyw18), bb, bc) 24.86/10.73 new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, False, h, ba) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Just(vyw300), False, ba), GT), h, ba) 24.86/10.73 24.86/10.73 The TRS R consists of the following rules: 24.86/10.73 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.73 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.73 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.73 new_ltEs17(LT, EQ) -> True 24.86/10.73 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs19(vyw400, vyw3000, dde) 24.86/10.73 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.73 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.73 new_pePe(True, vyw110) -> True 24.86/10.73 new_compare12(vyw28000, vyw29000, False, bg, bh) -> GT 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.73 new_esEs11(vyw400, vyw3000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw400, vyw3000, ee, ef) 24.86/10.73 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.73 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, cfb) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.73 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.73 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.73 new_esEs18(True, True) -> True 24.86/10.73 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.73 new_esEs25(vyw28000, vyw29000, app(ty_[], daa)) -> new_esEs13(vyw28000, vyw29000, daa) 24.86/10.73 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.73 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.73 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.73 new_esEs29(vyw40, vyw300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vyw40, vyw300, bbg, bbh, bca) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], ceb)) -> new_esEs13(vyw400, vyw3000, ceb) 24.86/10.73 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.73 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.73 new_esEs11(vyw400, vyw3000, app(ty_Ratio, eh)) -> new_esEs19(vyw400, vyw3000, eh) 24.86/10.73 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, cfd), cfb) -> new_ltEs7(vyw28000, vyw29000, cfd) 24.86/10.73 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.73 new_esEs9(LT, EQ) -> False 24.86/10.73 new_esEs9(EQ, LT) -> False 24.86/10.73 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.73 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bga) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bga), bga) 24.86/10.73 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.73 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.73 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.73 new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw400, vyw3000, ddb, ddc) 24.86/10.73 new_compare8(vyw28000, vyw29000, bd, be) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.73 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.73 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Maybe, cgg)) -> new_ltEs7(vyw28000, vyw29000, cgg) 24.86/10.73 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.73 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.73 new_primCompAux0(vyw116, GT) -> GT 24.86/10.73 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.73 new_ltEs5(Left(vyw28000), Right(vyw29000), cgd, cfb) -> True 24.86/10.73 new_esEs21(vyw401, vyw3001, app(ty_[], bdg)) -> new_esEs13(vyw401, vyw3001, bdg) 24.86/10.73 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.73 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.73 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.73 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, cdd), cde)) -> new_ltEs4(vyw28002, vyw29002, cdd, cde) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, hd) -> new_esEs9(vyw400, vyw3000) 24.86/10.73 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.73 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.73 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw400, vyw3000, bcb, bcc, bcd) 24.86/10.73 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.73 new_esEs22(vyw402, vyw3002, app(ty_Maybe, bfd)) -> new_esEs4(vyw402, vyw3002, bfd) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, hd) -> new_esEs15(vyw400, vyw3000) 24.86/10.73 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.73 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.73 new_primCompAux0(vyw116, LT) -> LT 24.86/10.73 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.73 new_ltEs17(LT, GT) -> True 24.86/10.73 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.73 new_not(True) -> False 24.86/10.73 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ccf)) -> new_ltEs7(vyw28002, vyw29002, ccf) 24.86/10.73 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.73 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.73 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.73 new_esEs12(vyw401, vyw3001, app(ty_Maybe, gb)) -> new_esEs4(vyw401, vyw3001, gb) 24.86/10.73 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.73 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.73 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bgd)) -> new_compare7(vyw28000, vyw29000, bgd) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.73 new_esEs22(vyw402, vyw3002, app(ty_Ratio, bfe)) -> new_esEs19(vyw402, vyw3002, bfe) 24.86/10.73 new_ltEs17(EQ, GT) -> True 24.86/10.73 new_esEs11(vyw400, vyw3000, app(ty_Maybe, eg)) -> new_esEs4(vyw400, vyw3000, eg) 24.86/10.73 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dea) -> new_asAs(new_esEs27(vyw400, vyw3000, dea), new_esEs28(vyw401, vyw3001, dea)) 24.86/10.73 new_esEs29(vyw40, vyw300, app(ty_[], dce)) -> new_esEs13(vyw40, vyw300, dce) 24.86/10.73 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw28000, vyw29000, cg, da, db) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs13(vyw28001, vyw29001, dbf, dbg, dbh) 24.86/10.73 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.73 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.73 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.73 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.73 new_lt20(vyw28000, vyw29000, app(ty_[], daa)) -> new_lt4(vyw28000, vyw29000, daa) 24.86/10.73 new_esEs13([], [], dce) -> True 24.86/10.73 new_ltEs7(Nothing, Just(vyw29000), cc) -> True 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, hd) -> new_esEs14(vyw400, vyw3000) 24.86/10.73 new_compare26(Nothing, Nothing, False, ddh) -> LT 24.86/10.73 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.73 new_ltEs17(LT, LT) -> True 24.86/10.73 new_esEs22(vyw402, vyw3002, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw402, vyw3002, bfb, bfc) 24.86/10.73 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vyw28000, vyw29000, dad, dae, daf) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, cfh), cga), cfb) -> new_ltEs5(vyw28000, vyw29000, cfh, cga) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.73 new_compare13(vyw95, vyw96, False, ca) -> GT 24.86/10.73 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.73 new_esEs12(vyw401, vyw3001, app(ty_Ratio, gc)) -> new_esEs19(vyw401, vyw3001, gc) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Ratio, cgf)) -> new_ltEs12(vyw28000, vyw29000, cgf) 24.86/10.73 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(vyw2800, vyw2900, caf, cag, cah) 24.86/10.73 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.73 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, chg), chh)) -> new_ltEs4(vyw2800, vyw2900, chg, chh) 24.86/10.73 new_lt18(vyw28000, vyw29000, bg, bh) -> new_esEs9(new_compare16(vyw28000, vyw29000, bg, bh), LT) 24.86/10.73 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.73 new_esEs30(vyw18, vyw13, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs5(vyw18, vyw13, bhd, bhe, bhf) 24.86/10.73 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.73 new_esEs29(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 24.86/10.73 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.73 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.73 new_compare28(vyw28000, vyw29000, False, gf, gg, gh) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.73 new_esEs11(vyw400, vyw3000, app(ty_[], ed)) -> new_esEs13(vyw400, vyw3000, ed) 24.86/10.73 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.73 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ha), hb), hc), hd) -> new_esEs5(vyw400, vyw3000, ha, hb, hc) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, cfc), cfb) -> new_ltEs12(vyw28000, vyw29000, cfc) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, cc)) -> new_ltEs7(vyw2800, vyw2900, cc) 24.86/10.73 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, de), df)) -> new_ltEs4(vyw28000, vyw29000, de, df) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, dcc), dcd)) -> new_ltEs4(vyw28001, vyw29001, dcc, dcd) 24.86/10.73 new_esEs24(vyw28001, vyw29001, app(ty_[], cbb)) -> new_esEs13(vyw28001, vyw29001, cbb) 24.86/10.73 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(vyw401, vyw3001, bdd, bde, bdf) 24.86/10.73 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.73 new_compare110(vyw28000, vyw29000, False, gf, gg, gh) -> GT 24.86/10.73 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.73 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.73 new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 24.86/10.73 new_pePe(False, vyw110) -> vyw110 24.86/10.73 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.73 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) 24.86/10.73 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.73 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.73 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.73 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.73 new_compare25(vyw28000, vyw29000, True, bg, bh) -> EQ 24.86/10.73 new_ltEs12(vyw2800, vyw2900, bfh) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, bfh), GT)) 24.86/10.73 new_esEs29(vyw40, vyw300, ty_Integer) -> new_esEs17(vyw40, vyw300) 24.86/10.73 new_esEs22(vyw402, vyw3002, app(app(ty_Either, bff), bfg)) -> new_esEs6(vyw402, vyw3002, bff, bfg) 24.86/10.73 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vyw28000, vyw29000, gf, gg, gh) 24.86/10.73 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.73 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.73 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_esEs19(vyw28000, vyw29000, dab) 24.86/10.73 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.73 new_esEs29(vyw40, vyw300, ty_Char) -> new_esEs14(vyw40, vyw300) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, cfb) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.73 new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_@2, che), chf)) -> new_ltEs4(vyw28000, vyw29000, che, chf) 24.86/10.73 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.73 new_compare11(vyw28000, vyw29000, False, bd, be) -> GT 24.86/10.73 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.73 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.73 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.73 new_esEs12(vyw401, vyw3001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw401, vyw3001, fh, ga) 24.86/10.73 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dg, dh) -> new_asAs(new_esEs11(vyw400, vyw3000, dg), new_esEs12(vyw401, vyw3001, dh)) 24.86/10.73 new_esEs26(vyw400, vyw3000, app(ty_[], dda)) -> new_esEs13(vyw400, vyw3000, dda) 24.86/10.73 new_compare24(vyw28000, vyw29000, False, bd, be) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.73 new_esEs29(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw400, vyw3000, cdg, cdh, cea) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs13(vyw28002, vyw29002, ccg, cch, cda) 24.86/10.73 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.73 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.73 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs5(vyw400, vyw3000, ea, eb, ec) 24.86/10.73 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.73 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.73 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.73 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, cfb) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.73 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.73 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw28001, vyw29001, cbh, cca) 24.86/10.73 new_esEs13(:(vyw400, vyw401), [], dce) -> False 24.86/10.73 new_esEs13([], :(vyw3000, vyw3001), dce) -> False 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, bab), bac), hd) -> new_esEs6(vyw400, vyw3000, bab, bac) 24.86/10.73 new_primCompAux1(vyw28000, vyw29000, vyw111, bga) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, bga)) 24.86/10.73 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.73 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.73 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.73 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), caf, cag, cah) -> new_pePe(new_lt12(vyw28000, vyw29000, caf), new_asAs(new_esEs23(vyw28000, vyw29000, caf), new_pePe(new_lt13(vyw28001, vyw29001, cag), new_asAs(new_esEs24(vyw28001, vyw29001, cag), new_ltEs18(vyw28002, vyw29002, cah))))) 24.86/10.73 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vyw400, vyw3000, bae, baf, bag) 24.86/10.73 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(vyw28000, vyw29000, gf, gg, gh) 24.86/10.73 new_compare26(vyw280, vyw290, True, ddh) -> EQ 24.86/10.73 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.73 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.73 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_[], bah)) -> new_esEs13(vyw400, vyw3000, bah) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, hf), hg), hd) -> new_esEs7(vyw400, vyw3000, hf, hg) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, cfe), cff), cfg), cfb) -> new_ltEs13(vyw28000, vyw29000, cfe, cff, cfg) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.73 new_lt12(vyw28000, vyw29000, app(ty_[], bf)) -> new_lt4(vyw28000, vyw29000, bf) 24.86/10.73 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.73 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.73 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.73 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.73 new_esEs20(vyw400, vyw3000, app(ty_Maybe, bch)) -> new_esEs4(vyw400, vyw3000, bch) 24.86/10.73 new_compare30(vyw28000, vyw29000, app(ty_Ratio, bgc)) -> new_compare19(vyw28000, vyw29000, bgc) 24.86/10.73 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.73 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.73 new_esEs9(LT, LT) -> True 24.86/10.73 new_lt13(vyw28001, vyw29001, app(ty_[], cbb)) -> new_lt4(vyw28001, vyw29001, cbb) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.73 new_esEs11(vyw400, vyw3000, app(app(ty_Either, fa), fb)) -> new_esEs6(vyw400, vyw3000, fa, fb) 24.86/10.73 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.73 new_esEs29(vyw40, vyw300, ty_Bool) -> new_esEs18(vyw40, vyw300) 24.86/10.73 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bbg, bbh, bca) -> new_asAs(new_esEs20(vyw400, vyw3000, bbg), new_asAs(new_esEs21(vyw401, vyw3001, bbh), new_esEs22(vyw402, vyw3002, bca))) 24.86/10.73 new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs17(vyw18, vyw13) 24.86/10.73 new_compare25(vyw28000, vyw29000, False, bg, bh) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.73 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.73 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.73 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.73 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.73 new_esEs21(vyw401, vyw3001, app(ty_Maybe, beb)) -> new_esEs4(vyw401, vyw3001, beb) 24.86/10.73 new_esEs12(vyw401, vyw3001, app(app(ty_Either, gd), ge)) -> new_esEs6(vyw401, vyw3001, gd, ge) 24.86/10.73 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.73 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, cfb) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.73 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyw28000, vyw29000, dba, dbb) 24.86/10.73 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.73 new_lt20(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_lt10(vyw28000, vyw29000, dac) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, hd) -> new_esEs10(vyw400, vyw3000) 24.86/10.73 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.73 new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs18(vyw18, vyw13) 24.86/10.73 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), chg, chh) -> new_pePe(new_lt20(vyw28000, vyw29000, chg), new_asAs(new_esEs25(vyw28000, vyw29000, chg), new_ltEs19(vyw28001, vyw29001, chh))) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_@2, bba), bbb)) -> new_esEs7(vyw400, vyw3000, bba, bbb) 24.86/10.73 new_compare16(vyw28000, vyw29000, bg, bh) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.73 new_ltEs17(EQ, EQ) -> True 24.86/10.73 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, cee)) -> new_esEs4(vyw400, vyw3000, cee) 24.86/10.73 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.73 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_esEs6(vyw28000, vyw29000, bg, bh) 24.86/10.73 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.73 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.73 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.73 new_esEs21(vyw401, vyw3001, app(app(ty_Either, bed), bee)) -> new_esEs6(vyw401, vyw3001, bed, bee) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, dca), dcb)) -> new_ltEs5(vyw28001, vyw29001, dca, dcb) 24.86/10.73 new_ltEs17(GT, LT) -> False 24.86/10.73 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.73 new_ltEs17(EQ, LT) -> False 24.86/10.73 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.73 new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs8(vyw18, vyw13) 24.86/10.73 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.73 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.73 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.73 new_esEs30(vyw18, vyw13, app(ty_Maybe, cab)) -> new_esEs4(vyw18, vyw13, cab) 24.86/10.73 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_esEs4(vyw28001, vyw29001, cbd) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_Either, bbe), bbf)) -> new_esEs6(vyw400, vyw3000, bbe, bbf) 24.86/10.73 new_esEs23(vyw28000, vyw29000, app(ty_[], bf)) -> new_esEs13(vyw28000, vyw29000, bf) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, cgb), cgc), cfb) -> new_ltEs4(vyw28000, vyw29000, cgb, cgc) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.73 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.73 new_lt7(vyw28000, vyw29000, bd, be) -> new_esEs9(new_compare8(vyw28000, vyw29000, bd, be), LT) 24.86/10.73 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(vyw402, vyw3002, bef, beg, beh) 24.86/10.73 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.73 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.73 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.73 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.73 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw400, vyw3000, ceg, ceh) 24.86/10.73 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.73 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.73 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, dc), dd)) -> new_ltEs5(vyw28000, vyw29000, dc, dd) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, hd) -> new_esEs18(vyw400, vyw3000) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.73 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_esEs19(vyw28001, vyw29001, cbc) 24.86/10.73 new_compare0([], :(vyw29000, vyw29001), bga) -> LT 24.86/10.73 new_asAs(True, vyw102) -> vyw102 24.86/10.73 new_ltEs5(Right(vyw28000), Left(vyw29000), cgd, cfb) -> False 24.86/10.73 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(vyw401, vyw3001, fc, fd, ff) 24.86/10.73 new_ltEs8(vyw2800, vyw2900, bga) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, bga), GT)) 24.86/10.73 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.73 new_compare26(Just(vyw2800), Just(vyw2900), False, ddh) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, ddh), ddh) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, baa), hd) -> new_esEs19(vyw400, vyw3000, baa) 24.86/10.73 new_esEs29(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.73 new_lt20(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_lt7(vyw28000, vyw29000, dba, dbb) 24.86/10.73 new_esEs30(vyw18, vyw13, app(ty_Ratio, cac)) -> new_esEs19(vyw18, vyw13, cac) 24.86/10.73 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.73 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.73 new_esEs6(Left(vyw400), Right(vyw3000), bad, hd) -> False 24.86/10.73 new_esEs6(Right(vyw400), Left(vyw3000), bad, hd) -> False 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.73 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.73 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.73 new_ltEs16(True, False) -> False 24.86/10.73 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, cgd), cfb)) -> new_ltEs5(vyw2800, vyw2900, cgd, cfb) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.73 new_esEs18(False, False) -> True 24.86/10.73 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.73 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.73 new_compare13(vyw95, vyw96, True, ca) -> LT 24.86/10.73 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.73 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.73 new_compare24(vyw28000, vyw29000, True, bd, be) -> EQ 24.86/10.73 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_esEs7(vyw28001, vyw29001, ccb, ccc) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.73 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.73 new_esEs30(vyw18, vyw13, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw18, vyw13, bhh, caa) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, app(ty_[], ccd)) -> new_ltEs8(vyw28002, vyw29002, ccd) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_Either, chc), chd)) -> new_ltEs5(vyw28000, vyw29000, chc, chd) 24.86/10.73 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.73 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Ratio, bbd)) -> new_esEs19(vyw400, vyw3000, bbd) 24.86/10.73 new_compare0([], [], bga) -> EQ 24.86/10.73 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.73 new_ltEs7(Nothing, Nothing, cc) -> True 24.86/10.73 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.73 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.73 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.73 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.73 new_esEs12(vyw401, vyw3001, app(ty_[], fg)) -> new_esEs13(vyw401, vyw3001, fg) 24.86/10.73 new_lt12(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_lt18(vyw28000, vyw29000, bg, bh) 24.86/10.73 new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) 24.86/10.73 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.73 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.73 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hd) -> new_esEs4(vyw400, vyw3000, hh) 24.86/10.73 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, app(ty_[], dbc)) -> new_ltEs8(vyw28001, vyw29001, dbc) 24.86/10.73 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.73 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.73 new_esEs26(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs6(vyw400, vyw3000, ddf, ddg) 24.86/10.73 new_ltEs7(Just(vyw28000), Nothing, cc) -> False 24.86/10.73 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.73 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_esEs7(vyw28000, vyw29000, bd, be) 24.86/10.73 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.73 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.73 new_compare28(vyw28000, vyw29000, True, gf, gg, gh) -> EQ 24.86/10.73 new_lt15(vyw28000, vyw29000, cba) -> new_esEs9(new_compare19(vyw28000, vyw29000, cba), LT) 24.86/10.73 new_esEs4(Nothing, Nothing, cdf) -> True 24.86/10.73 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.73 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.73 new_esEs4(Nothing, Just(vyw3000), cdf) -> False 24.86/10.73 new_esEs4(Just(vyw400), Nothing, cdf) -> False 24.86/10.73 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.73 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_lt15(vyw28000, vyw29000, dab) 24.86/10.73 new_lt13(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_lt18(vyw28001, vyw29001, cbh, cca) 24.86/10.73 new_esEs29(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs19(vyw40, vyw300, dea) 24.86/10.73 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.73 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.73 new_compare32(@0, @0) -> EQ 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Maybe, bbc)) -> new_esEs4(vyw400, vyw3000, bbc) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.73 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_esEs6(vyw28000, vyw29000, dag, dah) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], cfa), cfb) -> new_ltEs8(vyw28000, vyw29000, cfa) 24.86/10.73 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.73 new_esEs9(EQ, EQ) -> True 24.86/10.73 new_ltEs20(vyw2800, vyw2900, app(ty_[], bga)) -> new_ltEs8(vyw2800, vyw2900, bga) 24.86/10.73 new_compare26(Just(vyw2800), Nothing, False, ddh) -> GT 24.86/10.73 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, dbe)) -> new_ltEs7(vyw28001, vyw29001, dbe) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, bfh)) -> new_ltEs12(vyw2800, vyw2900, bfh) 24.86/10.73 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.73 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.73 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cd)) -> new_ltEs8(vyw28000, vyw29000, cd) 24.86/10.73 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.73 new_esEs20(vyw400, vyw3000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(vyw400, vyw3000, bdb, bdc) 24.86/10.73 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.73 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, cdb), cdc)) -> new_ltEs5(vyw28002, vyw29002, cdb, cdc) 24.86/10.73 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.73 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.73 new_compare30(vyw28000, vyw29000, app(ty_[], bgb)) -> new_compare0(vyw28000, vyw29000, bgb) 24.86/10.73 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.73 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_esEs19(vyw28000, vyw29000, cba) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, ce)) -> new_ltEs12(vyw28000, vyw29000, ce) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, dbd)) -> new_ltEs12(vyw28001, vyw29001, dbd) 24.86/10.73 new_esEs29(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs4(vyw40, vyw300, cdf) 24.86/10.73 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.73 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.73 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.73 new_lt4(vyw28000, vyw29000, bf) -> new_esEs9(new_compare0(vyw28000, vyw29000, bf), LT) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.73 new_compare110(vyw28000, vyw29000, True, gf, gg, gh) -> LT 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cf)) -> new_ltEs7(vyw28000, vyw29000, cf) 24.86/10.73 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.73 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.73 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.73 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, cfb) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.73 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_lt16(vyw28000, vyw29000, dad, dae, daf) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.73 new_not(False) -> True 24.86/10.73 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, hd) -> new_esEs8(vyw400, vyw3000) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_[], cge)) -> new_ltEs8(vyw28000, vyw29000, cge) 24.86/10.73 new_lt16(vyw28000, vyw29000, gf, gg, gh) -> new_esEs9(new_compare17(vyw28000, vyw29000, gf, gg, gh), LT) 24.86/10.73 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.73 new_esEs9(GT, GT) -> True 24.86/10.73 new_compare0(:(vyw28000, vyw28001), [], bga) -> GT 24.86/10.73 new_esEs18(False, True) -> False 24.86/10.73 new_esEs18(True, False) -> False 24.86/10.73 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.73 new_esEs29(vyw40, vyw300, app(app(ty_Either, bad), hd)) -> new_esEs6(vyw40, vyw300, bad, hd) 24.86/10.73 new_esEs22(vyw402, vyw3002, app(ty_[], bfa)) -> new_esEs13(vyw402, vyw3002, bfa) 24.86/10.73 new_esEs10(@0, @0) -> True 24.86/10.73 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cce)) -> new_ltEs12(vyw28002, vyw29002, cce) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.73 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bgh), bha)) -> new_compare16(vyw28000, vyw29000, bgh, bha) 24.86/10.73 new_lt13(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_lt7(vyw28001, vyw29001, ccb, ccc) 24.86/10.73 new_esEs29(vyw40, vyw300, app(app(ty_@2, dg), dh)) -> new_esEs7(vyw40, vyw300, dg, dh) 24.86/10.73 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.73 new_esEs9(EQ, GT) -> False 24.86/10.73 new_esEs9(GT, EQ) -> False 24.86/10.73 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.73 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.73 new_ltEs16(False, False) -> True 24.86/10.73 new_compare11(vyw28000, vyw29000, True, bd, be) -> LT 24.86/10.73 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.73 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.73 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.73 new_esEs29(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) 24.86/10.73 new_esEs30(vyw18, vyw13, app(app(ty_Either, cad), cae)) -> new_esEs6(vyw18, vyw13, cad, cae) 24.86/10.73 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.73 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.73 new_lt20(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_lt18(vyw28000, vyw29000, dag, dah) 24.86/10.73 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.73 new_esEs30(vyw18, vyw13, app(ty_[], bhg)) -> new_esEs13(vyw18, vyw13, bhg) 24.86/10.73 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.73 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.73 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.73 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.73 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.73 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.73 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare17(vyw28000, vyw29000, bge, bgf, bgg) 24.86/10.73 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.73 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.73 new_ltEs17(GT, EQ) -> False 24.86/10.73 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_esEs4(vyw28000, vyw29000, dac) 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.73 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.73 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bhb), bhc)) -> new_compare8(vyw28000, vyw29000, bhb, bhc) 24.86/10.73 new_ltEs16(True, True) -> True 24.86/10.73 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_lt15(vyw28000, vyw29000, cba) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs13(vyw28000, vyw29000, cgh, cha, chb) 24.86/10.73 new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs10(vyw18, vyw13) 24.86/10.73 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.73 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.73 new_esEs21(vyw401, vyw3001, app(ty_Ratio, bec)) -> new_esEs19(vyw401, vyw3001, bec) 24.86/10.73 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, hd) -> new_esEs17(vyw400, vyw3000) 24.86/10.73 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.73 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.73 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(vyw400, vyw3000, dcf, dcg, dch) 24.86/10.73 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bdh), bea)) -> new_esEs7(vyw401, vyw3001, bdh, bea) 24.86/10.73 new_compare26(Nothing, Just(vyw2900), False, ddh) -> LT 24.86/10.73 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.73 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.73 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_lt15(vyw28001, vyw29001, cbc) 24.86/10.73 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, cec), ced)) -> new_esEs7(vyw400, vyw3000, cec, ced) 24.86/10.73 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.73 new_compare17(vyw28000, vyw29000, gf, gg, gh) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.73 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.73 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], he), hd) -> new_esEs13(vyw400, vyw3000, he) 24.86/10.73 new_ltEs17(GT, GT) -> True 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.73 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, cef)) -> new_esEs19(vyw400, vyw3000, cef) 24.86/10.73 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.73 new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs4(vyw400, vyw3000, ddd) 24.86/10.73 new_primEqNat0(Zero, Zero) -> True 24.86/10.73 new_lt13(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_lt10(vyw28001, vyw29001, cbd) 24.86/10.73 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.73 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.73 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.73 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.73 new_esEs9(LT, GT) -> False 24.86/10.73 new_esEs9(GT, LT) -> False 24.86/10.73 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.73 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.73 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, cfb) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.73 new_asAs(False, vyw102) -> False 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, cfb) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.73 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.73 new_esEs29(vyw40, vyw300, ty_Ordering) -> new_esEs9(vyw40, vyw300) 24.86/10.73 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.73 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.73 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, cfb) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.73 new_esEs20(vyw400, vyw3000, app(ty_Ratio, bda)) -> new_esEs19(vyw400, vyw3000, bda) 24.86/10.73 new_lt12(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_lt7(vyw28000, vyw29000, bd, be) 24.86/10.73 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.73 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.73 new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) 24.86/10.73 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.73 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, hd) -> new_esEs16(vyw400, vyw3000) 24.86/10.73 new_ltEs16(False, True) -> True 24.86/10.73 new_compare12(vyw28000, vyw29000, True, bg, bh) -> LT 24.86/10.73 new_esEs20(vyw400, vyw3000, app(ty_[], bce)) -> new_esEs13(vyw400, vyw3000, bce) 24.86/10.73 new_esEs20(vyw400, vyw3000, app(app(ty_@2, bcf), bcg)) -> new_esEs7(vyw400, vyw3000, bcf, bcg) 24.86/10.73 24.86/10.73 The set Q consists of the following terms: 24.86/10.73 24.86/10.73 new_ltEs20(x0, x1, ty_Float) 24.86/10.73 new_esEs22(x0, x1, ty_Int) 24.86/10.73 new_ltEs19(x0, x1, ty_Char) 24.86/10.73 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.73 new_esEs27(x0, x1, ty_Integer) 24.86/10.73 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.73 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.73 new_lt20(x0, x1, ty_Char) 24.86/10.73 new_compare24(x0, x1, True, x2, x3) 24.86/10.73 new_ltEs17(EQ, EQ) 24.86/10.73 new_lt13(x0, x1, ty_Int) 24.86/10.73 new_primPlusNat1(Succ(x0), Zero) 24.86/10.73 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.73 new_esEs30(x0, x1, ty_Bool) 24.86/10.73 new_esEs24(x0, x1, ty_Bool) 24.86/10.73 new_primPlusNat1(Zero, Zero) 24.86/10.73 new_ltEs19(x0, x1, ty_Int) 24.86/10.73 new_lt13(x0, x1, ty_Ordering) 24.86/10.73 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.86/10.73 new_compare25(x0, x1, False, x2, x3) 24.86/10.73 new_esEs22(x0, x1, ty_Ordering) 24.86/10.73 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.73 new_lt10(x0, x1, x2) 24.86/10.73 new_esEs30(x0, x1, ty_Integer) 24.86/10.73 new_esEs23(x0, x1, ty_@0) 24.86/10.73 new_esEs21(x0, x1, ty_Ordering) 24.86/10.73 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.86/10.73 new_compare10(x0, x1, True) 24.86/10.73 new_lt12(x0, x1, ty_Ordering) 24.86/10.73 new_esEs18(True, True) 24.86/10.73 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.73 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.73 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.73 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.73 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.86/10.73 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.73 new_primCompAux0(x0, GT) 24.86/10.73 new_lt20(x0, x1, ty_Int) 24.86/10.73 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.73 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.73 new_esEs24(x0, x1, ty_@0) 24.86/10.73 new_esEs11(x0, x1, ty_Integer) 24.86/10.73 new_esEs8(x0, x1) 24.86/10.73 new_lt20(x0, x1, app(ty_[], x2)) 24.86/10.73 new_esEs23(x0, x1, ty_Bool) 24.86/10.73 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.73 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.73 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.73 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.73 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.73 new_lt16(x0, x1, x2, x3, x4) 24.86/10.73 new_compare8(x0, x1, x2, x3) 24.86/10.73 new_esEs30(x0, x1, ty_@0) 24.86/10.73 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.73 new_ltEs18(x0, x1, ty_@0) 24.86/10.73 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.73 new_esEs11(x0, x1, ty_@0) 24.86/10.73 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.73 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.73 new_esEs12(x0, x1, ty_Integer) 24.86/10.73 new_esEs29(x0, x1, ty_Bool) 24.86/10.73 new_ltEs9(x0, x1) 24.86/10.73 new_esEs23(x0, x1, ty_Char) 24.86/10.73 new_ltEs7(Nothing, Nothing, x0) 24.86/10.73 new_ltEs19(x0, x1, ty_@0) 24.86/10.73 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.73 new_esEs9(LT, LT) 24.86/10.73 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.73 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.73 new_ltEs16(False, False) 24.86/10.73 new_primCmpNat0(Succ(x0), Zero) 24.86/10.73 new_esEs23(x0, x1, ty_Int) 24.86/10.73 new_esEs12(x0, x1, ty_@0) 24.86/10.73 new_compare31(Char(x0), Char(x1)) 24.86/10.73 new_ltEs19(x0, x1, ty_Double) 24.86/10.73 new_lt20(x0, x1, ty_Ordering) 24.86/10.73 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.73 new_esEs29(x0, x1, app(ty_[], x2)) 24.86/10.73 new_ltEs11(x0, x1) 24.86/10.73 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.73 new_esEs9(EQ, GT) 24.86/10.73 new_esEs9(GT, EQ) 24.86/10.73 new_primPlusNat0(Succ(x0), x1) 24.86/10.73 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.73 new_esEs22(x0, x1, ty_@0) 24.86/10.73 new_esEs20(x0, x1, ty_Int) 24.86/10.73 new_esEs14(Char(x0), Char(x1)) 24.86/10.73 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.73 new_compare111(x0, x1, True) 24.86/10.73 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.73 new_esEs26(x0, x1, ty_Double) 24.86/10.73 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.73 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.73 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.86/10.73 new_esEs25(x0, x1, ty_Integer) 24.86/10.73 new_esEs20(x0, x1, app(ty_[], x2)) 24.86/10.73 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.73 new_esEs23(x0, x1, app(ty_[], x2)) 24.86/10.73 new_compare17(x0, x1, x2, x3, x4) 24.86/10.73 new_esEs22(x0, x1, ty_Bool) 24.86/10.73 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.73 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.73 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.73 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.73 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.73 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.73 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.73 new_esEs20(x0, x1, ty_Char) 24.86/10.73 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.73 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.73 new_esEs24(x0, x1, ty_Integer) 24.86/10.73 new_compare110(x0, x1, False, x2, x3, x4) 24.86/10.73 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.73 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.86/10.73 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.73 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.73 new_ltEs7(Nothing, Just(x0), x1) 24.86/10.73 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.73 new_esEs25(x0, x1, ty_Ordering) 24.86/10.73 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.73 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.73 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.73 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.73 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.73 new_esEs29(x0, x1, ty_Integer) 24.86/10.73 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.73 new_esEs29(x0, x1, ty_Ordering) 24.86/10.73 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.73 new_esEs22(x0, x1, ty_Char) 24.86/10.73 new_esEs22(x0, x1, ty_Double) 24.86/10.73 new_esEs20(x0, x1, ty_Double) 24.86/10.73 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.73 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.73 new_esEs12(x0, x1, ty_Bool) 24.86/10.73 new_lt13(x0, x1, ty_Double) 24.86/10.73 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.73 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.86/10.73 new_lt13(x0, x1, ty_Char) 24.86/10.73 new_compare29(x0, x1, False) 24.86/10.73 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.73 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.73 new_compare24(x0, x1, False, x2, x3) 24.86/10.73 new_esEs29(x0, x1, ty_Double) 24.86/10.73 new_esEs22(x0, x1, ty_Integer) 24.86/10.73 new_ltEs20(x0, x1, ty_Bool) 24.86/10.73 new_esEs30(x0, x1, ty_Ordering) 24.86/10.73 new_esEs26(x0, x1, ty_Int) 24.86/10.73 new_esEs24(x0, x1, ty_Float) 24.86/10.73 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.73 new_compare16(x0, x1, x2, x3) 24.86/10.73 new_compare10(x0, x1, False) 24.86/10.73 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.86/10.73 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.73 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.73 new_lt13(x0, x1, ty_Bool) 24.86/10.73 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.73 new_esEs11(x0, x1, ty_Double) 24.86/10.73 new_lt9(x0, x1) 24.86/10.73 new_esEs30(x0, x1, ty_Float) 24.86/10.73 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.73 new_esEs26(x0, x1, ty_Char) 24.86/10.73 new_lt13(x0, x1, ty_@0) 24.86/10.73 new_compare26(Just(x0), Nothing, False, x1) 24.86/10.73 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.73 new_esEs21(x0, x1, ty_@0) 24.86/10.73 new_lt12(x0, x1, ty_@0) 24.86/10.73 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.86/10.73 new_ltEs18(x0, x1, ty_Ordering) 24.86/10.73 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.73 new_esEs23(x0, x1, ty_Ordering) 24.86/10.73 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.73 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.73 new_lt14(x0, x1) 24.86/10.73 new_esEs18(False, True) 24.86/10.73 new_esEs18(True, False) 24.86/10.73 new_esEs30(x0, x1, ty_Char) 24.86/10.73 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.86/10.73 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.73 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_lt13(x0, x1, ty_Integer) 24.86/10.74 new_compare0([], :(x0, x1), x2) 24.86/10.74 new_ltEs20(x0, x1, ty_Integer) 24.86/10.74 new_ltEs18(x0, x1, ty_Float) 24.86/10.74 new_esEs26(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.74 new_esEs12(x0, x1, ty_Ordering) 24.86/10.74 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_primCompAux0(x0, LT) 24.86/10.74 new_esEs24(x0, x1, ty_Int) 24.86/10.74 new_esEs26(x0, x1, ty_Float) 24.86/10.74 new_lt8(x0, x1) 24.86/10.74 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.86/10.74 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.74 new_esEs30(x0, x1, ty_Int) 24.86/10.74 new_ltEs18(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs4(Nothing, Just(x0), x1) 24.86/10.74 new_primEqNat0(Zero, Succ(x0)) 24.86/10.74 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.86/10.74 new_compare28(x0, x1, True, x2, x3, x4) 24.86/10.74 new_esEs4(Nothing, Nothing, x0) 24.86/10.74 new_ltEs16(True, False) 24.86/10.74 new_esEs24(x0, x1, ty_Char) 24.86/10.74 new_ltEs16(False, True) 24.86/10.74 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.74 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.86/10.74 new_pePe(True, x0) 24.86/10.74 new_ltEs17(LT, LT) 24.86/10.74 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.86/10.74 new_ltEs18(x0, x1, ty_Integer) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.74 new_lt20(x0, x1, ty_Double) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.74 new_lt20(x0, x1, ty_@0) 24.86/10.74 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare30(x0, x1, ty_@0) 24.86/10.74 new_compare11(x0, x1, False, x2, x3) 24.86/10.74 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.86/10.74 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.86/10.74 new_compare26(Nothing, Nothing, False, x0) 24.86/10.74 new_compare30(x0, x1, ty_Double) 24.86/10.74 new_ltEs18(x0, x1, ty_Int) 24.86/10.74 new_esEs23(x0, x1, ty_Integer) 24.86/10.74 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.86/10.74 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.86/10.74 new_compare30(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.74 new_esEs12(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.86/10.74 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.86/10.74 new_asAs(False, x0) 24.86/10.74 new_ltEs18(x0, x1, ty_Char) 24.86/10.74 new_lt18(x0, x1, x2, x3) 24.86/10.74 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_ltEs17(GT, GT) 24.86/10.74 new_sr0(Integer(x0), Integer(x1)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.74 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_ltEs20(x0, x1, ty_Int) 24.86/10.74 new_ltEs18(x0, x1, ty_Bool) 24.86/10.74 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.74 new_ltEs20(x0, x1, app(ty_[], x2)) 24.86/10.74 new_primCmpNat0(Zero, Succ(x0)) 24.86/10.74 new_esEs10(@0, @0) 24.86/10.74 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_primPlusNat0(Zero, x0) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.74 new_esEs25(x0, x1, ty_Double) 24.86/10.74 new_esEs25(x0, x1, ty_@0) 24.86/10.74 new_lt12(x0, x1, ty_Double) 24.86/10.74 new_lt13(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs27(x0, x1, ty_Int) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.74 new_esEs29(x0, x1, ty_@0) 24.86/10.74 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.74 new_ltEs20(x0, x1, ty_Char) 24.86/10.74 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare18(x0, x1) 24.86/10.74 new_ltEs17(LT, EQ) 24.86/10.74 new_ltEs17(EQ, LT) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.74 new_esEs21(x0, x1, ty_Double) 24.86/10.74 new_primCompAux1(x0, x1, x2, x3) 24.86/10.74 new_primMulNat0(Succ(x0), Zero) 24.86/10.74 new_primPlusNat1(Succ(x0), Succ(x1)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.74 new_esEs13([], :(x0, x1), x2) 24.86/10.74 new_primPlusNat1(Zero, Succ(x0)) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.74 new_compare0(:(x0, x1), :(x2, x3), x4) 24.86/10.74 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_compare29(x0, x1, True) 24.86/10.74 new_ltEs20(x0, x1, ty_Double) 24.86/10.74 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_esEs9(EQ, EQ) 24.86/10.74 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs26(x0, x1, ty_Integer) 24.86/10.74 new_compare30(x0, x1, ty_Char) 24.86/10.74 new_compare27(x0, x1, True) 24.86/10.74 new_compare0(:(x0, x1), [], x2) 24.86/10.74 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.74 new_esEs21(x0, x1, ty_Float) 24.86/10.74 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.86/10.74 new_lt13(x0, x1, ty_Float) 24.86/10.74 new_primEqNat0(Succ(x0), Succ(x1)) 24.86/10.74 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.86/10.74 new_esEs4(Just(x0), Nothing, x1) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Float) 24.86/10.74 new_primMulNat0(Zero, Zero) 24.86/10.74 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_compare6(Integer(x0), Integer(x1)) 24.86/10.74 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_primCompAux0(x0, EQ) 24.86/10.74 new_esEs17(Integer(x0), Integer(x1)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.74 new_ltEs20(x0, x1, ty_Ordering) 24.86/10.74 new_compare14(x0, x1) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.74 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.86/10.74 new_esEs22(x0, x1, ty_Float) 24.86/10.74 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.86/10.74 new_esEs20(x0, x1, ty_Float) 24.86/10.74 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_lt12(x0, x1, ty_Float) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.74 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_ltEs12(x0, x1, x2) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.74 new_primMulNat0(Succ(x0), Succ(x1)) 24.86/10.74 new_ltEs8(x0, x1, x2) 24.86/10.74 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.74 new_esEs20(x0, x1, ty_Integer) 24.86/10.74 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_lt12(x0, x1, ty_Integer) 24.86/10.74 new_compare12(x0, x1, False, x2, x3) 24.86/10.74 new_not(True) 24.86/10.74 new_esEs26(x0, x1, ty_@0) 24.86/10.74 new_compare30(x0, x1, ty_Bool) 24.86/10.74 new_lt19(x0, x1) 24.86/10.74 new_lt20(x0, x1, ty_Float) 24.86/10.74 new_primEqNat0(Succ(x0), Zero) 24.86/10.74 new_primMulNat0(Zero, Succ(x0)) 24.86/10.74 new_ltEs6(x0, x1) 24.86/10.74 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.74 new_compare30(x0, x1, ty_Ordering) 24.86/10.74 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs12(x0, x1, ty_Double) 24.86/10.74 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.74 new_compare7(x0, x1, x2) 24.86/10.74 new_compare26(x0, x1, True, x2) 24.86/10.74 new_compare13(x0, x1, False, x2) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.74 new_esEs18(False, False) 24.86/10.74 new_asAs(True, x0) 24.86/10.74 new_ltEs14(x0, x1) 24.86/10.74 new_esEs9(LT, EQ) 24.86/10.74 new_esEs9(EQ, LT) 24.86/10.74 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs9(GT, GT) 24.86/10.74 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.74 new_esEs20(x0, x1, ty_Bool) 24.86/10.74 new_sr(x0, x1) 24.86/10.74 new_esEs23(x0, x1, ty_Float) 24.86/10.74 new_esEs28(x0, x1, ty_Int) 24.86/10.74 new_esEs26(x0, x1, ty_Bool) 24.86/10.74 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.74 new_lt15(x0, x1, x2) 24.86/10.74 new_primMulInt(Pos(x0), Pos(x1)) 24.86/10.74 new_ltEs19(x0, x1, ty_Float) 24.86/10.74 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs9(LT, GT) 24.86/10.74 new_esEs9(GT, LT) 24.86/10.74 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.86/10.74 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_compare30(x0, x1, ty_Integer) 24.86/10.74 new_esEs29(x0, x1, ty_Float) 24.86/10.74 new_lt5(x0, x1) 24.86/10.74 new_esEs11(x0, x1, ty_Ordering) 24.86/10.74 new_esEs24(x0, x1, ty_Ordering) 24.86/10.74 new_esEs21(x0, x1, ty_Bool) 24.86/10.74 new_esEs11(x0, x1, ty_Float) 24.86/10.74 new_esEs12(x0, x1, ty_Char) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.86/10.74 new_lt6(x0, x1) 24.86/10.74 new_compare25(x0, x1, True, x2, x3) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.86/10.74 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.74 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.74 new_ltEs17(LT, GT) 24.86/10.74 new_ltEs17(GT, LT) 24.86/10.74 new_compare9(x0, x1) 24.86/10.74 new_ltEs18(x0, x1, ty_Double) 24.86/10.74 new_esEs12(x0, x1, ty_Int) 24.86/10.74 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_@0) 24.86/10.74 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.86/10.74 new_ltEs20(x0, x1, ty_@0) 24.86/10.74 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_lt11(x0, x1) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.86/10.74 new_primMulInt(Neg(x0), Neg(x1)) 24.86/10.74 new_esEs22(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs20(x0, x1, ty_@0) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.74 new_ltEs7(Just(x0), Nothing, x1) 24.86/10.74 new_esEs25(x0, x1, ty_Float) 24.86/10.74 new_primMulInt(Pos(x0), Neg(x1)) 24.86/10.74 new_primMulInt(Neg(x0), Pos(x1)) 24.86/10.74 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.74 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.86/10.74 new_primCmpNat0(Succ(x0), Succ(x1)) 24.86/10.74 new_esEs11(x0, x1, ty_Int) 24.86/10.74 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.86/10.74 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.86/10.74 new_compare0([], [], x0) 24.86/10.74 new_esEs30(x0, x1, ty_Double) 24.86/10.74 new_esEs21(x0, x1, ty_Integer) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.86/10.74 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.74 new_esEs12(x0, x1, ty_Float) 24.86/10.74 new_compare27(x0, x1, False) 24.86/10.74 new_lt20(x0, x1, ty_Integer) 24.86/10.74 new_esEs24(x0, x1, ty_Double) 24.86/10.74 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs26(x0, x1, ty_Ordering) 24.86/10.74 new_lt17(x0, x1) 24.86/10.74 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.74 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.86/10.74 new_ltEs19(x0, x1, ty_Bool) 24.86/10.74 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.86/10.74 new_esEs23(x0, x1, ty_Double) 24.86/10.74 new_compare30(x0, x1, ty_Float) 24.86/10.74 new_primEqNat0(Zero, Zero) 24.86/10.74 new_esEs25(x0, x1, ty_Int) 24.86/10.74 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.74 new_compare111(x0, x1, False) 24.86/10.74 new_ltEs10(x0, x1) 24.86/10.74 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.86/10.74 new_not(False) 24.86/10.74 new_lt12(x0, x1, ty_Int) 24.86/10.74 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_compare13(x0, x1, True, x2) 24.86/10.74 new_esEs13(:(x0, x1), [], x2) 24.86/10.74 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.74 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.86/10.74 new_ltEs16(True, True) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.74 new_esEs11(x0, x1, ty_Char) 24.86/10.74 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.74 new_lt7(x0, x1, x2, x3) 24.86/10.74 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.74 new_ltEs17(EQ, GT) 24.86/10.74 new_ltEs17(GT, EQ) 24.86/10.74 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.74 new_esEs28(x0, x1, ty_Integer) 24.86/10.74 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs29(x0, x1, ty_Char) 24.86/10.74 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs25(x0, x1, ty_Bool) 24.86/10.74 new_esEs20(x0, x1, ty_Ordering) 24.86/10.74 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.74 new_compare11(x0, x1, True, x2, x3) 24.86/10.74 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_compare12(x0, x1, True, x2, x3) 24.86/10.74 new_compare30(x0, x1, ty_Int) 24.86/10.74 new_esEs11(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs29(x0, x1, ty_Int) 24.86/10.74 new_ltEs15(x0, x1) 24.86/10.74 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs30(x0, x1, app(ty_[], x2)) 24.86/10.74 new_lt12(x0, x1, ty_Bool) 24.86/10.74 new_ltEs19(x0, x1, app(ty_[], x2)) 24.86/10.74 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.86/10.74 new_esEs25(x0, x1, ty_Char) 24.86/10.74 new_esEs21(x0, x1, ty_Int) 24.86/10.74 new_ltEs19(x0, x1, ty_Ordering) 24.86/10.74 new_lt4(x0, x1, x2) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.74 new_esEs13([], [], x0) 24.86/10.74 new_ltEs19(x0, x1, ty_Integer) 24.86/10.74 new_pePe(False, x0) 24.86/10.74 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.74 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.74 new_lt12(x0, x1, ty_Char) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.74 new_compare32(@0, @0) 24.86/10.74 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_primCmpNat0(Zero, Zero) 24.86/10.74 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs21(x0, x1, ty_Char) 24.86/10.74 new_esEs11(x0, x1, ty_Bool) 24.86/10.74 new_lt20(x0, x1, ty_Bool) 24.86/10.74 24.86/10.74 We have to consider all minimal (P,Q,R)-chains. 24.86/10.74 ---------------------------------------- 24.86/10.74 24.86/10.74 (21) DependencyGraphProof (EQUIVALENT) 24.86/10.74 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 24.86/10.74 ---------------------------------------- 24.86/10.74 24.86/10.74 (22) 24.86/10.74 Complex Obligation (AND) 24.86/10.74 24.86/10.74 ---------------------------------------- 24.86/10.74 24.86/10.74 (23) 24.86/10.74 Obligation: 24.86/10.74 Q DP problem: 24.86/10.74 The TRS P consists of the following rules: 24.86/10.74 24.86/10.74 new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw33, Nothing, h, ba) 24.86/10.74 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Just(vyw300), False, ba), LT), h, ba) 24.86/10.74 new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, False, h, ba) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Just(vyw300), False, ba), GT), h, ba) 24.86/10.74 new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw34, Nothing, h, ba) 24.86/10.74 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupFM1(vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Nothing, True, ba), GT), h, ba) 24.86/10.74 new_lookupFM1(vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw34, Nothing, h, ba) 24.86/10.74 24.86/10.74 The TRS R consists of the following rules: 24.86/10.74 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.74 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.74 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.74 new_ltEs17(LT, EQ) -> True 24.86/10.74 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs19(vyw400, vyw3000, dde) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.74 new_pePe(True, vyw110) -> True 24.86/10.74 new_compare12(vyw28000, vyw29000, False, bg, bh) -> GT 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw400, vyw3000, ee, ef) 24.86/10.74 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.74 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, cfb) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.74 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.74 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.74 new_esEs18(True, True) -> True 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(ty_[], daa)) -> new_esEs13(vyw28000, vyw29000, daa) 24.86/10.74 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.74 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.74 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.74 new_esEs29(vyw40, vyw300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vyw40, vyw300, bbg, bbh, bca) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], ceb)) -> new_esEs13(vyw400, vyw3000, ceb) 24.86/10.74 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.74 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(ty_Ratio, eh)) -> new_esEs19(vyw400, vyw3000, eh) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, cfd), cfb) -> new_ltEs7(vyw28000, vyw29000, cfd) 24.86/10.74 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.74 new_esEs9(LT, EQ) -> False 24.86/10.74 new_esEs9(EQ, LT) -> False 24.86/10.74 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.74 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bga) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bga), bga) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.74 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.74 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw400, vyw3000, ddb, ddc) 24.86/10.74 new_compare8(vyw28000, vyw29000, bd, be) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Maybe, cgg)) -> new_ltEs7(vyw28000, vyw29000, cgg) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.74 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.74 new_primCompAux0(vyw116, GT) -> GT 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.74 new_ltEs5(Left(vyw28000), Right(vyw29000), cgd, cfb) -> True 24.86/10.74 new_esEs21(vyw401, vyw3001, app(ty_[], bdg)) -> new_esEs13(vyw401, vyw3001, bdg) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.74 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, cdd), cde)) -> new_ltEs4(vyw28002, vyw29002, cdd, cde) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, hd) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.74 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw400, vyw3000, bcb, bcc, bcd) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(ty_Maybe, bfd)) -> new_esEs4(vyw402, vyw3002, bfd) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, hd) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.74 new_primCompAux0(vyw116, LT) -> LT 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.74 new_ltEs17(LT, GT) -> True 24.86/10.74 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.74 new_not(True) -> False 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ccf)) -> new_ltEs7(vyw28002, vyw29002, ccf) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.74 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(ty_Maybe, gb)) -> new_esEs4(vyw401, vyw3001, gb) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.74 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bgd)) -> new_compare7(vyw28000, vyw29000, bgd) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(ty_Ratio, bfe)) -> new_esEs19(vyw402, vyw3002, bfe) 24.86/10.74 new_ltEs17(EQ, GT) -> True 24.86/10.74 new_esEs11(vyw400, vyw3000, app(ty_Maybe, eg)) -> new_esEs4(vyw400, vyw3000, eg) 24.86/10.74 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dea) -> new_asAs(new_esEs27(vyw400, vyw3000, dea), new_esEs28(vyw401, vyw3001, dea)) 24.86/10.74 new_esEs29(vyw40, vyw300, app(ty_[], dce)) -> new_esEs13(vyw40, vyw300, dce) 24.86/10.74 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw28000, vyw29000, cg, da, db) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs13(vyw28001, vyw29001, dbf, dbg, dbh) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.74 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.74 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.74 new_lt20(vyw28000, vyw29000, app(ty_[], daa)) -> new_lt4(vyw28000, vyw29000, daa) 24.86/10.74 new_esEs13([], [], dce) -> True 24.86/10.74 new_ltEs7(Nothing, Just(vyw29000), cc) -> True 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, hd) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_compare26(Nothing, Nothing, False, ddh) -> LT 24.86/10.74 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.74 new_ltEs17(LT, LT) -> True 24.86/10.74 new_esEs22(vyw402, vyw3002, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw402, vyw3002, bfb, bfc) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vyw28000, vyw29000, dad, dae, daf) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, cfh), cga), cfb) -> new_ltEs5(vyw28000, vyw29000, cfh, cga) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.74 new_compare13(vyw95, vyw96, False, ca) -> GT 24.86/10.74 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(ty_Ratio, gc)) -> new_esEs19(vyw401, vyw3001, gc) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Ratio, cgf)) -> new_ltEs12(vyw28000, vyw29000, cgf) 24.86/10.74 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(vyw2800, vyw2900, caf, cag, cah) 24.86/10.74 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, chg), chh)) -> new_ltEs4(vyw2800, vyw2900, chg, chh) 24.86/10.74 new_lt18(vyw28000, vyw29000, bg, bh) -> new_esEs9(new_compare16(vyw28000, vyw29000, bg, bh), LT) 24.86/10.74 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.74 new_esEs30(vyw18, vyw13, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs5(vyw18, vyw13, bhd, bhe, bhf) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.74 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.74 new_compare28(vyw28000, vyw29000, False, gf, gg, gh) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(ty_[], ed)) -> new_esEs13(vyw400, vyw3000, ed) 24.86/10.74 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ha), hb), hc), hd) -> new_esEs5(vyw400, vyw3000, ha, hb, hc) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, cfc), cfb) -> new_ltEs12(vyw28000, vyw29000, cfc) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, cc)) -> new_ltEs7(vyw2800, vyw2900, cc) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, de), df)) -> new_ltEs4(vyw28000, vyw29000, de, df) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, dcc), dcd)) -> new_ltEs4(vyw28001, vyw29001, dcc, dcd) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(ty_[], cbb)) -> new_esEs13(vyw28001, vyw29001, cbb) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(vyw401, vyw3001, bdd, bde, bdf) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.74 new_compare110(vyw28000, vyw29000, False, gf, gg, gh) -> GT 24.86/10.74 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 24.86/10.74 new_pePe(False, vyw110) -> vyw110 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.74 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.74 new_compare25(vyw28000, vyw29000, True, bg, bh) -> EQ 24.86/10.74 new_ltEs12(vyw2800, vyw2900, bfh) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, bfh), GT)) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Integer) -> new_esEs17(vyw40, vyw300) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(app(ty_Either, bff), bfg)) -> new_esEs6(vyw402, vyw3002, bff, bfg) 24.86/10.74 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vyw28000, vyw29000, gf, gg, gh) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_esEs19(vyw28000, vyw29000, dab) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Char) -> new_esEs14(vyw40, vyw300) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, cfb) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_@2, che), chf)) -> new_ltEs4(vyw28000, vyw29000, che, chf) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.74 new_compare11(vyw28000, vyw29000, False, bd, be) -> GT 24.86/10.74 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.74 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw401, vyw3001, fh, ga) 24.86/10.74 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dg, dh) -> new_asAs(new_esEs11(vyw400, vyw3000, dg), new_esEs12(vyw401, vyw3001, dh)) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(ty_[], dda)) -> new_esEs13(vyw400, vyw3000, dda) 24.86/10.74 new_compare24(vyw28000, vyw29000, False, bd, be) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw400, vyw3000, cdg, cdh, cea) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs13(vyw28002, vyw29002, ccg, cch, cda) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.74 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs5(vyw400, vyw3000, ea, eb, ec) 24.86/10.74 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.74 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.74 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, cfb) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw28001, vyw29001, cbh, cca) 24.86/10.74 new_esEs13(:(vyw400, vyw401), [], dce) -> False 24.86/10.74 new_esEs13([], :(vyw3000, vyw3001), dce) -> False 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, bab), bac), hd) -> new_esEs6(vyw400, vyw3000, bab, bac) 24.86/10.74 new_primCompAux1(vyw28000, vyw29000, vyw111, bga) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, bga)) 24.86/10.74 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.74 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.74 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.74 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), caf, cag, cah) -> new_pePe(new_lt12(vyw28000, vyw29000, caf), new_asAs(new_esEs23(vyw28000, vyw29000, caf), new_pePe(new_lt13(vyw28001, vyw29001, cag), new_asAs(new_esEs24(vyw28001, vyw29001, cag), new_ltEs18(vyw28002, vyw29002, cah))))) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vyw400, vyw3000, bae, baf, bag) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(vyw28000, vyw29000, gf, gg, gh) 24.86/10.74 new_compare26(vyw280, vyw290, True, ddh) -> EQ 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.74 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.74 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_[], bah)) -> new_esEs13(vyw400, vyw3000, bah) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, hf), hg), hd) -> new_esEs7(vyw400, vyw3000, hf, hg) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, cfe), cff), cfg), cfb) -> new_ltEs13(vyw28000, vyw29000, cfe, cff, cfg) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.74 new_lt12(vyw28000, vyw29000, app(ty_[], bf)) -> new_lt4(vyw28000, vyw29000, bf) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.74 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(ty_Maybe, bch)) -> new_esEs4(vyw400, vyw3000, bch) 24.86/10.74 new_compare30(vyw28000, vyw29000, app(ty_Ratio, bgc)) -> new_compare19(vyw28000, vyw29000, bgc) 24.86/10.74 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.74 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.74 new_esEs9(LT, LT) -> True 24.86/10.74 new_lt13(vyw28001, vyw29001, app(ty_[], cbb)) -> new_lt4(vyw28001, vyw29001, cbb) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(app(ty_Either, fa), fb)) -> new_esEs6(vyw400, vyw3000, fa, fb) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Bool) -> new_esEs18(vyw40, vyw300) 24.86/10.74 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bbg, bbh, bca) -> new_asAs(new_esEs20(vyw400, vyw3000, bbg), new_asAs(new_esEs21(vyw401, vyw3001, bbh), new_esEs22(vyw402, vyw3002, bca))) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs17(vyw18, vyw13) 24.86/10.74 new_compare25(vyw28000, vyw29000, False, bg, bh) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.74 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(ty_Maybe, beb)) -> new_esEs4(vyw401, vyw3001, beb) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(app(ty_Either, gd), ge)) -> new_esEs6(vyw401, vyw3001, gd, ge) 24.86/10.74 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.74 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, cfb) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyw28000, vyw29000, dba, dbb) 24.86/10.74 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_lt10(vyw28000, vyw29000, dac) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, hd) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs18(vyw18, vyw13) 24.86/10.74 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), chg, chh) -> new_pePe(new_lt20(vyw28000, vyw29000, chg), new_asAs(new_esEs25(vyw28000, vyw29000, chg), new_ltEs19(vyw28001, vyw29001, chh))) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_@2, bba), bbb)) -> new_esEs7(vyw400, vyw3000, bba, bbb) 24.86/10.74 new_compare16(vyw28000, vyw29000, bg, bh) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.74 new_ltEs17(EQ, EQ) -> True 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, cee)) -> new_esEs4(vyw400, vyw3000, cee) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_esEs6(vyw28000, vyw29000, bg, bh) 24.86/10.74 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(app(ty_Either, bed), bee)) -> new_esEs6(vyw401, vyw3001, bed, bee) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, dca), dcb)) -> new_ltEs5(vyw28001, vyw29001, dca, dcb) 24.86/10.74 new_ltEs17(GT, LT) -> False 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.74 new_ltEs17(EQ, LT) -> False 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs8(vyw18, vyw13) 24.86/10.74 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.74 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.74 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.74 new_esEs30(vyw18, vyw13, app(ty_Maybe, cab)) -> new_esEs4(vyw18, vyw13, cab) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_esEs4(vyw28001, vyw29001, cbd) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_Either, bbe), bbf)) -> new_esEs6(vyw400, vyw3000, bbe, bbf) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(ty_[], bf)) -> new_esEs13(vyw28000, vyw29000, bf) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, cgb), cgc), cfb) -> new_ltEs4(vyw28000, vyw29000, cgb, cgc) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.74 new_lt7(vyw28000, vyw29000, bd, be) -> new_esEs9(new_compare8(vyw28000, vyw29000, bd, be), LT) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(vyw402, vyw3002, bef, beg, beh) 24.86/10.74 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.74 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw400, vyw3000, ceg, ceh) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, dc), dd)) -> new_ltEs5(vyw28000, vyw29000, dc, dd) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, hd) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_esEs19(vyw28001, vyw29001, cbc) 24.86/10.74 new_compare0([], :(vyw29000, vyw29001), bga) -> LT 24.86/10.74 new_asAs(True, vyw102) -> vyw102 24.86/10.74 new_ltEs5(Right(vyw28000), Left(vyw29000), cgd, cfb) -> False 24.86/10.74 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(vyw401, vyw3001, fc, fd, ff) 24.86/10.74 new_ltEs8(vyw2800, vyw2900, bga) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, bga), GT)) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.74 new_compare26(Just(vyw2800), Just(vyw2900), False, ddh) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, ddh), ddh) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, baa), hd) -> new_esEs19(vyw400, vyw3000, baa) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_lt7(vyw28000, vyw29000, dba, dbb) 24.86/10.74 new_esEs30(vyw18, vyw13, app(ty_Ratio, cac)) -> new_esEs19(vyw18, vyw13, cac) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.74 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Left(vyw400), Right(vyw3000), bad, hd) -> False 24.86/10.74 new_esEs6(Right(vyw400), Left(vyw3000), bad, hd) -> False 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_ltEs16(True, False) -> False 24.86/10.74 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, cgd), cfb)) -> new_ltEs5(vyw2800, vyw2900, cgd, cfb) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs18(False, False) -> True 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.74 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.74 new_compare13(vyw95, vyw96, True, ca) -> LT 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.74 new_compare24(vyw28000, vyw29000, True, bd, be) -> EQ 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_esEs7(vyw28001, vyw29001, ccb, ccc) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.74 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.74 new_esEs30(vyw18, vyw13, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw18, vyw13, bhh, caa) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(ty_[], ccd)) -> new_ltEs8(vyw28002, vyw29002, ccd) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_Either, chc), chd)) -> new_ltEs5(vyw28000, vyw29000, chc, chd) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Ratio, bbd)) -> new_esEs19(vyw400, vyw3000, bbd) 24.86/10.74 new_compare0([], [], bga) -> EQ 24.86/10.74 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.74 new_ltEs7(Nothing, Nothing, cc) -> True 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.74 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.74 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.74 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(ty_[], fg)) -> new_esEs13(vyw401, vyw3001, fg) 24.86/10.74 new_lt12(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_lt18(vyw28000, vyw29000, bg, bh) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) 24.86/10.74 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hd) -> new_esEs4(vyw400, vyw3000, hh) 24.86/10.74 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(ty_[], dbc)) -> new_ltEs8(vyw28001, vyw29001, dbc) 24.86/10.74 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs6(vyw400, vyw3000, ddf, ddg) 24.86/10.74 new_ltEs7(Just(vyw28000), Nothing, cc) -> False 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_esEs7(vyw28000, vyw29000, bd, be) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_compare28(vyw28000, vyw29000, True, gf, gg, gh) -> EQ 24.86/10.74 new_lt15(vyw28000, vyw29000, cba) -> new_esEs9(new_compare19(vyw28000, vyw29000, cba), LT) 24.86/10.74 new_esEs4(Nothing, Nothing, cdf) -> True 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.74 new_esEs4(Nothing, Just(vyw3000), cdf) -> False 24.86/10.74 new_esEs4(Just(vyw400), Nothing, cdf) -> False 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_lt15(vyw28000, vyw29000, dab) 24.86/10.74 new_lt13(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_lt18(vyw28001, vyw29001, cbh, cca) 24.86/10.74 new_esEs29(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs19(vyw40, vyw300, dea) 24.86/10.74 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.74 new_compare32(@0, @0) -> EQ 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Maybe, bbc)) -> new_esEs4(vyw400, vyw3000, bbc) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_esEs6(vyw28000, vyw29000, dag, dah) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], cfa), cfb) -> new_ltEs8(vyw28000, vyw29000, cfa) 24.86/10.74 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.74 new_esEs9(EQ, EQ) -> True 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(ty_[], bga)) -> new_ltEs8(vyw2800, vyw2900, bga) 24.86/10.74 new_compare26(Just(vyw2800), Nothing, False, ddh) -> GT 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, dbe)) -> new_ltEs7(vyw28001, vyw29001, dbe) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, bfh)) -> new_ltEs12(vyw2800, vyw2900, bfh) 24.86/10.74 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.74 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.74 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cd)) -> new_ltEs8(vyw28000, vyw29000, cd) 24.86/10.74 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(vyw400, vyw3000, bdb, bdc) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.74 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, cdb), cdc)) -> new_ltEs5(vyw28002, vyw29002, cdb, cdc) 24.86/10.74 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.74 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.74 new_compare30(vyw28000, vyw29000, app(ty_[], bgb)) -> new_compare0(vyw28000, vyw29000, bgb) 24.86/10.74 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_esEs19(vyw28000, vyw29000, cba) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, ce)) -> new_ltEs12(vyw28000, vyw29000, ce) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, dbd)) -> new_ltEs12(vyw28001, vyw29001, dbd) 24.86/10.74 new_esEs29(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs4(vyw40, vyw300, cdf) 24.86/10.74 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.74 new_lt4(vyw28000, vyw29000, bf) -> new_esEs9(new_compare0(vyw28000, vyw29000, bf), LT) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.74 new_compare110(vyw28000, vyw29000, True, gf, gg, gh) -> LT 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cf)) -> new_ltEs7(vyw28000, vyw29000, cf) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.74 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, cfb) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_lt16(vyw28000, vyw29000, dad, dae, daf) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.74 new_not(False) -> True 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, hd) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_[], cge)) -> new_ltEs8(vyw28000, vyw29000, cge) 24.86/10.74 new_lt16(vyw28000, vyw29000, gf, gg, gh) -> new_esEs9(new_compare17(vyw28000, vyw29000, gf, gg, gh), LT) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.74 new_esEs9(GT, GT) -> True 24.86/10.74 new_compare0(:(vyw28000, vyw28001), [], bga) -> GT 24.86/10.74 new_esEs18(False, True) -> False 24.86/10.74 new_esEs18(True, False) -> False 24.86/10.74 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.74 new_esEs29(vyw40, vyw300, app(app(ty_Either, bad), hd)) -> new_esEs6(vyw40, vyw300, bad, hd) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(ty_[], bfa)) -> new_esEs13(vyw402, vyw3002, bfa) 24.86/10.74 new_esEs10(@0, @0) -> True 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cce)) -> new_ltEs12(vyw28002, vyw29002, cce) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.74 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bgh), bha)) -> new_compare16(vyw28000, vyw29000, bgh, bha) 24.86/10.74 new_lt13(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_lt7(vyw28001, vyw29001, ccb, ccc) 24.86/10.74 new_esEs29(vyw40, vyw300, app(app(ty_@2, dg), dh)) -> new_esEs7(vyw40, vyw300, dg, dh) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.74 new_esEs9(EQ, GT) -> False 24.86/10.74 new_esEs9(GT, EQ) -> False 24.86/10.74 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.74 new_ltEs16(False, False) -> True 24.86/10.74 new_compare11(vyw28000, vyw29000, True, bd, be) -> LT 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.74 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) 24.86/10.74 new_esEs30(vyw18, vyw13, app(app(ty_Either, cad), cae)) -> new_esEs6(vyw18, vyw13, cad, cae) 24.86/10.74 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_lt18(vyw28000, vyw29000, dag, dah) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.74 new_esEs30(vyw18, vyw13, app(ty_[], bhg)) -> new_esEs13(vyw18, vyw13, bhg) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.74 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.74 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.74 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.74 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare17(vyw28000, vyw29000, bge, bgf, bgg) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.74 new_ltEs17(GT, EQ) -> False 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_esEs4(vyw28000, vyw29000, dac) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.74 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bhb), bhc)) -> new_compare8(vyw28000, vyw29000, bhb, bhc) 24.86/10.74 new_ltEs16(True, True) -> True 24.86/10.74 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_lt15(vyw28000, vyw29000, cba) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs13(vyw28000, vyw29000, cgh, cha, chb) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs10(vyw18, vyw13) 24.86/10.74 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(ty_Ratio, bec)) -> new_esEs19(vyw401, vyw3001, bec) 24.86/10.74 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, hd) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(vyw400, vyw3000, dcf, dcg, dch) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bdh), bea)) -> new_esEs7(vyw401, vyw3001, bdh, bea) 24.86/10.74 new_compare26(Nothing, Just(vyw2900), False, ddh) -> LT 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.74 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_lt15(vyw28001, vyw29001, cbc) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, cec), ced)) -> new_esEs7(vyw400, vyw3000, cec, ced) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.74 new_compare17(vyw28000, vyw29000, gf, gg, gh) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.74 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.74 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], he), hd) -> new_esEs13(vyw400, vyw3000, he) 24.86/10.74 new_ltEs17(GT, GT) -> True 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, cef)) -> new_esEs19(vyw400, vyw3000, cef) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs4(vyw400, vyw3000, ddd) 24.86/10.74 new_primEqNat0(Zero, Zero) -> True 24.86/10.74 new_lt13(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_lt10(vyw28001, vyw29001, cbd) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_esEs9(LT, GT) -> False 24.86/10.74 new_esEs9(GT, LT) -> False 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, cfb) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.74 new_asAs(False, vyw102) -> False 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, cfb) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Ordering) -> new_esEs9(vyw40, vyw300) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, cfb) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(ty_Ratio, bda)) -> new_esEs19(vyw400, vyw3000, bda) 24.86/10.74 new_lt12(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_lt7(vyw28000, vyw29000, bd, be) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.74 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, hd) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_ltEs16(False, True) -> True 24.86/10.74 new_compare12(vyw28000, vyw29000, True, bg, bh) -> LT 24.86/10.74 new_esEs20(vyw400, vyw3000, app(ty_[], bce)) -> new_esEs13(vyw400, vyw3000, bce) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(app(ty_@2, bcf), bcg)) -> new_esEs7(vyw400, vyw3000, bcf, bcg) 24.86/10.74 24.86/10.74 The set Q consists of the following terms: 24.86/10.74 24.86/10.74 new_ltEs20(x0, x1, ty_Float) 24.86/10.74 new_esEs22(x0, x1, ty_Int) 24.86/10.74 new_ltEs19(x0, x1, ty_Char) 24.86/10.74 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs27(x0, x1, ty_Integer) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.74 new_lt20(x0, x1, ty_Char) 24.86/10.74 new_compare24(x0, x1, True, x2, x3) 24.86/10.74 new_ltEs17(EQ, EQ) 24.86/10.74 new_lt13(x0, x1, ty_Int) 24.86/10.74 new_primPlusNat1(Succ(x0), Zero) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.74 new_esEs30(x0, x1, ty_Bool) 24.86/10.74 new_esEs24(x0, x1, ty_Bool) 24.86/10.74 new_primPlusNat1(Zero, Zero) 24.86/10.74 new_ltEs19(x0, x1, ty_Int) 24.86/10.74 new_lt13(x0, x1, ty_Ordering) 24.86/10.74 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.86/10.74 new_compare25(x0, x1, False, x2, x3) 24.86/10.74 new_esEs22(x0, x1, ty_Ordering) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.74 new_lt10(x0, x1, x2) 24.86/10.74 new_esEs30(x0, x1, ty_Integer) 24.86/10.74 new_esEs23(x0, x1, ty_@0) 24.86/10.74 new_esEs21(x0, x1, ty_Ordering) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.86/10.74 new_compare10(x0, x1, True) 24.86/10.74 new_lt12(x0, x1, ty_Ordering) 24.86/10.74 new_esEs18(True, True) 24.86/10.74 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.74 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.74 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.74 new_primCompAux0(x0, GT) 24.86/10.74 new_lt20(x0, x1, ty_Int) 24.86/10.74 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.74 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs24(x0, x1, ty_@0) 24.86/10.74 new_esEs11(x0, x1, ty_Integer) 24.86/10.74 new_esEs8(x0, x1) 24.86/10.74 new_lt20(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs23(x0, x1, ty_Bool) 24.86/10.74 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.74 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.74 new_lt16(x0, x1, x2, x3, x4) 24.86/10.74 new_compare8(x0, x1, x2, x3) 24.86/10.74 new_esEs30(x0, x1, ty_@0) 24.86/10.74 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.74 new_ltEs18(x0, x1, ty_@0) 24.86/10.74 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs11(x0, x1, ty_@0) 24.86/10.74 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.74 new_esEs12(x0, x1, ty_Integer) 24.86/10.74 new_esEs29(x0, x1, ty_Bool) 24.86/10.74 new_ltEs9(x0, x1) 24.86/10.74 new_esEs23(x0, x1, ty_Char) 24.86/10.74 new_ltEs7(Nothing, Nothing, x0) 24.86/10.74 new_ltEs19(x0, x1, ty_@0) 24.86/10.74 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs9(LT, LT) 24.86/10.74 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.74 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.74 new_ltEs16(False, False) 24.86/10.74 new_primCmpNat0(Succ(x0), Zero) 24.86/10.74 new_esEs23(x0, x1, ty_Int) 24.86/10.74 new_esEs12(x0, x1, ty_@0) 24.86/10.74 new_compare31(Char(x0), Char(x1)) 24.86/10.74 new_ltEs19(x0, x1, ty_Double) 24.86/10.74 new_lt20(x0, x1, ty_Ordering) 24.86/10.74 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.74 new_esEs29(x0, x1, app(ty_[], x2)) 24.86/10.74 new_ltEs11(x0, x1) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.74 new_esEs9(EQ, GT) 24.86/10.74 new_esEs9(GT, EQ) 24.86/10.74 new_primPlusNat0(Succ(x0), x1) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.74 new_esEs22(x0, x1, ty_@0) 24.86/10.74 new_esEs20(x0, x1, ty_Int) 24.86/10.74 new_esEs14(Char(x0), Char(x1)) 24.86/10.74 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_compare111(x0, x1, True) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.74 new_esEs26(x0, x1, ty_Double) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.74 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.86/10.74 new_esEs25(x0, x1, ty_Integer) 24.86/10.74 new_esEs20(x0, x1, app(ty_[], x2)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.74 new_esEs23(x0, x1, app(ty_[], x2)) 24.86/10.74 new_compare17(x0, x1, x2, x3, x4) 24.86/10.74 new_esEs22(x0, x1, ty_Bool) 24.86/10.74 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.74 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.74 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.74 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs20(x0, x1, ty_Char) 24.86/10.74 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.74 new_esEs24(x0, x1, ty_Integer) 24.86/10.74 new_compare110(x0, x1, False, x2, x3, x4) 24.86/10.74 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.74 new_ltEs7(Nothing, Just(x0), x1) 24.86/10.74 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_esEs25(x0, x1, ty_Ordering) 24.86/10.74 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.74 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.74 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.74 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs29(x0, x1, ty_Integer) 24.86/10.74 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs29(x0, x1, ty_Ordering) 24.86/10.74 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs22(x0, x1, ty_Char) 24.86/10.74 new_esEs22(x0, x1, ty_Double) 24.86/10.74 new_esEs20(x0, x1, ty_Double) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.74 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs12(x0, x1, ty_Bool) 24.86/10.74 new_lt13(x0, x1, ty_Double) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.74 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_lt13(x0, x1, ty_Char) 24.86/10.74 new_compare29(x0, x1, False) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.74 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_compare24(x0, x1, False, x2, x3) 24.86/10.74 new_esEs29(x0, x1, ty_Double) 24.86/10.74 new_esEs22(x0, x1, ty_Integer) 24.86/10.74 new_ltEs20(x0, x1, ty_Bool) 24.86/10.74 new_esEs30(x0, x1, ty_Ordering) 24.86/10.74 new_esEs26(x0, x1, ty_Int) 24.86/10.74 new_esEs24(x0, x1, ty_Float) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.74 new_compare16(x0, x1, x2, x3) 24.86/10.74 new_compare10(x0, x1, False) 24.86/10.74 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.74 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_lt13(x0, x1, ty_Bool) 24.86/10.74 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs11(x0, x1, ty_Double) 24.86/10.74 new_lt9(x0, x1) 24.86/10.74 new_esEs30(x0, x1, ty_Float) 24.86/10.74 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.74 new_esEs26(x0, x1, ty_Char) 24.86/10.74 new_lt13(x0, x1, ty_@0) 24.86/10.74 new_compare26(Just(x0), Nothing, False, x1) 24.86/10.74 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.74 new_esEs21(x0, x1, ty_@0) 24.86/10.74 new_lt12(x0, x1, ty_@0) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.86/10.74 new_ltEs18(x0, x1, ty_Ordering) 24.86/10.74 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.74 new_esEs23(x0, x1, ty_Ordering) 24.86/10.74 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.74 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.74 new_lt14(x0, x1) 24.86/10.74 new_esEs18(False, True) 24.86/10.74 new_esEs18(True, False) 24.86/10.74 new_esEs30(x0, x1, ty_Char) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.86/10.74 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_lt13(x0, x1, ty_Integer) 24.86/10.74 new_compare0([], :(x0, x1), x2) 24.86/10.74 new_ltEs20(x0, x1, ty_Integer) 24.86/10.74 new_ltEs18(x0, x1, ty_Float) 24.86/10.74 new_esEs26(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.74 new_esEs12(x0, x1, ty_Ordering) 24.86/10.74 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_primCompAux0(x0, LT) 24.86/10.74 new_esEs24(x0, x1, ty_Int) 24.86/10.74 new_esEs26(x0, x1, ty_Float) 24.86/10.74 new_lt8(x0, x1) 24.86/10.74 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.86/10.74 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.74 new_esEs30(x0, x1, ty_Int) 24.86/10.74 new_ltEs18(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs4(Nothing, Just(x0), x1) 24.86/10.74 new_primEqNat0(Zero, Succ(x0)) 24.86/10.74 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.86/10.74 new_compare28(x0, x1, True, x2, x3, x4) 24.86/10.74 new_esEs4(Nothing, Nothing, x0) 24.86/10.74 new_ltEs16(True, False) 24.86/10.74 new_esEs24(x0, x1, ty_Char) 24.86/10.74 new_ltEs16(False, True) 24.86/10.74 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.74 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.86/10.74 new_pePe(True, x0) 24.86/10.74 new_ltEs17(LT, LT) 24.86/10.74 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.86/10.74 new_ltEs18(x0, x1, ty_Integer) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.74 new_lt20(x0, x1, ty_Double) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.74 new_lt20(x0, x1, ty_@0) 24.86/10.74 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare30(x0, x1, ty_@0) 24.86/10.74 new_compare11(x0, x1, False, x2, x3) 24.86/10.74 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.86/10.74 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.86/10.74 new_compare26(Nothing, Nothing, False, x0) 24.86/10.74 new_compare30(x0, x1, ty_Double) 24.86/10.74 new_ltEs18(x0, x1, ty_Int) 24.86/10.74 new_esEs23(x0, x1, ty_Integer) 24.86/10.74 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.86/10.74 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.86/10.74 new_compare30(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.74 new_esEs12(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.86/10.74 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.86/10.74 new_asAs(False, x0) 24.86/10.74 new_ltEs18(x0, x1, ty_Char) 24.86/10.74 new_lt18(x0, x1, x2, x3) 24.86/10.74 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_ltEs17(GT, GT) 24.86/10.74 new_sr0(Integer(x0), Integer(x1)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.74 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_ltEs20(x0, x1, ty_Int) 24.86/10.74 new_ltEs18(x0, x1, ty_Bool) 24.86/10.74 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.74 new_ltEs20(x0, x1, app(ty_[], x2)) 24.86/10.74 new_primCmpNat0(Zero, Succ(x0)) 24.86/10.74 new_esEs10(@0, @0) 24.86/10.74 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_primPlusNat0(Zero, x0) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.74 new_esEs25(x0, x1, ty_Double) 24.86/10.74 new_esEs25(x0, x1, ty_@0) 24.86/10.74 new_lt12(x0, x1, ty_Double) 24.86/10.74 new_lt13(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs27(x0, x1, ty_Int) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.74 new_esEs29(x0, x1, ty_@0) 24.86/10.74 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.74 new_ltEs20(x0, x1, ty_Char) 24.86/10.74 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare18(x0, x1) 24.86/10.74 new_ltEs17(LT, EQ) 24.86/10.74 new_ltEs17(EQ, LT) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.74 new_esEs21(x0, x1, ty_Double) 24.86/10.74 new_primCompAux1(x0, x1, x2, x3) 24.86/10.74 new_primMulNat0(Succ(x0), Zero) 24.86/10.74 new_primPlusNat1(Succ(x0), Succ(x1)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.74 new_esEs13([], :(x0, x1), x2) 24.86/10.74 new_primPlusNat1(Zero, Succ(x0)) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.74 new_compare0(:(x0, x1), :(x2, x3), x4) 24.86/10.74 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_compare29(x0, x1, True) 24.86/10.74 new_ltEs20(x0, x1, ty_Double) 24.86/10.74 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_esEs9(EQ, EQ) 24.86/10.74 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs26(x0, x1, ty_Integer) 24.86/10.74 new_compare30(x0, x1, ty_Char) 24.86/10.74 new_compare27(x0, x1, True) 24.86/10.74 new_compare0(:(x0, x1), [], x2) 24.86/10.74 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.74 new_esEs21(x0, x1, ty_Float) 24.86/10.74 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.86/10.74 new_lt13(x0, x1, ty_Float) 24.86/10.74 new_primEqNat0(Succ(x0), Succ(x1)) 24.86/10.74 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.86/10.74 new_esEs4(Just(x0), Nothing, x1) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Float) 24.86/10.74 new_primMulNat0(Zero, Zero) 24.86/10.74 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_compare6(Integer(x0), Integer(x1)) 24.86/10.74 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_primCompAux0(x0, EQ) 24.86/10.74 new_esEs17(Integer(x0), Integer(x1)) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.74 new_ltEs20(x0, x1, ty_Ordering) 24.86/10.74 new_compare14(x0, x1) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.74 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.74 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.86/10.74 new_esEs22(x0, x1, ty_Float) 24.86/10.74 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.86/10.74 new_esEs20(x0, x1, ty_Float) 24.86/10.74 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_lt12(x0, x1, ty_Float) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.74 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_ltEs12(x0, x1, x2) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.74 new_primMulNat0(Succ(x0), Succ(x1)) 24.86/10.74 new_ltEs8(x0, x1, x2) 24.86/10.74 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.74 new_esEs20(x0, x1, ty_Integer) 24.86/10.74 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_lt12(x0, x1, ty_Integer) 24.86/10.74 new_compare12(x0, x1, False, x2, x3) 24.86/10.74 new_not(True) 24.86/10.74 new_esEs26(x0, x1, ty_@0) 24.86/10.74 new_compare30(x0, x1, ty_Bool) 24.86/10.74 new_lt19(x0, x1) 24.86/10.74 new_lt20(x0, x1, ty_Float) 24.86/10.74 new_primEqNat0(Succ(x0), Zero) 24.86/10.74 new_primMulNat0(Zero, Succ(x0)) 24.86/10.74 new_ltEs6(x0, x1) 24.86/10.74 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.74 new_compare30(x0, x1, ty_Ordering) 24.86/10.74 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs12(x0, x1, ty_Double) 24.86/10.74 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.74 new_compare7(x0, x1, x2) 24.86/10.74 new_compare26(x0, x1, True, x2) 24.86/10.74 new_compare13(x0, x1, False, x2) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.74 new_esEs18(False, False) 24.86/10.74 new_asAs(True, x0) 24.86/10.74 new_ltEs14(x0, x1) 24.86/10.74 new_esEs9(LT, EQ) 24.86/10.74 new_esEs9(EQ, LT) 24.86/10.74 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs9(GT, GT) 24.86/10.74 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.74 new_esEs20(x0, x1, ty_Bool) 24.86/10.74 new_sr(x0, x1) 24.86/10.74 new_esEs23(x0, x1, ty_Float) 24.86/10.74 new_esEs28(x0, x1, ty_Int) 24.86/10.74 new_esEs26(x0, x1, ty_Bool) 24.86/10.74 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.74 new_lt15(x0, x1, x2) 24.86/10.74 new_primMulInt(Pos(x0), Pos(x1)) 24.86/10.74 new_ltEs19(x0, x1, ty_Float) 24.86/10.74 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs9(LT, GT) 24.86/10.74 new_esEs9(GT, LT) 24.86/10.74 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.86/10.74 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_compare30(x0, x1, ty_Integer) 24.86/10.74 new_esEs29(x0, x1, ty_Float) 24.86/10.74 new_lt5(x0, x1) 24.86/10.74 new_esEs11(x0, x1, ty_Ordering) 24.86/10.74 new_esEs24(x0, x1, ty_Ordering) 24.86/10.74 new_esEs21(x0, x1, ty_Bool) 24.86/10.74 new_esEs11(x0, x1, ty_Float) 24.86/10.74 new_esEs12(x0, x1, ty_Char) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.86/10.74 new_lt6(x0, x1) 24.86/10.74 new_compare25(x0, x1, True, x2, x3) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.86/10.74 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.74 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.74 new_ltEs17(LT, GT) 24.86/10.74 new_ltEs17(GT, LT) 24.86/10.74 new_compare9(x0, x1) 24.86/10.74 new_ltEs18(x0, x1, ty_Double) 24.86/10.74 new_esEs12(x0, x1, ty_Int) 24.86/10.74 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_@0) 24.86/10.74 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.86/10.74 new_ltEs20(x0, x1, ty_@0) 24.86/10.74 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_lt11(x0, x1) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.86/10.74 new_primMulInt(Neg(x0), Neg(x1)) 24.86/10.74 new_esEs22(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs20(x0, x1, ty_@0) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.74 new_ltEs7(Just(x0), Nothing, x1) 24.86/10.74 new_esEs25(x0, x1, ty_Float) 24.86/10.74 new_primMulInt(Pos(x0), Neg(x1)) 24.86/10.74 new_primMulInt(Neg(x0), Pos(x1)) 24.86/10.74 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.74 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.86/10.74 new_primCmpNat0(Succ(x0), Succ(x1)) 24.86/10.74 new_esEs11(x0, x1, ty_Int) 24.86/10.74 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.86/10.74 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.74 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.86/10.74 new_compare0([], [], x0) 24.86/10.74 new_esEs30(x0, x1, ty_Double) 24.86/10.74 new_esEs21(x0, x1, ty_Integer) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.86/10.74 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.86/10.74 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.74 new_esEs12(x0, x1, ty_Float) 24.86/10.74 new_compare27(x0, x1, False) 24.86/10.74 new_lt20(x0, x1, ty_Integer) 24.86/10.74 new_esEs24(x0, x1, ty_Double) 24.86/10.74 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_esEs26(x0, x1, ty_Ordering) 24.86/10.74 new_lt17(x0, x1) 24.86/10.74 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.74 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.86/10.74 new_ltEs19(x0, x1, ty_Bool) 24.86/10.74 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.86/10.74 new_esEs23(x0, x1, ty_Double) 24.86/10.74 new_compare30(x0, x1, ty_Float) 24.86/10.74 new_primEqNat0(Zero, Zero) 24.86/10.74 new_esEs25(x0, x1, ty_Int) 24.86/10.74 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.74 new_compare111(x0, x1, False) 24.86/10.74 new_ltEs10(x0, x1) 24.86/10.74 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.86/10.74 new_not(False) 24.86/10.74 new_lt12(x0, x1, ty_Int) 24.86/10.74 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.74 new_compare13(x0, x1, True, x2) 24.86/10.74 new_esEs13(:(x0, x1), [], x2) 24.86/10.74 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.74 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.86/10.74 new_ltEs16(True, True) 24.86/10.74 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.74 new_esEs11(x0, x1, ty_Char) 24.86/10.74 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.74 new_lt7(x0, x1, x2, x3) 24.86/10.74 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.74 new_ltEs17(EQ, GT) 24.86/10.74 new_ltEs17(GT, EQ) 24.86/10.74 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.74 new_esEs28(x0, x1, ty_Integer) 24.86/10.74 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_esEs29(x0, x1, ty_Char) 24.86/10.74 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs25(x0, x1, ty_Bool) 24.86/10.74 new_esEs20(x0, x1, ty_Ordering) 24.86/10.74 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.74 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.74 new_compare11(x0, x1, True, x2, x3) 24.86/10.74 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.74 new_compare12(x0, x1, True, x2, x3) 24.86/10.74 new_compare30(x0, x1, ty_Int) 24.86/10.74 new_esEs11(x0, x1, app(ty_[], x2)) 24.86/10.74 new_esEs29(x0, x1, ty_Int) 24.86/10.74 new_ltEs15(x0, x1) 24.86/10.74 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.74 new_esEs30(x0, x1, app(ty_[], x2)) 24.86/10.74 new_lt12(x0, x1, ty_Bool) 24.86/10.74 new_ltEs19(x0, x1, app(ty_[], x2)) 24.86/10.74 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.86/10.74 new_esEs25(x0, x1, ty_Char) 24.86/10.74 new_esEs21(x0, x1, ty_Int) 24.86/10.74 new_ltEs19(x0, x1, ty_Ordering) 24.86/10.74 new_lt4(x0, x1, x2) 24.86/10.74 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.74 new_esEs13([], [], x0) 24.86/10.74 new_ltEs19(x0, x1, ty_Integer) 24.86/10.74 new_pePe(False, x0) 24.86/10.74 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.74 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.74 new_lt12(x0, x1, ty_Char) 24.86/10.74 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.74 new_compare32(@0, @0) 24.86/10.74 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_primCmpNat0(Zero, Zero) 24.86/10.74 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.86/10.74 new_esEs21(x0, x1, ty_Char) 24.86/10.74 new_esEs11(x0, x1, ty_Bool) 24.86/10.74 new_lt20(x0, x1, ty_Bool) 24.86/10.74 24.86/10.74 We have to consider all minimal (P,Q,R)-chains. 24.86/10.74 ---------------------------------------- 24.86/10.74 24.86/10.74 (24) QDPSizeChangeProof (EQUIVALENT) 24.86/10.74 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. 24.86/10.74 24.86/10.74 From the DPs we obtained the following set of size-change graphs: 24.86/10.74 *new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Just(vyw300), False, ba), LT), h, ba) 24.86/10.74 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 24.86/10.74 24.86/10.74 24.86/10.74 *new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Nothing, h, ba) -> new_lookupFM1(vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Nothing, True, ba), GT), h, ba) 24.86/10.74 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 6, 4 >= 7 24.86/10.74 24.86/10.74 24.86/10.74 *new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw33, Nothing, h, ba) 24.86/10.74 The graph contains the following edges 4 >= 1, 7 >= 3, 8 >= 4 24.86/10.74 24.86/10.74 24.86/10.74 *new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, False, h, ba) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, new_esEs9(new_compare26(Nothing, Just(vyw300), False, ba), GT), h, ba) 24.86/10.74 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 24.86/10.74 24.86/10.74 24.86/10.74 *new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw34, Nothing, h, ba) 24.86/10.74 The graph contains the following edges 5 >= 1, 7 >= 3, 8 >= 4 24.86/10.74 24.86/10.74 24.86/10.74 *new_lookupFM1(vyw31, vyw32, vyw33, vyw34, True, h, ba) -> new_lookupFM(vyw34, Nothing, h, ba) 24.86/10.74 The graph contains the following edges 4 >= 1, 6 >= 3, 7 >= 4 24.86/10.74 24.86/10.74 24.86/10.74 ---------------------------------------- 24.86/10.74 24.86/10.74 (25) 24.86/10.74 YES 24.86/10.74 24.86/10.74 ---------------------------------------- 24.86/10.74 24.86/10.74 (26) 24.86/10.74 Obligation: 24.86/10.74 Q DP problem: 24.86/10.74 The TRS P consists of the following rules: 24.86/10.74 24.86/10.74 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), LT), h, ba) 24.86/10.74 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw33, Just(vyw40), h, ba) 24.86/10.74 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Just(vyw300), new_esEs29(vyw40, vyw300, ba), ba), LT), h, ba) 24.86/10.74 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw16, Just(vyw18), bb, bc) 24.86/10.74 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare26(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) 24.86/10.74 new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw17, Just(vyw18), bb, bc) 24.86/10.74 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), GT), h, ba) 24.86/10.74 new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw34, Just(vyw40), h, ba) 24.86/10.74 24.86/10.74 The TRS R consists of the following rules: 24.86/10.74 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.74 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.74 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.74 new_ltEs17(LT, EQ) -> True 24.86/10.74 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs19(vyw400, vyw3000, dde) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.74 new_pePe(True, vyw110) -> True 24.86/10.74 new_compare12(vyw28000, vyw29000, False, bg, bh) -> GT 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw400, vyw3000, ee, ef) 24.86/10.74 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.74 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, cfb) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.74 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.74 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.74 new_esEs18(True, True) -> True 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(ty_[], daa)) -> new_esEs13(vyw28000, vyw29000, daa) 24.86/10.74 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.74 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.74 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.74 new_esEs29(vyw40, vyw300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vyw40, vyw300, bbg, bbh, bca) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], ceb)) -> new_esEs13(vyw400, vyw3000, ceb) 24.86/10.74 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.74 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(ty_Ratio, eh)) -> new_esEs19(vyw400, vyw3000, eh) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, cfd), cfb) -> new_ltEs7(vyw28000, vyw29000, cfd) 24.86/10.74 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.74 new_esEs9(LT, EQ) -> False 24.86/10.74 new_esEs9(EQ, LT) -> False 24.86/10.74 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.74 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bga) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bga), bga) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.74 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.74 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw400, vyw3000, ddb, ddc) 24.86/10.74 new_compare8(vyw28000, vyw29000, bd, be) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Maybe, cgg)) -> new_ltEs7(vyw28000, vyw29000, cgg) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.74 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.74 new_primCompAux0(vyw116, GT) -> GT 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.74 new_ltEs5(Left(vyw28000), Right(vyw29000), cgd, cfb) -> True 24.86/10.74 new_esEs21(vyw401, vyw3001, app(ty_[], bdg)) -> new_esEs13(vyw401, vyw3001, bdg) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.74 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, cdd), cde)) -> new_ltEs4(vyw28002, vyw29002, cdd, cde) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, hd) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.74 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw400, vyw3000, bcb, bcc, bcd) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(ty_Maybe, bfd)) -> new_esEs4(vyw402, vyw3002, bfd) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, hd) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.74 new_primCompAux0(vyw116, LT) -> LT 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.74 new_ltEs17(LT, GT) -> True 24.86/10.74 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.74 new_not(True) -> False 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ccf)) -> new_ltEs7(vyw28002, vyw29002, ccf) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.74 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(ty_Maybe, gb)) -> new_esEs4(vyw401, vyw3001, gb) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.74 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bgd)) -> new_compare7(vyw28000, vyw29000, bgd) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(ty_Ratio, bfe)) -> new_esEs19(vyw402, vyw3002, bfe) 24.86/10.74 new_ltEs17(EQ, GT) -> True 24.86/10.74 new_esEs11(vyw400, vyw3000, app(ty_Maybe, eg)) -> new_esEs4(vyw400, vyw3000, eg) 24.86/10.74 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dea) -> new_asAs(new_esEs27(vyw400, vyw3000, dea), new_esEs28(vyw401, vyw3001, dea)) 24.86/10.74 new_esEs29(vyw40, vyw300, app(ty_[], dce)) -> new_esEs13(vyw40, vyw300, dce) 24.86/10.74 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw28000, vyw29000, cg, da, db) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs13(vyw28001, vyw29001, dbf, dbg, dbh) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.74 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.74 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.74 new_lt20(vyw28000, vyw29000, app(ty_[], daa)) -> new_lt4(vyw28000, vyw29000, daa) 24.86/10.74 new_esEs13([], [], dce) -> True 24.86/10.74 new_ltEs7(Nothing, Just(vyw29000), cc) -> True 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, hd) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_compare26(Nothing, Nothing, False, ddh) -> LT 24.86/10.74 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.74 new_ltEs17(LT, LT) -> True 24.86/10.74 new_esEs22(vyw402, vyw3002, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw402, vyw3002, bfb, bfc) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vyw28000, vyw29000, dad, dae, daf) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, cfh), cga), cfb) -> new_ltEs5(vyw28000, vyw29000, cfh, cga) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.74 new_compare13(vyw95, vyw96, False, ca) -> GT 24.86/10.74 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(ty_Ratio, gc)) -> new_esEs19(vyw401, vyw3001, gc) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Ratio, cgf)) -> new_ltEs12(vyw28000, vyw29000, cgf) 24.86/10.74 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(vyw2800, vyw2900, caf, cag, cah) 24.86/10.74 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, chg), chh)) -> new_ltEs4(vyw2800, vyw2900, chg, chh) 24.86/10.74 new_lt18(vyw28000, vyw29000, bg, bh) -> new_esEs9(new_compare16(vyw28000, vyw29000, bg, bh), LT) 24.86/10.74 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.74 new_esEs30(vyw18, vyw13, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs5(vyw18, vyw13, bhd, bhe, bhf) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.74 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.74 new_compare28(vyw28000, vyw29000, False, gf, gg, gh) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(ty_[], ed)) -> new_esEs13(vyw400, vyw3000, ed) 24.86/10.74 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ha), hb), hc), hd) -> new_esEs5(vyw400, vyw3000, ha, hb, hc) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, cfc), cfb) -> new_ltEs12(vyw28000, vyw29000, cfc) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, cc)) -> new_ltEs7(vyw2800, vyw2900, cc) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, de), df)) -> new_ltEs4(vyw28000, vyw29000, de, df) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, dcc), dcd)) -> new_ltEs4(vyw28001, vyw29001, dcc, dcd) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(ty_[], cbb)) -> new_esEs13(vyw28001, vyw29001, cbb) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(vyw401, vyw3001, bdd, bde, bdf) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.74 new_compare110(vyw28000, vyw29000, False, gf, gg, gh) -> GT 24.86/10.74 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 24.86/10.74 new_pePe(False, vyw110) -> vyw110 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.74 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.74 new_compare25(vyw28000, vyw29000, True, bg, bh) -> EQ 24.86/10.74 new_ltEs12(vyw2800, vyw2900, bfh) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, bfh), GT)) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Integer) -> new_esEs17(vyw40, vyw300) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(app(ty_Either, bff), bfg)) -> new_esEs6(vyw402, vyw3002, bff, bfg) 24.86/10.74 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vyw28000, vyw29000, gf, gg, gh) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_esEs19(vyw28000, vyw29000, dab) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Char) -> new_esEs14(vyw40, vyw300) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, cfb) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_@2, che), chf)) -> new_ltEs4(vyw28000, vyw29000, che, chf) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.74 new_compare11(vyw28000, vyw29000, False, bd, be) -> GT 24.86/10.74 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.74 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw401, vyw3001, fh, ga) 24.86/10.74 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dg, dh) -> new_asAs(new_esEs11(vyw400, vyw3000, dg), new_esEs12(vyw401, vyw3001, dh)) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(ty_[], dda)) -> new_esEs13(vyw400, vyw3000, dda) 24.86/10.74 new_compare24(vyw28000, vyw29000, False, bd, be) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw400, vyw3000, cdg, cdh, cea) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs13(vyw28002, vyw29002, ccg, cch, cda) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.74 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs5(vyw400, vyw3000, ea, eb, ec) 24.86/10.74 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.74 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.74 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, cfb) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw28001, vyw29001, cbh, cca) 24.86/10.74 new_esEs13(:(vyw400, vyw401), [], dce) -> False 24.86/10.74 new_esEs13([], :(vyw3000, vyw3001), dce) -> False 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, bab), bac), hd) -> new_esEs6(vyw400, vyw3000, bab, bac) 24.86/10.74 new_primCompAux1(vyw28000, vyw29000, vyw111, bga) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, bga)) 24.86/10.74 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.74 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.74 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.74 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), caf, cag, cah) -> new_pePe(new_lt12(vyw28000, vyw29000, caf), new_asAs(new_esEs23(vyw28000, vyw29000, caf), new_pePe(new_lt13(vyw28001, vyw29001, cag), new_asAs(new_esEs24(vyw28001, vyw29001, cag), new_ltEs18(vyw28002, vyw29002, cah))))) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vyw400, vyw3000, bae, baf, bag) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(vyw28000, vyw29000, gf, gg, gh) 24.86/10.74 new_compare26(vyw280, vyw290, True, ddh) -> EQ 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.74 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.74 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_[], bah)) -> new_esEs13(vyw400, vyw3000, bah) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, hf), hg), hd) -> new_esEs7(vyw400, vyw3000, hf, hg) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, cfe), cff), cfg), cfb) -> new_ltEs13(vyw28000, vyw29000, cfe, cff, cfg) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.74 new_lt12(vyw28000, vyw29000, app(ty_[], bf)) -> new_lt4(vyw28000, vyw29000, bf) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.74 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(ty_Maybe, bch)) -> new_esEs4(vyw400, vyw3000, bch) 24.86/10.74 new_compare30(vyw28000, vyw29000, app(ty_Ratio, bgc)) -> new_compare19(vyw28000, vyw29000, bgc) 24.86/10.74 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.74 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.74 new_esEs9(LT, LT) -> True 24.86/10.74 new_lt13(vyw28001, vyw29001, app(ty_[], cbb)) -> new_lt4(vyw28001, vyw29001, cbb) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.74 new_esEs11(vyw400, vyw3000, app(app(ty_Either, fa), fb)) -> new_esEs6(vyw400, vyw3000, fa, fb) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Bool) -> new_esEs18(vyw40, vyw300) 24.86/10.74 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bbg, bbh, bca) -> new_asAs(new_esEs20(vyw400, vyw3000, bbg), new_asAs(new_esEs21(vyw401, vyw3001, bbh), new_esEs22(vyw402, vyw3002, bca))) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs17(vyw18, vyw13) 24.86/10.74 new_compare25(vyw28000, vyw29000, False, bg, bh) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.74 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(ty_Maybe, beb)) -> new_esEs4(vyw401, vyw3001, beb) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(app(ty_Either, gd), ge)) -> new_esEs6(vyw401, vyw3001, gd, ge) 24.86/10.74 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.74 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, cfb) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyw28000, vyw29000, dba, dbb) 24.86/10.74 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_lt10(vyw28000, vyw29000, dac) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, hd) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs18(vyw18, vyw13) 24.86/10.74 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), chg, chh) -> new_pePe(new_lt20(vyw28000, vyw29000, chg), new_asAs(new_esEs25(vyw28000, vyw29000, chg), new_ltEs19(vyw28001, vyw29001, chh))) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_@2, bba), bbb)) -> new_esEs7(vyw400, vyw3000, bba, bbb) 24.86/10.74 new_compare16(vyw28000, vyw29000, bg, bh) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.74 new_ltEs17(EQ, EQ) -> True 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, cee)) -> new_esEs4(vyw400, vyw3000, cee) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_esEs6(vyw28000, vyw29000, bg, bh) 24.86/10.74 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(app(ty_Either, bed), bee)) -> new_esEs6(vyw401, vyw3001, bed, bee) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, dca), dcb)) -> new_ltEs5(vyw28001, vyw29001, dca, dcb) 24.86/10.74 new_ltEs17(GT, LT) -> False 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.74 new_ltEs17(EQ, LT) -> False 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs8(vyw18, vyw13) 24.86/10.74 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.74 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.74 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.74 new_esEs30(vyw18, vyw13, app(ty_Maybe, cab)) -> new_esEs4(vyw18, vyw13, cab) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_esEs4(vyw28001, vyw29001, cbd) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_Either, bbe), bbf)) -> new_esEs6(vyw400, vyw3000, bbe, bbf) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(ty_[], bf)) -> new_esEs13(vyw28000, vyw29000, bf) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, cgb), cgc), cfb) -> new_ltEs4(vyw28000, vyw29000, cgb, cgc) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.74 new_lt7(vyw28000, vyw29000, bd, be) -> new_esEs9(new_compare8(vyw28000, vyw29000, bd, be), LT) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(vyw402, vyw3002, bef, beg, beh) 24.86/10.74 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.74 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw400, vyw3000, ceg, ceh) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, dc), dd)) -> new_ltEs5(vyw28000, vyw29000, dc, dd) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, hd) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_esEs19(vyw28001, vyw29001, cbc) 24.86/10.74 new_compare0([], :(vyw29000, vyw29001), bga) -> LT 24.86/10.74 new_asAs(True, vyw102) -> vyw102 24.86/10.74 new_ltEs5(Right(vyw28000), Left(vyw29000), cgd, cfb) -> False 24.86/10.74 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(vyw401, vyw3001, fc, fd, ff) 24.86/10.74 new_ltEs8(vyw2800, vyw2900, bga) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, bga), GT)) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.74 new_compare26(Just(vyw2800), Just(vyw2900), False, ddh) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, ddh), ddh) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, baa), hd) -> new_esEs19(vyw400, vyw3000, baa) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_lt7(vyw28000, vyw29000, dba, dbb) 24.86/10.74 new_esEs30(vyw18, vyw13, app(ty_Ratio, cac)) -> new_esEs19(vyw18, vyw13, cac) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.74 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Left(vyw400), Right(vyw3000), bad, hd) -> False 24.86/10.74 new_esEs6(Right(vyw400), Left(vyw3000), bad, hd) -> False 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_ltEs16(True, False) -> False 24.86/10.74 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, cgd), cfb)) -> new_ltEs5(vyw2800, vyw2900, cgd, cfb) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.74 new_esEs18(False, False) -> True 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.74 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.74 new_compare13(vyw95, vyw96, True, ca) -> LT 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.74 new_compare24(vyw28000, vyw29000, True, bd, be) -> EQ 24.86/10.74 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_esEs7(vyw28001, vyw29001, ccb, ccc) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.74 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.74 new_esEs30(vyw18, vyw13, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw18, vyw13, bhh, caa) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(ty_[], ccd)) -> new_ltEs8(vyw28002, vyw29002, ccd) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_Either, chc), chd)) -> new_ltEs5(vyw28000, vyw29000, chc, chd) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Ratio, bbd)) -> new_esEs19(vyw400, vyw3000, bbd) 24.86/10.74 new_compare0([], [], bga) -> EQ 24.86/10.74 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.74 new_ltEs7(Nothing, Nothing, cc) -> True 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.74 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.74 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.74 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.74 new_esEs12(vyw401, vyw3001, app(ty_[], fg)) -> new_esEs13(vyw401, vyw3001, fg) 24.86/10.74 new_lt12(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_lt18(vyw28000, vyw29000, bg, bh) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) 24.86/10.74 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hd) -> new_esEs4(vyw400, vyw3000, hh) 24.86/10.74 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(ty_[], dbc)) -> new_ltEs8(vyw28001, vyw29001, dbc) 24.86/10.74 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs6(vyw400, vyw3000, ddf, ddg) 24.86/10.74 new_ltEs7(Just(vyw28000), Nothing, cc) -> False 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_esEs7(vyw28000, vyw29000, bd, be) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_compare28(vyw28000, vyw29000, True, gf, gg, gh) -> EQ 24.86/10.74 new_lt15(vyw28000, vyw29000, cba) -> new_esEs9(new_compare19(vyw28000, vyw29000, cba), LT) 24.86/10.74 new_esEs4(Nothing, Nothing, cdf) -> True 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.74 new_esEs4(Nothing, Just(vyw3000), cdf) -> False 24.86/10.74 new_esEs4(Just(vyw400), Nothing, cdf) -> False 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_lt15(vyw28000, vyw29000, dab) 24.86/10.74 new_lt13(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_lt18(vyw28001, vyw29001, cbh, cca) 24.86/10.74 new_esEs29(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs19(vyw40, vyw300, dea) 24.86/10.74 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.74 new_compare32(@0, @0) -> EQ 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Maybe, bbc)) -> new_esEs4(vyw400, vyw3000, bbc) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_esEs6(vyw28000, vyw29000, dag, dah) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], cfa), cfb) -> new_ltEs8(vyw28000, vyw29000, cfa) 24.86/10.74 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.74 new_esEs9(EQ, EQ) -> True 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(ty_[], bga)) -> new_ltEs8(vyw2800, vyw2900, bga) 24.86/10.74 new_compare26(Just(vyw2800), Nothing, False, ddh) -> GT 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, dbe)) -> new_ltEs7(vyw28001, vyw29001, dbe) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, bfh)) -> new_ltEs12(vyw2800, vyw2900, bfh) 24.86/10.74 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.74 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.74 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cd)) -> new_ltEs8(vyw28000, vyw29000, cd) 24.86/10.74 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(vyw400, vyw3000, bdb, bdc) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.74 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, cdb), cdc)) -> new_ltEs5(vyw28002, vyw29002, cdb, cdc) 24.86/10.74 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.74 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.74 new_compare30(vyw28000, vyw29000, app(ty_[], bgb)) -> new_compare0(vyw28000, vyw29000, bgb) 24.86/10.74 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.74 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_esEs19(vyw28000, vyw29000, cba) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, ce)) -> new_ltEs12(vyw28000, vyw29000, ce) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, dbd)) -> new_ltEs12(vyw28001, vyw29001, dbd) 24.86/10.74 new_esEs29(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs4(vyw40, vyw300, cdf) 24.86/10.74 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.74 new_lt4(vyw28000, vyw29000, bf) -> new_esEs9(new_compare0(vyw28000, vyw29000, bf), LT) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.74 new_compare110(vyw28000, vyw29000, True, gf, gg, gh) -> LT 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cf)) -> new_ltEs7(vyw28000, vyw29000, cf) 24.86/10.74 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.74 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.74 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, cfb) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_lt16(vyw28000, vyw29000, dad, dae, daf) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.74 new_not(False) -> True 24.86/10.74 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, hd) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_[], cge)) -> new_ltEs8(vyw28000, vyw29000, cge) 24.86/10.74 new_lt16(vyw28000, vyw29000, gf, gg, gh) -> new_esEs9(new_compare17(vyw28000, vyw29000, gf, gg, gh), LT) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.74 new_esEs9(GT, GT) -> True 24.86/10.74 new_compare0(:(vyw28000, vyw28001), [], bga) -> GT 24.86/10.74 new_esEs18(False, True) -> False 24.86/10.74 new_esEs18(True, False) -> False 24.86/10.74 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.74 new_esEs29(vyw40, vyw300, app(app(ty_Either, bad), hd)) -> new_esEs6(vyw40, vyw300, bad, hd) 24.86/10.74 new_esEs22(vyw402, vyw3002, app(ty_[], bfa)) -> new_esEs13(vyw402, vyw3002, bfa) 24.86/10.74 new_esEs10(@0, @0) -> True 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cce)) -> new_ltEs12(vyw28002, vyw29002, cce) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.74 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bgh), bha)) -> new_compare16(vyw28000, vyw29000, bgh, bha) 24.86/10.74 new_lt13(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_lt7(vyw28001, vyw29001, ccb, ccc) 24.86/10.74 new_esEs29(vyw40, vyw300, app(app(ty_@2, dg), dh)) -> new_esEs7(vyw40, vyw300, dg, dh) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.74 new_esEs9(EQ, GT) -> False 24.86/10.74 new_esEs9(GT, EQ) -> False 24.86/10.74 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.74 new_ltEs16(False, False) -> True 24.86/10.74 new_compare11(vyw28000, vyw29000, True, bd, be) -> LT 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.74 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) 24.86/10.74 new_esEs30(vyw18, vyw13, app(app(ty_Either, cad), cae)) -> new_esEs6(vyw18, vyw13, cad, cae) 24.86/10.74 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.74 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.74 new_lt20(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_lt18(vyw28000, vyw29000, dag, dah) 24.86/10.74 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.74 new_esEs30(vyw18, vyw13, app(ty_[], bhg)) -> new_esEs13(vyw18, vyw13, bhg) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.74 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.74 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.74 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.74 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare17(vyw28000, vyw29000, bge, bgf, bgg) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.74 new_ltEs17(GT, EQ) -> False 24.86/10.74 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_esEs4(vyw28000, vyw29000, dac) 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.74 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bhb), bhc)) -> new_compare8(vyw28000, vyw29000, bhb, bhc) 24.86/10.74 new_ltEs16(True, True) -> True 24.86/10.74 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_lt15(vyw28000, vyw29000, cba) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs13(vyw28000, vyw29000, cgh, cha, chb) 24.86/10.74 new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs10(vyw18, vyw13) 24.86/10.74 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(ty_Ratio, bec)) -> new_esEs19(vyw401, vyw3001, bec) 24.86/10.74 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, hd) -> new_esEs17(vyw400, vyw3000) 24.86/10.74 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(vyw400, vyw3000, dcf, dcg, dch) 24.86/10.74 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bdh), bea)) -> new_esEs7(vyw401, vyw3001, bdh, bea) 24.86/10.74 new_compare26(Nothing, Just(vyw2900), False, ddh) -> LT 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.74 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_lt15(vyw28001, vyw29001, cbc) 24.86/10.74 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, cec), ced)) -> new_esEs7(vyw400, vyw3000, cec, ced) 24.86/10.74 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.74 new_compare17(vyw28000, vyw29000, gf, gg, gh) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.74 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.74 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], he), hd) -> new_esEs13(vyw400, vyw3000, he) 24.86/10.74 new_ltEs17(GT, GT) -> True 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.74 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, cef)) -> new_esEs19(vyw400, vyw3000, cef) 24.86/10.74 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.74 new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs4(vyw400, vyw3000, ddd) 24.86/10.74 new_primEqNat0(Zero, Zero) -> True 24.86/10.74 new_lt13(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_lt10(vyw28001, vyw29001, cbd) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.74 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.74 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.74 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_esEs9(LT, GT) -> False 24.86/10.74 new_esEs9(GT, LT) -> False 24.86/10.74 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.74 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.74 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, cfb) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.74 new_asAs(False, vyw102) -> False 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, cfb) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.74 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.74 new_esEs29(vyw40, vyw300, ty_Ordering) -> new_esEs9(vyw40, vyw300) 24.86/10.74 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.74 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.74 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, cfb) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.74 new_esEs20(vyw400, vyw3000, app(ty_Ratio, bda)) -> new_esEs19(vyw400, vyw3000, bda) 24.86/10.74 new_lt12(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_lt7(vyw28000, vyw29000, bd, be) 24.86/10.74 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.74 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.74 new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) 24.86/10.74 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.74 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, hd) -> new_esEs16(vyw400, vyw3000) 24.86/10.74 new_ltEs16(False, True) -> True 24.86/10.74 new_compare12(vyw28000, vyw29000, True, bg, bh) -> LT 24.86/10.75 new_esEs20(vyw400, vyw3000, app(ty_[], bce)) -> new_esEs13(vyw400, vyw3000, bce) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(app(ty_@2, bcf), bcg)) -> new_esEs7(vyw400, vyw3000, bcf, bcg) 24.86/10.75 24.86/10.75 The set Q consists of the following terms: 24.86/10.75 24.86/10.75 new_ltEs20(x0, x1, ty_Float) 24.86/10.75 new_esEs22(x0, x1, ty_Int) 24.86/10.75 new_ltEs19(x0, x1, ty_Char) 24.86/10.75 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs27(x0, x1, ty_Integer) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.75 new_lt20(x0, x1, ty_Char) 24.86/10.75 new_compare24(x0, x1, True, x2, x3) 24.86/10.75 new_ltEs17(EQ, EQ) 24.86/10.75 new_lt13(x0, x1, ty_Int) 24.86/10.75 new_primPlusNat1(Succ(x0), Zero) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.75 new_esEs30(x0, x1, ty_Bool) 24.86/10.75 new_esEs24(x0, x1, ty_Bool) 24.86/10.75 new_primPlusNat1(Zero, Zero) 24.86/10.75 new_ltEs19(x0, x1, ty_Int) 24.86/10.75 new_lt13(x0, x1, ty_Ordering) 24.86/10.75 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.86/10.75 new_compare25(x0, x1, False, x2, x3) 24.86/10.75 new_esEs22(x0, x1, ty_Ordering) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.75 new_lt10(x0, x1, x2) 24.86/10.75 new_esEs30(x0, x1, ty_Integer) 24.86/10.75 new_esEs23(x0, x1, ty_@0) 24.86/10.75 new_esEs21(x0, x1, ty_Ordering) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.86/10.75 new_compare10(x0, x1, True) 24.86/10.75 new_lt12(x0, x1, ty_Ordering) 24.86/10.75 new_esEs18(True, True) 24.86/10.75 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.75 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.75 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.75 new_primCompAux0(x0, GT) 24.86/10.75 new_lt20(x0, x1, ty_Int) 24.86/10.75 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.75 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs24(x0, x1, ty_@0) 24.86/10.75 new_esEs11(x0, x1, ty_Integer) 24.86/10.75 new_esEs8(x0, x1) 24.86/10.75 new_lt20(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs23(x0, x1, ty_Bool) 24.86/10.75 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.75 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.75 new_lt16(x0, x1, x2, x3, x4) 24.86/10.75 new_compare8(x0, x1, x2, x3) 24.86/10.75 new_esEs30(x0, x1, ty_@0) 24.86/10.75 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.75 new_ltEs18(x0, x1, ty_@0) 24.86/10.75 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs11(x0, x1, ty_@0) 24.86/10.75 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.75 new_esEs12(x0, x1, ty_Integer) 24.86/10.75 new_esEs29(x0, x1, ty_Bool) 24.86/10.75 new_ltEs9(x0, x1) 24.86/10.75 new_esEs23(x0, x1, ty_Char) 24.86/10.75 new_ltEs7(Nothing, Nothing, x0) 24.86/10.75 new_ltEs19(x0, x1, ty_@0) 24.86/10.75 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs9(LT, LT) 24.86/10.75 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.75 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.75 new_ltEs16(False, False) 24.86/10.75 new_primCmpNat0(Succ(x0), Zero) 24.86/10.75 new_esEs23(x0, x1, ty_Int) 24.86/10.75 new_esEs12(x0, x1, ty_@0) 24.86/10.75 new_compare31(Char(x0), Char(x1)) 24.86/10.75 new_ltEs19(x0, x1, ty_Double) 24.86/10.75 new_lt20(x0, x1, ty_Ordering) 24.86/10.75 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.75 new_esEs29(x0, x1, app(ty_[], x2)) 24.86/10.75 new_ltEs11(x0, x1) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.75 new_esEs9(EQ, GT) 24.86/10.75 new_esEs9(GT, EQ) 24.86/10.75 new_primPlusNat0(Succ(x0), x1) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.75 new_esEs22(x0, x1, ty_@0) 24.86/10.75 new_esEs20(x0, x1, ty_Int) 24.86/10.75 new_esEs14(Char(x0), Char(x1)) 24.86/10.75 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_compare111(x0, x1, True) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.75 new_esEs26(x0, x1, ty_Double) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.75 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.86/10.75 new_esEs25(x0, x1, ty_Integer) 24.86/10.75 new_esEs20(x0, x1, app(ty_[], x2)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.75 new_esEs23(x0, x1, app(ty_[], x2)) 24.86/10.75 new_compare17(x0, x1, x2, x3, x4) 24.86/10.75 new_esEs22(x0, x1, ty_Bool) 24.86/10.75 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.75 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.75 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.75 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs20(x0, x1, ty_Char) 24.86/10.75 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.75 new_esEs24(x0, x1, ty_Integer) 24.86/10.75 new_compare110(x0, x1, False, x2, x3, x4) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.75 new_ltEs7(Nothing, Just(x0), x1) 24.86/10.75 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs25(x0, x1, ty_Ordering) 24.86/10.75 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.75 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.75 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.75 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs29(x0, x1, ty_Integer) 24.86/10.75 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs29(x0, x1, ty_Ordering) 24.86/10.75 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs22(x0, x1, ty_Char) 24.86/10.75 new_esEs22(x0, x1, ty_Double) 24.86/10.75 new_esEs20(x0, x1, ty_Double) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.75 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs12(x0, x1, ty_Bool) 24.86/10.75 new_lt13(x0, x1, ty_Double) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.75 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_lt13(x0, x1, ty_Char) 24.86/10.75 new_compare29(x0, x1, False) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.75 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_compare24(x0, x1, False, x2, x3) 24.86/10.75 new_esEs29(x0, x1, ty_Double) 24.86/10.75 new_esEs22(x0, x1, ty_Integer) 24.86/10.75 new_ltEs20(x0, x1, ty_Bool) 24.86/10.75 new_esEs30(x0, x1, ty_Ordering) 24.86/10.75 new_esEs26(x0, x1, ty_Int) 24.86/10.75 new_esEs24(x0, x1, ty_Float) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.75 new_compare16(x0, x1, x2, x3) 24.86/10.75 new_compare10(x0, x1, False) 24.86/10.75 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.75 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_lt13(x0, x1, ty_Bool) 24.86/10.75 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs11(x0, x1, ty_Double) 24.86/10.75 new_lt9(x0, x1) 24.86/10.75 new_esEs30(x0, x1, ty_Float) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.75 new_esEs26(x0, x1, ty_Char) 24.86/10.75 new_lt13(x0, x1, ty_@0) 24.86/10.75 new_compare26(Just(x0), Nothing, False, x1) 24.86/10.75 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.75 new_esEs21(x0, x1, ty_@0) 24.86/10.75 new_lt12(x0, x1, ty_@0) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.86/10.75 new_ltEs18(x0, x1, ty_Ordering) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.75 new_esEs23(x0, x1, ty_Ordering) 24.86/10.75 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.75 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.75 new_lt14(x0, x1) 24.86/10.75 new_esEs18(False, True) 24.86/10.75 new_esEs18(True, False) 24.86/10.75 new_esEs30(x0, x1, ty_Char) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.86/10.75 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_lt13(x0, x1, ty_Integer) 24.86/10.75 new_compare0([], :(x0, x1), x2) 24.86/10.75 new_ltEs20(x0, x1, ty_Integer) 24.86/10.75 new_ltEs18(x0, x1, ty_Float) 24.86/10.75 new_esEs26(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.75 new_esEs12(x0, x1, ty_Ordering) 24.86/10.75 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_primCompAux0(x0, LT) 24.86/10.75 new_esEs24(x0, x1, ty_Int) 24.86/10.75 new_esEs26(x0, x1, ty_Float) 24.86/10.75 new_lt8(x0, x1) 24.86/10.75 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.86/10.75 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.75 new_esEs30(x0, x1, ty_Int) 24.86/10.75 new_ltEs18(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs4(Nothing, Just(x0), x1) 24.86/10.75 new_primEqNat0(Zero, Succ(x0)) 24.86/10.75 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.86/10.75 new_compare28(x0, x1, True, x2, x3, x4) 24.86/10.75 new_esEs4(Nothing, Nothing, x0) 24.86/10.75 new_ltEs16(True, False) 24.86/10.75 new_esEs24(x0, x1, ty_Char) 24.86/10.75 new_ltEs16(False, True) 24.86/10.75 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.75 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.86/10.75 new_pePe(True, x0) 24.86/10.75 new_ltEs17(LT, LT) 24.86/10.75 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.86/10.75 new_ltEs18(x0, x1, ty_Integer) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.75 new_lt20(x0, x1, ty_Double) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.75 new_lt20(x0, x1, ty_@0) 24.86/10.75 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare30(x0, x1, ty_@0) 24.86/10.75 new_compare11(x0, x1, False, x2, x3) 24.86/10.75 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.86/10.75 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.86/10.75 new_compare26(Nothing, Nothing, False, x0) 24.86/10.75 new_compare30(x0, x1, ty_Double) 24.86/10.75 new_ltEs18(x0, x1, ty_Int) 24.86/10.75 new_esEs23(x0, x1, ty_Integer) 24.86/10.75 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.86/10.75 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.86/10.75 new_compare30(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.75 new_esEs12(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.86/10.75 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.86/10.75 new_asAs(False, x0) 24.86/10.75 new_ltEs18(x0, x1, ty_Char) 24.86/10.75 new_lt18(x0, x1, x2, x3) 24.86/10.75 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_ltEs17(GT, GT) 24.86/10.75 new_sr0(Integer(x0), Integer(x1)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.75 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_ltEs20(x0, x1, ty_Int) 24.86/10.75 new_ltEs18(x0, x1, ty_Bool) 24.86/10.75 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.75 new_ltEs20(x0, x1, app(ty_[], x2)) 24.86/10.75 new_primCmpNat0(Zero, Succ(x0)) 24.86/10.75 new_esEs10(@0, @0) 24.86/10.75 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_primPlusNat0(Zero, x0) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.75 new_esEs25(x0, x1, ty_Double) 24.86/10.75 new_esEs25(x0, x1, ty_@0) 24.86/10.75 new_lt12(x0, x1, ty_Double) 24.86/10.75 new_lt13(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs27(x0, x1, ty_Int) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.75 new_esEs29(x0, x1, ty_@0) 24.86/10.75 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.75 new_ltEs20(x0, x1, ty_Char) 24.86/10.75 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare18(x0, x1) 24.86/10.75 new_ltEs17(LT, EQ) 24.86/10.75 new_ltEs17(EQ, LT) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.75 new_esEs21(x0, x1, ty_Double) 24.86/10.75 new_primCompAux1(x0, x1, x2, x3) 24.86/10.75 new_primMulNat0(Succ(x0), Zero) 24.86/10.75 new_primPlusNat1(Succ(x0), Succ(x1)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.75 new_esEs13([], :(x0, x1), x2) 24.86/10.75 new_primPlusNat1(Zero, Succ(x0)) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.75 new_compare0(:(x0, x1), :(x2, x3), x4) 24.86/10.75 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_compare29(x0, x1, True) 24.86/10.75 new_ltEs20(x0, x1, ty_Double) 24.86/10.75 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs9(EQ, EQ) 24.86/10.75 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs26(x0, x1, ty_Integer) 24.86/10.75 new_compare30(x0, x1, ty_Char) 24.86/10.75 new_compare27(x0, x1, True) 24.86/10.75 new_compare0(:(x0, x1), [], x2) 24.86/10.75 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.75 new_esEs21(x0, x1, ty_Float) 24.86/10.75 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.86/10.75 new_lt13(x0, x1, ty_Float) 24.86/10.75 new_primEqNat0(Succ(x0), Succ(x1)) 24.86/10.75 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.86/10.75 new_esEs4(Just(x0), Nothing, x1) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Float) 24.86/10.75 new_primMulNat0(Zero, Zero) 24.86/10.75 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_compare6(Integer(x0), Integer(x1)) 24.86/10.75 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_primCompAux0(x0, EQ) 24.86/10.75 new_esEs17(Integer(x0), Integer(x1)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.75 new_ltEs20(x0, x1, ty_Ordering) 24.86/10.75 new_compare14(x0, x1) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.75 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.86/10.75 new_esEs22(x0, x1, ty_Float) 24.86/10.75 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.86/10.75 new_esEs20(x0, x1, ty_Float) 24.86/10.75 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_lt12(x0, x1, ty_Float) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.75 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_ltEs12(x0, x1, x2) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.75 new_primMulNat0(Succ(x0), Succ(x1)) 24.86/10.75 new_ltEs8(x0, x1, x2) 24.86/10.75 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.75 new_esEs20(x0, x1, ty_Integer) 24.86/10.75 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_lt12(x0, x1, ty_Integer) 24.86/10.75 new_compare12(x0, x1, False, x2, x3) 24.86/10.75 new_not(True) 24.86/10.75 new_esEs26(x0, x1, ty_@0) 24.86/10.75 new_compare30(x0, x1, ty_Bool) 24.86/10.75 new_lt19(x0, x1) 24.86/10.75 new_lt20(x0, x1, ty_Float) 24.86/10.75 new_primEqNat0(Succ(x0), Zero) 24.86/10.75 new_primMulNat0(Zero, Succ(x0)) 24.86/10.75 new_ltEs6(x0, x1) 24.86/10.75 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.75 new_compare30(x0, x1, ty_Ordering) 24.86/10.75 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs12(x0, x1, ty_Double) 24.86/10.75 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.75 new_compare7(x0, x1, x2) 24.86/10.75 new_compare26(x0, x1, True, x2) 24.86/10.75 new_compare13(x0, x1, False, x2) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.75 new_esEs18(False, False) 24.86/10.75 new_asAs(True, x0) 24.86/10.75 new_ltEs14(x0, x1) 24.86/10.75 new_esEs9(LT, EQ) 24.86/10.75 new_esEs9(EQ, LT) 24.86/10.75 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs9(GT, GT) 24.86/10.75 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.75 new_esEs20(x0, x1, ty_Bool) 24.86/10.75 new_sr(x0, x1) 24.86/10.75 new_esEs23(x0, x1, ty_Float) 24.86/10.75 new_esEs28(x0, x1, ty_Int) 24.86/10.75 new_esEs26(x0, x1, ty_Bool) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.75 new_lt15(x0, x1, x2) 24.86/10.75 new_primMulInt(Pos(x0), Pos(x1)) 24.86/10.75 new_ltEs19(x0, x1, ty_Float) 24.86/10.75 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs9(LT, GT) 24.86/10.75 new_esEs9(GT, LT) 24.86/10.75 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.86/10.75 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_compare30(x0, x1, ty_Integer) 24.86/10.75 new_esEs29(x0, x1, ty_Float) 24.86/10.75 new_lt5(x0, x1) 24.86/10.75 new_esEs11(x0, x1, ty_Ordering) 24.86/10.75 new_esEs24(x0, x1, ty_Ordering) 24.86/10.75 new_esEs21(x0, x1, ty_Bool) 24.86/10.75 new_esEs11(x0, x1, ty_Float) 24.86/10.75 new_esEs12(x0, x1, ty_Char) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.86/10.75 new_lt6(x0, x1) 24.86/10.75 new_compare25(x0, x1, True, x2, x3) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.86/10.75 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.75 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.75 new_ltEs17(LT, GT) 24.86/10.75 new_ltEs17(GT, LT) 24.86/10.75 new_compare9(x0, x1) 24.86/10.75 new_ltEs18(x0, x1, ty_Double) 24.86/10.75 new_esEs12(x0, x1, ty_Int) 24.86/10.75 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_@0) 24.86/10.75 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.86/10.75 new_ltEs20(x0, x1, ty_@0) 24.86/10.75 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_lt11(x0, x1) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.86/10.75 new_primMulInt(Neg(x0), Neg(x1)) 24.86/10.75 new_esEs22(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs20(x0, x1, ty_@0) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.75 new_ltEs7(Just(x0), Nothing, x1) 24.86/10.75 new_esEs25(x0, x1, ty_Float) 24.86/10.75 new_primMulInt(Pos(x0), Neg(x1)) 24.86/10.75 new_primMulInt(Neg(x0), Pos(x1)) 24.86/10.75 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.75 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.86/10.75 new_primCmpNat0(Succ(x0), Succ(x1)) 24.86/10.75 new_esEs11(x0, x1, ty_Int) 24.86/10.75 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.86/10.75 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.86/10.75 new_compare0([], [], x0) 24.86/10.75 new_esEs30(x0, x1, ty_Double) 24.86/10.75 new_esEs21(x0, x1, ty_Integer) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.86/10.75 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.75 new_esEs12(x0, x1, ty_Float) 24.86/10.75 new_compare27(x0, x1, False) 24.86/10.75 new_lt20(x0, x1, ty_Integer) 24.86/10.75 new_esEs24(x0, x1, ty_Double) 24.86/10.75 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs26(x0, x1, ty_Ordering) 24.86/10.75 new_lt17(x0, x1) 24.86/10.75 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.75 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.86/10.75 new_ltEs19(x0, x1, ty_Bool) 24.86/10.75 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.86/10.75 new_esEs23(x0, x1, ty_Double) 24.86/10.75 new_compare30(x0, x1, ty_Float) 24.86/10.75 new_primEqNat0(Zero, Zero) 24.86/10.75 new_esEs25(x0, x1, ty_Int) 24.86/10.75 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.75 new_compare111(x0, x1, False) 24.86/10.75 new_ltEs10(x0, x1) 24.86/10.75 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.86/10.75 new_not(False) 24.86/10.75 new_lt12(x0, x1, ty_Int) 24.86/10.75 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_compare13(x0, x1, True, x2) 24.86/10.75 new_esEs13(:(x0, x1), [], x2) 24.86/10.75 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.75 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.86/10.75 new_ltEs16(True, True) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.75 new_esEs11(x0, x1, ty_Char) 24.86/10.75 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.75 new_lt7(x0, x1, x2, x3) 24.86/10.75 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.75 new_ltEs17(EQ, GT) 24.86/10.75 new_ltEs17(GT, EQ) 24.86/10.75 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.75 new_esEs28(x0, x1, ty_Integer) 24.86/10.75 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs29(x0, x1, ty_Char) 24.86/10.75 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs25(x0, x1, ty_Bool) 24.86/10.75 new_esEs20(x0, x1, ty_Ordering) 24.86/10.75 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.75 new_compare11(x0, x1, True, x2, x3) 24.86/10.75 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_compare12(x0, x1, True, x2, x3) 24.86/10.75 new_compare30(x0, x1, ty_Int) 24.86/10.75 new_esEs11(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs29(x0, x1, ty_Int) 24.86/10.75 new_ltEs15(x0, x1) 24.86/10.75 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs30(x0, x1, app(ty_[], x2)) 24.86/10.75 new_lt12(x0, x1, ty_Bool) 24.86/10.75 new_ltEs19(x0, x1, app(ty_[], x2)) 24.86/10.75 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.86/10.75 new_esEs25(x0, x1, ty_Char) 24.86/10.75 new_esEs21(x0, x1, ty_Int) 24.86/10.75 new_ltEs19(x0, x1, ty_Ordering) 24.86/10.75 new_lt4(x0, x1, x2) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.75 new_esEs13([], [], x0) 24.86/10.75 new_ltEs19(x0, x1, ty_Integer) 24.86/10.75 new_pePe(False, x0) 24.86/10.75 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.75 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.75 new_lt12(x0, x1, ty_Char) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.75 new_compare32(@0, @0) 24.86/10.75 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_primCmpNat0(Zero, Zero) 24.86/10.75 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs21(x0, x1, ty_Char) 24.86/10.75 new_esEs11(x0, x1, ty_Bool) 24.86/10.75 new_lt20(x0, x1, ty_Bool) 24.86/10.75 24.86/10.75 We have to consider all minimal (P,Q,R)-chains. 24.86/10.75 ---------------------------------------- 24.86/10.75 24.86/10.75 (27) TransformationProof (EQUIVALENT) 24.86/10.75 By rewriting [LPAR04] the rule new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), LT), h, ba) at position [5,0] we obtained the following new rules [LPAR04]: 24.86/10.75 24.86/10.75 (new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, LT), h, ba),new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, LT), h, ba)) 24.86/10.75 24.86/10.75 24.86/10.75 ---------------------------------------- 24.86/10.75 24.86/10.75 (28) 24.86/10.75 Obligation: 24.86/10.75 Q DP problem: 24.86/10.75 The TRS P consists of the following rules: 24.86/10.75 24.86/10.75 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw33, Just(vyw40), h, ba) 24.86/10.75 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Just(vyw300), new_esEs29(vyw40, vyw300, ba), ba), LT), h, ba) 24.86/10.75 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw16, Just(vyw18), bb, bc) 24.86/10.75 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare26(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) 24.86/10.75 new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw17, Just(vyw18), bb, bc) 24.86/10.75 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), GT), h, ba) 24.86/10.75 new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw34, Just(vyw40), h, ba) 24.86/10.75 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, LT), h, ba) 24.86/10.75 24.86/10.75 The TRS R consists of the following rules: 24.86/10.75 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.75 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.75 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.75 new_ltEs17(LT, EQ) -> True 24.86/10.75 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs19(vyw400, vyw3000, dde) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.75 new_pePe(True, vyw110) -> True 24.86/10.75 new_compare12(vyw28000, vyw29000, False, bg, bh) -> GT 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw400, vyw3000, ee, ef) 24.86/10.75 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.75 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, cfb) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.75 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.75 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.75 new_esEs18(True, True) -> True 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(ty_[], daa)) -> new_esEs13(vyw28000, vyw29000, daa) 24.86/10.75 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.75 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.75 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.75 new_esEs29(vyw40, vyw300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vyw40, vyw300, bbg, bbh, bca) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], ceb)) -> new_esEs13(vyw400, vyw3000, ceb) 24.86/10.75 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.75 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(ty_Ratio, eh)) -> new_esEs19(vyw400, vyw3000, eh) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, cfd), cfb) -> new_ltEs7(vyw28000, vyw29000, cfd) 24.86/10.75 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.75 new_esEs9(LT, EQ) -> False 24.86/10.75 new_esEs9(EQ, LT) -> False 24.86/10.75 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.75 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bga) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bga), bga) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.75 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.75 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.75 new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw400, vyw3000, ddb, ddc) 24.86/10.75 new_compare8(vyw28000, vyw29000, bd, be) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Maybe, cgg)) -> new_ltEs7(vyw28000, vyw29000, cgg) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.75 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.75 new_primCompAux0(vyw116, GT) -> GT 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.75 new_ltEs5(Left(vyw28000), Right(vyw29000), cgd, cfb) -> True 24.86/10.75 new_esEs21(vyw401, vyw3001, app(ty_[], bdg)) -> new_esEs13(vyw401, vyw3001, bdg) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.75 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, cdd), cde)) -> new_ltEs4(vyw28002, vyw29002, cdd, cde) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, hd) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.75 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw400, vyw3000, bcb, bcc, bcd) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(ty_Maybe, bfd)) -> new_esEs4(vyw402, vyw3002, bfd) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, hd) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.75 new_primCompAux0(vyw116, LT) -> LT 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.75 new_ltEs17(LT, GT) -> True 24.86/10.75 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.75 new_not(True) -> False 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ccf)) -> new_ltEs7(vyw28002, vyw29002, ccf) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.75 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(ty_Maybe, gb)) -> new_esEs4(vyw401, vyw3001, gb) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.75 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bgd)) -> new_compare7(vyw28000, vyw29000, bgd) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(ty_Ratio, bfe)) -> new_esEs19(vyw402, vyw3002, bfe) 24.86/10.75 new_ltEs17(EQ, GT) -> True 24.86/10.75 new_esEs11(vyw400, vyw3000, app(ty_Maybe, eg)) -> new_esEs4(vyw400, vyw3000, eg) 24.86/10.75 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dea) -> new_asAs(new_esEs27(vyw400, vyw3000, dea), new_esEs28(vyw401, vyw3001, dea)) 24.86/10.75 new_esEs29(vyw40, vyw300, app(ty_[], dce)) -> new_esEs13(vyw40, vyw300, dce) 24.86/10.75 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw28000, vyw29000, cg, da, db) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs13(vyw28001, vyw29001, dbf, dbg, dbh) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.75 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.75 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.75 new_lt20(vyw28000, vyw29000, app(ty_[], daa)) -> new_lt4(vyw28000, vyw29000, daa) 24.86/10.75 new_esEs13([], [], dce) -> True 24.86/10.75 new_ltEs7(Nothing, Just(vyw29000), cc) -> True 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, hd) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_compare26(Nothing, Nothing, False, ddh) -> LT 24.86/10.75 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.75 new_ltEs17(LT, LT) -> True 24.86/10.75 new_esEs22(vyw402, vyw3002, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw402, vyw3002, bfb, bfc) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vyw28000, vyw29000, dad, dae, daf) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, cfh), cga), cfb) -> new_ltEs5(vyw28000, vyw29000, cfh, cga) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.75 new_compare13(vyw95, vyw96, False, ca) -> GT 24.86/10.75 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(ty_Ratio, gc)) -> new_esEs19(vyw401, vyw3001, gc) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Ratio, cgf)) -> new_ltEs12(vyw28000, vyw29000, cgf) 24.86/10.75 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(vyw2800, vyw2900, caf, cag, cah) 24.86/10.75 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, chg), chh)) -> new_ltEs4(vyw2800, vyw2900, chg, chh) 24.86/10.75 new_lt18(vyw28000, vyw29000, bg, bh) -> new_esEs9(new_compare16(vyw28000, vyw29000, bg, bh), LT) 24.86/10.75 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.75 new_esEs30(vyw18, vyw13, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs5(vyw18, vyw13, bhd, bhe, bhf) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.75 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.75 new_compare28(vyw28000, vyw29000, False, gf, gg, gh) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(ty_[], ed)) -> new_esEs13(vyw400, vyw3000, ed) 24.86/10.75 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ha), hb), hc), hd) -> new_esEs5(vyw400, vyw3000, ha, hb, hc) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, cfc), cfb) -> new_ltEs12(vyw28000, vyw29000, cfc) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, cc)) -> new_ltEs7(vyw2800, vyw2900, cc) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, de), df)) -> new_ltEs4(vyw28000, vyw29000, de, df) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, dcc), dcd)) -> new_ltEs4(vyw28001, vyw29001, dcc, dcd) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(ty_[], cbb)) -> new_esEs13(vyw28001, vyw29001, cbb) 24.86/10.75 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(vyw401, vyw3001, bdd, bde, bdf) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.75 new_compare110(vyw28000, vyw29000, False, gf, gg, gh) -> GT 24.86/10.75 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 24.86/10.75 new_pePe(False, vyw110) -> vyw110 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.75 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.75 new_compare25(vyw28000, vyw29000, True, bg, bh) -> EQ 24.86/10.75 new_ltEs12(vyw2800, vyw2900, bfh) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, bfh), GT)) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Integer) -> new_esEs17(vyw40, vyw300) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(app(ty_Either, bff), bfg)) -> new_esEs6(vyw402, vyw3002, bff, bfg) 24.86/10.75 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vyw28000, vyw29000, gf, gg, gh) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_esEs19(vyw28000, vyw29000, dab) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Char) -> new_esEs14(vyw40, vyw300) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, cfb) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_@2, che), chf)) -> new_ltEs4(vyw28000, vyw29000, che, chf) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.75 new_compare11(vyw28000, vyw29000, False, bd, be) -> GT 24.86/10.75 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.75 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw401, vyw3001, fh, ga) 24.86/10.75 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dg, dh) -> new_asAs(new_esEs11(vyw400, vyw3000, dg), new_esEs12(vyw401, vyw3001, dh)) 24.86/10.75 new_esEs26(vyw400, vyw3000, app(ty_[], dda)) -> new_esEs13(vyw400, vyw3000, dda) 24.86/10.75 new_compare24(vyw28000, vyw29000, False, bd, be) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw400, vyw3000, cdg, cdh, cea) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs13(vyw28002, vyw29002, ccg, cch, cda) 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.75 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs5(vyw400, vyw3000, ea, eb, ec) 24.86/10.75 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.75 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.75 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, cfb) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw28001, vyw29001, cbh, cca) 24.86/10.75 new_esEs13(:(vyw400, vyw401), [], dce) -> False 24.86/10.75 new_esEs13([], :(vyw3000, vyw3001), dce) -> False 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, bab), bac), hd) -> new_esEs6(vyw400, vyw3000, bab, bac) 24.86/10.75 new_primCompAux1(vyw28000, vyw29000, vyw111, bga) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, bga)) 24.86/10.75 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.75 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.75 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.75 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), caf, cag, cah) -> new_pePe(new_lt12(vyw28000, vyw29000, caf), new_asAs(new_esEs23(vyw28000, vyw29000, caf), new_pePe(new_lt13(vyw28001, vyw29001, cag), new_asAs(new_esEs24(vyw28001, vyw29001, cag), new_ltEs18(vyw28002, vyw29002, cah))))) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vyw400, vyw3000, bae, baf, bag) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(vyw28000, vyw29000, gf, gg, gh) 24.86/10.75 new_compare26(vyw280, vyw290, True, ddh) -> EQ 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.75 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.75 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_[], bah)) -> new_esEs13(vyw400, vyw3000, bah) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, hf), hg), hd) -> new_esEs7(vyw400, vyw3000, hf, hg) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, cfe), cff), cfg), cfb) -> new_ltEs13(vyw28000, vyw29000, cfe, cff, cfg) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.75 new_lt12(vyw28000, vyw29000, app(ty_[], bf)) -> new_lt4(vyw28000, vyw29000, bf) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.75 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(ty_Maybe, bch)) -> new_esEs4(vyw400, vyw3000, bch) 24.86/10.75 new_compare30(vyw28000, vyw29000, app(ty_Ratio, bgc)) -> new_compare19(vyw28000, vyw29000, bgc) 24.86/10.75 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.75 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.75 new_esEs9(LT, LT) -> True 24.86/10.75 new_lt13(vyw28001, vyw29001, app(ty_[], cbb)) -> new_lt4(vyw28001, vyw29001, cbb) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(app(ty_Either, fa), fb)) -> new_esEs6(vyw400, vyw3000, fa, fb) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Bool) -> new_esEs18(vyw40, vyw300) 24.86/10.75 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bbg, bbh, bca) -> new_asAs(new_esEs20(vyw400, vyw3000, bbg), new_asAs(new_esEs21(vyw401, vyw3001, bbh), new_esEs22(vyw402, vyw3002, bca))) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs17(vyw18, vyw13) 24.86/10.75 new_compare25(vyw28000, vyw29000, False, bg, bh) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.75 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_esEs21(vyw401, vyw3001, app(ty_Maybe, beb)) -> new_esEs4(vyw401, vyw3001, beb) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(app(ty_Either, gd), ge)) -> new_esEs6(vyw401, vyw3001, gd, ge) 24.86/10.75 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.75 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, cfb) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyw28000, vyw29000, dba, dbb) 24.86/10.75 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.75 new_lt20(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_lt10(vyw28000, vyw29000, dac) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, hd) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs18(vyw18, vyw13) 24.86/10.75 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), chg, chh) -> new_pePe(new_lt20(vyw28000, vyw29000, chg), new_asAs(new_esEs25(vyw28000, vyw29000, chg), new_ltEs19(vyw28001, vyw29001, chh))) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_@2, bba), bbb)) -> new_esEs7(vyw400, vyw3000, bba, bbb) 24.86/10.75 new_compare16(vyw28000, vyw29000, bg, bh) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.75 new_ltEs17(EQ, EQ) -> True 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, cee)) -> new_esEs4(vyw400, vyw3000, cee) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_esEs6(vyw28000, vyw29000, bg, bh) 24.86/10.75 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.75 new_esEs21(vyw401, vyw3001, app(app(ty_Either, bed), bee)) -> new_esEs6(vyw401, vyw3001, bed, bee) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, dca), dcb)) -> new_ltEs5(vyw28001, vyw29001, dca, dcb) 24.86/10.75 new_ltEs17(GT, LT) -> False 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.75 new_ltEs17(EQ, LT) -> False 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs8(vyw18, vyw13) 24.86/10.75 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.75 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.75 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.75 new_esEs30(vyw18, vyw13, app(ty_Maybe, cab)) -> new_esEs4(vyw18, vyw13, cab) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_esEs4(vyw28001, vyw29001, cbd) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_Either, bbe), bbf)) -> new_esEs6(vyw400, vyw3000, bbe, bbf) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(ty_[], bf)) -> new_esEs13(vyw28000, vyw29000, bf) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, cgb), cgc), cfb) -> new_ltEs4(vyw28000, vyw29000, cgb, cgc) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.75 new_lt7(vyw28000, vyw29000, bd, be) -> new_esEs9(new_compare8(vyw28000, vyw29000, bd, be), LT) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(vyw402, vyw3002, bef, beg, beh) 24.86/10.75 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.75 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw400, vyw3000, ceg, ceh) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, dc), dd)) -> new_ltEs5(vyw28000, vyw29000, dc, dd) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, hd) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_esEs19(vyw28001, vyw29001, cbc) 24.86/10.75 new_compare0([], :(vyw29000, vyw29001), bga) -> LT 24.86/10.75 new_asAs(True, vyw102) -> vyw102 24.86/10.75 new_ltEs5(Right(vyw28000), Left(vyw29000), cgd, cfb) -> False 24.86/10.75 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(vyw401, vyw3001, fc, fd, ff) 24.86/10.75 new_ltEs8(vyw2800, vyw2900, bga) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, bga), GT)) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.75 new_compare26(Just(vyw2800), Just(vyw2900), False, ddh) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, ddh), ddh) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, baa), hd) -> new_esEs19(vyw400, vyw3000, baa) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.75 new_lt20(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_lt7(vyw28000, vyw29000, dba, dbb) 24.86/10.75 new_esEs30(vyw18, vyw13, app(ty_Ratio, cac)) -> new_esEs19(vyw18, vyw13, cac) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.75 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Left(vyw400), Right(vyw3000), bad, hd) -> False 24.86/10.75 new_esEs6(Right(vyw400), Left(vyw3000), bad, hd) -> False 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_ltEs16(True, False) -> False 24.86/10.75 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, cgd), cfb)) -> new_ltEs5(vyw2800, vyw2900, cgd, cfb) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs18(False, False) -> True 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.75 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.75 new_compare13(vyw95, vyw96, True, ca) -> LT 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.75 new_compare24(vyw28000, vyw29000, True, bd, be) -> EQ 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_esEs7(vyw28001, vyw29001, ccb, ccc) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.75 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.75 new_esEs30(vyw18, vyw13, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw18, vyw13, bhh, caa) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(ty_[], ccd)) -> new_ltEs8(vyw28002, vyw29002, ccd) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_Either, chc), chd)) -> new_ltEs5(vyw28000, vyw29000, chc, chd) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Ratio, bbd)) -> new_esEs19(vyw400, vyw3000, bbd) 24.86/10.75 new_compare0([], [], bga) -> EQ 24.86/10.75 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.75 new_ltEs7(Nothing, Nothing, cc) -> True 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.75 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.75 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.75 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(ty_[], fg)) -> new_esEs13(vyw401, vyw3001, fg) 24.86/10.75 new_lt12(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_lt18(vyw28000, vyw29000, bg, bh) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) 24.86/10.75 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hd) -> new_esEs4(vyw400, vyw3000, hh) 24.86/10.75 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(ty_[], dbc)) -> new_ltEs8(vyw28001, vyw29001, dbc) 24.86/10.75 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.75 new_esEs26(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs6(vyw400, vyw3000, ddf, ddg) 24.86/10.75 new_ltEs7(Just(vyw28000), Nothing, cc) -> False 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_esEs7(vyw28000, vyw29000, bd, be) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_compare28(vyw28000, vyw29000, True, gf, gg, gh) -> EQ 24.86/10.75 new_lt15(vyw28000, vyw29000, cba) -> new_esEs9(new_compare19(vyw28000, vyw29000, cba), LT) 24.86/10.75 new_esEs4(Nothing, Nothing, cdf) -> True 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.75 new_esEs4(Nothing, Just(vyw3000), cdf) -> False 24.86/10.75 new_esEs4(Just(vyw400), Nothing, cdf) -> False 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.75 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_lt15(vyw28000, vyw29000, dab) 24.86/10.75 new_lt13(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_lt18(vyw28001, vyw29001, cbh, cca) 24.86/10.75 new_esEs29(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs19(vyw40, vyw300, dea) 24.86/10.75 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.75 new_compare32(@0, @0) -> EQ 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Maybe, bbc)) -> new_esEs4(vyw400, vyw3000, bbc) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_esEs6(vyw28000, vyw29000, dag, dah) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], cfa), cfb) -> new_ltEs8(vyw28000, vyw29000, cfa) 24.86/10.75 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.75 new_esEs9(EQ, EQ) -> True 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(ty_[], bga)) -> new_ltEs8(vyw2800, vyw2900, bga) 24.86/10.75 new_compare26(Just(vyw2800), Nothing, False, ddh) -> GT 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, dbe)) -> new_ltEs7(vyw28001, vyw29001, dbe) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, bfh)) -> new_ltEs12(vyw2800, vyw2900, bfh) 24.86/10.75 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.75 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.75 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cd)) -> new_ltEs8(vyw28000, vyw29000, cd) 24.86/10.75 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(vyw400, vyw3000, bdb, bdc) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.75 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, cdb), cdc)) -> new_ltEs5(vyw28002, vyw29002, cdb, cdc) 24.86/10.75 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.75 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.75 new_compare30(vyw28000, vyw29000, app(ty_[], bgb)) -> new_compare0(vyw28000, vyw29000, bgb) 24.86/10.75 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_esEs19(vyw28000, vyw29000, cba) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, ce)) -> new_ltEs12(vyw28000, vyw29000, ce) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, dbd)) -> new_ltEs12(vyw28001, vyw29001, dbd) 24.86/10.75 new_esEs29(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs4(vyw40, vyw300, cdf) 24.86/10.75 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.75 new_lt4(vyw28000, vyw29000, bf) -> new_esEs9(new_compare0(vyw28000, vyw29000, bf), LT) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.75 new_compare110(vyw28000, vyw29000, True, gf, gg, gh) -> LT 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cf)) -> new_ltEs7(vyw28000, vyw29000, cf) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.75 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, cfb) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.75 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_lt16(vyw28000, vyw29000, dad, dae, daf) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.75 new_not(False) -> True 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, hd) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_[], cge)) -> new_ltEs8(vyw28000, vyw29000, cge) 24.86/10.75 new_lt16(vyw28000, vyw29000, gf, gg, gh) -> new_esEs9(new_compare17(vyw28000, vyw29000, gf, gg, gh), LT) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.75 new_esEs9(GT, GT) -> True 24.86/10.75 new_compare0(:(vyw28000, vyw28001), [], bga) -> GT 24.86/10.75 new_esEs18(False, True) -> False 24.86/10.75 new_esEs18(True, False) -> False 24.86/10.75 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.75 new_esEs29(vyw40, vyw300, app(app(ty_Either, bad), hd)) -> new_esEs6(vyw40, vyw300, bad, hd) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(ty_[], bfa)) -> new_esEs13(vyw402, vyw3002, bfa) 24.86/10.75 new_esEs10(@0, @0) -> True 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cce)) -> new_ltEs12(vyw28002, vyw29002, cce) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.75 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bgh), bha)) -> new_compare16(vyw28000, vyw29000, bgh, bha) 24.86/10.75 new_lt13(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_lt7(vyw28001, vyw29001, ccb, ccc) 24.86/10.75 new_esEs29(vyw40, vyw300, app(app(ty_@2, dg), dh)) -> new_esEs7(vyw40, vyw300, dg, dh) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.75 new_esEs9(EQ, GT) -> False 24.86/10.75 new_esEs9(GT, EQ) -> False 24.86/10.75 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.75 new_ltEs16(False, False) -> True 24.86/10.75 new_compare11(vyw28000, vyw29000, True, bd, be) -> LT 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.75 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) 24.86/10.75 new_esEs30(vyw18, vyw13, app(app(ty_Either, cad), cae)) -> new_esEs6(vyw18, vyw13, cad, cae) 24.86/10.75 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.75 new_lt20(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_lt18(vyw28000, vyw29000, dag, dah) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.75 new_esEs30(vyw18, vyw13, app(ty_[], bhg)) -> new_esEs13(vyw18, vyw13, bhg) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.75 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.75 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.75 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.75 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare17(vyw28000, vyw29000, bge, bgf, bgg) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.75 new_ltEs17(GT, EQ) -> False 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_esEs4(vyw28000, vyw29000, dac) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.75 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bhb), bhc)) -> new_compare8(vyw28000, vyw29000, bhb, bhc) 24.86/10.75 new_ltEs16(True, True) -> True 24.86/10.75 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_lt15(vyw28000, vyw29000, cba) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs13(vyw28000, vyw29000, cgh, cha, chb) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs10(vyw18, vyw13) 24.86/10.75 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.75 new_esEs21(vyw401, vyw3001, app(ty_Ratio, bec)) -> new_esEs19(vyw401, vyw3001, bec) 24.86/10.75 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, hd) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.75 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(vyw400, vyw3000, dcf, dcg, dch) 24.86/10.75 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bdh), bea)) -> new_esEs7(vyw401, vyw3001, bdh, bea) 24.86/10.75 new_compare26(Nothing, Just(vyw2900), False, ddh) -> LT 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.75 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_lt15(vyw28001, vyw29001, cbc) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, cec), ced)) -> new_esEs7(vyw400, vyw3000, cec, ced) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.75 new_compare17(vyw28000, vyw29000, gf, gg, gh) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.75 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.75 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], he), hd) -> new_esEs13(vyw400, vyw3000, he) 24.86/10.75 new_ltEs17(GT, GT) -> True 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, cef)) -> new_esEs19(vyw400, vyw3000, cef) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.75 new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs4(vyw400, vyw3000, ddd) 24.86/10.75 new_primEqNat0(Zero, Zero) -> True 24.86/10.75 new_lt13(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_lt10(vyw28001, vyw29001, cbd) 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_esEs9(LT, GT) -> False 24.86/10.75 new_esEs9(GT, LT) -> False 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, cfb) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.75 new_asAs(False, vyw102) -> False 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, cfb) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Ordering) -> new_esEs9(vyw40, vyw300) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, cfb) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(ty_Ratio, bda)) -> new_esEs19(vyw400, vyw3000, bda) 24.86/10.75 new_lt12(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_lt7(vyw28000, vyw29000, bd, be) 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.75 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, hd) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_ltEs16(False, True) -> True 24.86/10.75 new_compare12(vyw28000, vyw29000, True, bg, bh) -> LT 24.86/10.75 new_esEs20(vyw400, vyw3000, app(ty_[], bce)) -> new_esEs13(vyw400, vyw3000, bce) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(app(ty_@2, bcf), bcg)) -> new_esEs7(vyw400, vyw3000, bcf, bcg) 24.86/10.75 24.86/10.75 The set Q consists of the following terms: 24.86/10.75 24.86/10.75 new_ltEs20(x0, x1, ty_Float) 24.86/10.75 new_esEs22(x0, x1, ty_Int) 24.86/10.75 new_ltEs19(x0, x1, ty_Char) 24.86/10.75 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs27(x0, x1, ty_Integer) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.75 new_lt20(x0, x1, ty_Char) 24.86/10.75 new_compare24(x0, x1, True, x2, x3) 24.86/10.75 new_ltEs17(EQ, EQ) 24.86/10.75 new_lt13(x0, x1, ty_Int) 24.86/10.75 new_primPlusNat1(Succ(x0), Zero) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.75 new_esEs30(x0, x1, ty_Bool) 24.86/10.75 new_esEs24(x0, x1, ty_Bool) 24.86/10.75 new_primPlusNat1(Zero, Zero) 24.86/10.75 new_ltEs19(x0, x1, ty_Int) 24.86/10.75 new_lt13(x0, x1, ty_Ordering) 24.86/10.75 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.86/10.75 new_compare25(x0, x1, False, x2, x3) 24.86/10.75 new_esEs22(x0, x1, ty_Ordering) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.75 new_lt10(x0, x1, x2) 24.86/10.75 new_esEs30(x0, x1, ty_Integer) 24.86/10.75 new_esEs23(x0, x1, ty_@0) 24.86/10.75 new_esEs21(x0, x1, ty_Ordering) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.86/10.75 new_compare10(x0, x1, True) 24.86/10.75 new_lt12(x0, x1, ty_Ordering) 24.86/10.75 new_esEs18(True, True) 24.86/10.75 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.75 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.75 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.75 new_primCompAux0(x0, GT) 24.86/10.75 new_lt20(x0, x1, ty_Int) 24.86/10.75 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.75 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs24(x0, x1, ty_@0) 24.86/10.75 new_esEs11(x0, x1, ty_Integer) 24.86/10.75 new_esEs8(x0, x1) 24.86/10.75 new_lt20(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs23(x0, x1, ty_Bool) 24.86/10.75 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.75 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.75 new_lt16(x0, x1, x2, x3, x4) 24.86/10.75 new_compare8(x0, x1, x2, x3) 24.86/10.75 new_esEs30(x0, x1, ty_@0) 24.86/10.75 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.75 new_ltEs18(x0, x1, ty_@0) 24.86/10.75 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs11(x0, x1, ty_@0) 24.86/10.75 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.75 new_esEs12(x0, x1, ty_Integer) 24.86/10.75 new_esEs29(x0, x1, ty_Bool) 24.86/10.75 new_ltEs9(x0, x1) 24.86/10.75 new_esEs23(x0, x1, ty_Char) 24.86/10.75 new_ltEs7(Nothing, Nothing, x0) 24.86/10.75 new_ltEs19(x0, x1, ty_@0) 24.86/10.75 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs9(LT, LT) 24.86/10.75 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.75 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.75 new_ltEs16(False, False) 24.86/10.75 new_primCmpNat0(Succ(x0), Zero) 24.86/10.75 new_esEs23(x0, x1, ty_Int) 24.86/10.75 new_esEs12(x0, x1, ty_@0) 24.86/10.75 new_compare31(Char(x0), Char(x1)) 24.86/10.75 new_ltEs19(x0, x1, ty_Double) 24.86/10.75 new_lt20(x0, x1, ty_Ordering) 24.86/10.75 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.75 new_esEs29(x0, x1, app(ty_[], x2)) 24.86/10.75 new_ltEs11(x0, x1) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.75 new_esEs9(EQ, GT) 24.86/10.75 new_esEs9(GT, EQ) 24.86/10.75 new_primPlusNat0(Succ(x0), x1) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.75 new_esEs22(x0, x1, ty_@0) 24.86/10.75 new_esEs20(x0, x1, ty_Int) 24.86/10.75 new_esEs14(Char(x0), Char(x1)) 24.86/10.75 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_compare111(x0, x1, True) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.75 new_esEs26(x0, x1, ty_Double) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.75 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.86/10.75 new_esEs25(x0, x1, ty_Integer) 24.86/10.75 new_esEs20(x0, x1, app(ty_[], x2)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.75 new_esEs23(x0, x1, app(ty_[], x2)) 24.86/10.75 new_compare17(x0, x1, x2, x3, x4) 24.86/10.75 new_esEs22(x0, x1, ty_Bool) 24.86/10.75 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.75 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.75 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.75 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs20(x0, x1, ty_Char) 24.86/10.75 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.75 new_esEs24(x0, x1, ty_Integer) 24.86/10.75 new_compare110(x0, x1, False, x2, x3, x4) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.75 new_ltEs7(Nothing, Just(x0), x1) 24.86/10.75 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs25(x0, x1, ty_Ordering) 24.86/10.75 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.75 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.75 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.75 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs29(x0, x1, ty_Integer) 24.86/10.75 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs29(x0, x1, ty_Ordering) 24.86/10.75 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs22(x0, x1, ty_Char) 24.86/10.75 new_esEs22(x0, x1, ty_Double) 24.86/10.75 new_esEs20(x0, x1, ty_Double) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.75 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs12(x0, x1, ty_Bool) 24.86/10.75 new_lt13(x0, x1, ty_Double) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.75 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_lt13(x0, x1, ty_Char) 24.86/10.75 new_compare29(x0, x1, False) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.75 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_compare24(x0, x1, False, x2, x3) 24.86/10.75 new_esEs29(x0, x1, ty_Double) 24.86/10.75 new_esEs22(x0, x1, ty_Integer) 24.86/10.75 new_ltEs20(x0, x1, ty_Bool) 24.86/10.75 new_esEs30(x0, x1, ty_Ordering) 24.86/10.75 new_esEs26(x0, x1, ty_Int) 24.86/10.75 new_esEs24(x0, x1, ty_Float) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.75 new_compare16(x0, x1, x2, x3) 24.86/10.75 new_compare10(x0, x1, False) 24.86/10.75 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.75 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_lt13(x0, x1, ty_Bool) 24.86/10.75 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs11(x0, x1, ty_Double) 24.86/10.75 new_lt9(x0, x1) 24.86/10.75 new_esEs30(x0, x1, ty_Float) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.75 new_esEs26(x0, x1, ty_Char) 24.86/10.75 new_lt13(x0, x1, ty_@0) 24.86/10.75 new_compare26(Just(x0), Nothing, False, x1) 24.86/10.75 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.75 new_esEs21(x0, x1, ty_@0) 24.86/10.75 new_lt12(x0, x1, ty_@0) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.86/10.75 new_ltEs18(x0, x1, ty_Ordering) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.75 new_esEs23(x0, x1, ty_Ordering) 24.86/10.75 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.75 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.75 new_lt14(x0, x1) 24.86/10.75 new_esEs18(False, True) 24.86/10.75 new_esEs18(True, False) 24.86/10.75 new_esEs30(x0, x1, ty_Char) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.86/10.75 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_lt13(x0, x1, ty_Integer) 24.86/10.75 new_compare0([], :(x0, x1), x2) 24.86/10.75 new_ltEs20(x0, x1, ty_Integer) 24.86/10.75 new_ltEs18(x0, x1, ty_Float) 24.86/10.75 new_esEs26(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.75 new_esEs12(x0, x1, ty_Ordering) 24.86/10.75 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_primCompAux0(x0, LT) 24.86/10.75 new_esEs24(x0, x1, ty_Int) 24.86/10.75 new_esEs26(x0, x1, ty_Float) 24.86/10.75 new_lt8(x0, x1) 24.86/10.75 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.86/10.75 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.75 new_esEs30(x0, x1, ty_Int) 24.86/10.75 new_ltEs18(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs4(Nothing, Just(x0), x1) 24.86/10.75 new_primEqNat0(Zero, Succ(x0)) 24.86/10.75 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.86/10.75 new_compare28(x0, x1, True, x2, x3, x4) 24.86/10.75 new_esEs4(Nothing, Nothing, x0) 24.86/10.75 new_ltEs16(True, False) 24.86/10.75 new_esEs24(x0, x1, ty_Char) 24.86/10.75 new_ltEs16(False, True) 24.86/10.75 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.75 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.86/10.75 new_pePe(True, x0) 24.86/10.75 new_ltEs17(LT, LT) 24.86/10.75 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.86/10.75 new_ltEs18(x0, x1, ty_Integer) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.75 new_lt20(x0, x1, ty_Double) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.75 new_lt20(x0, x1, ty_@0) 24.86/10.75 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare30(x0, x1, ty_@0) 24.86/10.75 new_compare11(x0, x1, False, x2, x3) 24.86/10.75 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.86/10.75 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.86/10.75 new_compare26(Nothing, Nothing, False, x0) 24.86/10.75 new_compare30(x0, x1, ty_Double) 24.86/10.75 new_ltEs18(x0, x1, ty_Int) 24.86/10.75 new_esEs23(x0, x1, ty_Integer) 24.86/10.75 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.86/10.75 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.86/10.75 new_compare30(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.75 new_esEs12(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.86/10.75 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.86/10.75 new_asAs(False, x0) 24.86/10.75 new_ltEs18(x0, x1, ty_Char) 24.86/10.75 new_lt18(x0, x1, x2, x3) 24.86/10.75 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_ltEs17(GT, GT) 24.86/10.75 new_sr0(Integer(x0), Integer(x1)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.75 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_ltEs20(x0, x1, ty_Int) 24.86/10.75 new_ltEs18(x0, x1, ty_Bool) 24.86/10.75 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.75 new_ltEs20(x0, x1, app(ty_[], x2)) 24.86/10.75 new_primCmpNat0(Zero, Succ(x0)) 24.86/10.75 new_esEs10(@0, @0) 24.86/10.75 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_primPlusNat0(Zero, x0) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.75 new_esEs25(x0, x1, ty_Double) 24.86/10.75 new_esEs25(x0, x1, ty_@0) 24.86/10.75 new_lt12(x0, x1, ty_Double) 24.86/10.75 new_lt13(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs27(x0, x1, ty_Int) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.75 new_esEs29(x0, x1, ty_@0) 24.86/10.75 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.75 new_ltEs20(x0, x1, ty_Char) 24.86/10.75 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare18(x0, x1) 24.86/10.75 new_ltEs17(LT, EQ) 24.86/10.75 new_ltEs17(EQ, LT) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.75 new_esEs21(x0, x1, ty_Double) 24.86/10.75 new_primCompAux1(x0, x1, x2, x3) 24.86/10.75 new_primMulNat0(Succ(x0), Zero) 24.86/10.75 new_primPlusNat1(Succ(x0), Succ(x1)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.75 new_esEs13([], :(x0, x1), x2) 24.86/10.75 new_primPlusNat1(Zero, Succ(x0)) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.75 new_compare0(:(x0, x1), :(x2, x3), x4) 24.86/10.75 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_compare29(x0, x1, True) 24.86/10.75 new_ltEs20(x0, x1, ty_Double) 24.86/10.75 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs9(EQ, EQ) 24.86/10.75 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs26(x0, x1, ty_Integer) 24.86/10.75 new_compare30(x0, x1, ty_Char) 24.86/10.75 new_compare27(x0, x1, True) 24.86/10.75 new_compare0(:(x0, x1), [], x2) 24.86/10.75 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.75 new_esEs21(x0, x1, ty_Float) 24.86/10.75 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.86/10.75 new_lt13(x0, x1, ty_Float) 24.86/10.75 new_primEqNat0(Succ(x0), Succ(x1)) 24.86/10.75 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.86/10.75 new_esEs4(Just(x0), Nothing, x1) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Float) 24.86/10.75 new_primMulNat0(Zero, Zero) 24.86/10.75 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_compare6(Integer(x0), Integer(x1)) 24.86/10.75 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_primCompAux0(x0, EQ) 24.86/10.75 new_esEs17(Integer(x0), Integer(x1)) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.75 new_ltEs20(x0, x1, ty_Ordering) 24.86/10.75 new_compare14(x0, x1) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.75 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.75 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.86/10.75 new_esEs22(x0, x1, ty_Float) 24.86/10.75 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.86/10.75 new_esEs20(x0, x1, ty_Float) 24.86/10.75 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_lt12(x0, x1, ty_Float) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.75 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_ltEs12(x0, x1, x2) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.75 new_primMulNat0(Succ(x0), Succ(x1)) 24.86/10.75 new_ltEs8(x0, x1, x2) 24.86/10.75 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.75 new_esEs20(x0, x1, ty_Integer) 24.86/10.75 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_lt12(x0, x1, ty_Integer) 24.86/10.75 new_compare12(x0, x1, False, x2, x3) 24.86/10.75 new_not(True) 24.86/10.75 new_esEs26(x0, x1, ty_@0) 24.86/10.75 new_compare30(x0, x1, ty_Bool) 24.86/10.75 new_lt19(x0, x1) 24.86/10.75 new_lt20(x0, x1, ty_Float) 24.86/10.75 new_primEqNat0(Succ(x0), Zero) 24.86/10.75 new_primMulNat0(Zero, Succ(x0)) 24.86/10.75 new_ltEs6(x0, x1) 24.86/10.75 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.75 new_compare30(x0, x1, ty_Ordering) 24.86/10.75 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs12(x0, x1, ty_Double) 24.86/10.75 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.75 new_compare7(x0, x1, x2) 24.86/10.75 new_compare26(x0, x1, True, x2) 24.86/10.75 new_compare13(x0, x1, False, x2) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.75 new_esEs18(False, False) 24.86/10.75 new_asAs(True, x0) 24.86/10.75 new_ltEs14(x0, x1) 24.86/10.75 new_esEs9(LT, EQ) 24.86/10.75 new_esEs9(EQ, LT) 24.86/10.75 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs9(GT, GT) 24.86/10.75 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.75 new_esEs20(x0, x1, ty_Bool) 24.86/10.75 new_sr(x0, x1) 24.86/10.75 new_esEs23(x0, x1, ty_Float) 24.86/10.75 new_esEs28(x0, x1, ty_Int) 24.86/10.75 new_esEs26(x0, x1, ty_Bool) 24.86/10.75 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.75 new_lt15(x0, x1, x2) 24.86/10.75 new_primMulInt(Pos(x0), Pos(x1)) 24.86/10.75 new_ltEs19(x0, x1, ty_Float) 24.86/10.75 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs9(LT, GT) 24.86/10.75 new_esEs9(GT, LT) 24.86/10.75 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.86/10.75 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_compare30(x0, x1, ty_Integer) 24.86/10.75 new_esEs29(x0, x1, ty_Float) 24.86/10.75 new_lt5(x0, x1) 24.86/10.75 new_esEs11(x0, x1, ty_Ordering) 24.86/10.75 new_esEs24(x0, x1, ty_Ordering) 24.86/10.75 new_esEs21(x0, x1, ty_Bool) 24.86/10.75 new_esEs11(x0, x1, ty_Float) 24.86/10.75 new_esEs12(x0, x1, ty_Char) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.86/10.75 new_lt6(x0, x1) 24.86/10.75 new_compare25(x0, x1, True, x2, x3) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.86/10.75 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.75 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.75 new_ltEs17(LT, GT) 24.86/10.75 new_ltEs17(GT, LT) 24.86/10.75 new_compare9(x0, x1) 24.86/10.75 new_ltEs18(x0, x1, ty_Double) 24.86/10.75 new_esEs12(x0, x1, ty_Int) 24.86/10.75 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_@0) 24.86/10.75 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.86/10.75 new_ltEs20(x0, x1, ty_@0) 24.86/10.75 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_lt11(x0, x1) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.86/10.75 new_primMulInt(Neg(x0), Neg(x1)) 24.86/10.75 new_esEs22(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs20(x0, x1, ty_@0) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.75 new_ltEs7(Just(x0), Nothing, x1) 24.86/10.75 new_esEs25(x0, x1, ty_Float) 24.86/10.75 new_primMulInt(Pos(x0), Neg(x1)) 24.86/10.75 new_primMulInt(Neg(x0), Pos(x1)) 24.86/10.75 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.75 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.86/10.75 new_primCmpNat0(Succ(x0), Succ(x1)) 24.86/10.75 new_esEs11(x0, x1, ty_Int) 24.86/10.75 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.86/10.75 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.75 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.86/10.75 new_compare0([], [], x0) 24.86/10.75 new_esEs30(x0, x1, ty_Double) 24.86/10.75 new_esEs21(x0, x1, ty_Integer) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.86/10.75 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.86/10.75 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.75 new_esEs12(x0, x1, ty_Float) 24.86/10.75 new_compare27(x0, x1, False) 24.86/10.75 new_lt20(x0, x1, ty_Integer) 24.86/10.75 new_esEs24(x0, x1, ty_Double) 24.86/10.75 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_esEs26(x0, x1, ty_Ordering) 24.86/10.75 new_lt17(x0, x1) 24.86/10.75 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.75 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.86/10.75 new_ltEs19(x0, x1, ty_Bool) 24.86/10.75 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.86/10.75 new_esEs23(x0, x1, ty_Double) 24.86/10.75 new_compare30(x0, x1, ty_Float) 24.86/10.75 new_primEqNat0(Zero, Zero) 24.86/10.75 new_esEs25(x0, x1, ty_Int) 24.86/10.75 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.75 new_compare111(x0, x1, False) 24.86/10.75 new_ltEs10(x0, x1) 24.86/10.75 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.86/10.75 new_not(False) 24.86/10.75 new_lt12(x0, x1, ty_Int) 24.86/10.75 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.75 new_compare13(x0, x1, True, x2) 24.86/10.75 new_esEs13(:(x0, x1), [], x2) 24.86/10.75 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.75 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.86/10.75 new_ltEs16(True, True) 24.86/10.75 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.75 new_esEs11(x0, x1, ty_Char) 24.86/10.75 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.75 new_lt7(x0, x1, x2, x3) 24.86/10.75 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.75 new_ltEs17(EQ, GT) 24.86/10.75 new_ltEs17(GT, EQ) 24.86/10.75 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.75 new_esEs28(x0, x1, ty_Integer) 24.86/10.75 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_esEs29(x0, x1, ty_Char) 24.86/10.75 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs25(x0, x1, ty_Bool) 24.86/10.75 new_esEs20(x0, x1, ty_Ordering) 24.86/10.75 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.75 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.75 new_compare11(x0, x1, True, x2, x3) 24.86/10.75 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.75 new_compare12(x0, x1, True, x2, x3) 24.86/10.75 new_compare30(x0, x1, ty_Int) 24.86/10.75 new_esEs11(x0, x1, app(ty_[], x2)) 24.86/10.75 new_esEs29(x0, x1, ty_Int) 24.86/10.75 new_ltEs15(x0, x1) 24.86/10.75 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.75 new_esEs30(x0, x1, app(ty_[], x2)) 24.86/10.75 new_lt12(x0, x1, ty_Bool) 24.86/10.75 new_ltEs19(x0, x1, app(ty_[], x2)) 24.86/10.75 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.86/10.75 new_esEs25(x0, x1, ty_Char) 24.86/10.75 new_esEs21(x0, x1, ty_Int) 24.86/10.75 new_ltEs19(x0, x1, ty_Ordering) 24.86/10.75 new_lt4(x0, x1, x2) 24.86/10.75 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.75 new_esEs13([], [], x0) 24.86/10.75 new_ltEs19(x0, x1, ty_Integer) 24.86/10.75 new_pePe(False, x0) 24.86/10.75 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.75 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.75 new_lt12(x0, x1, ty_Char) 24.86/10.75 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.75 new_compare32(@0, @0) 24.86/10.75 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_primCmpNat0(Zero, Zero) 24.86/10.75 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.86/10.75 new_esEs21(x0, x1, ty_Char) 24.86/10.75 new_esEs11(x0, x1, ty_Bool) 24.86/10.75 new_lt20(x0, x1, ty_Bool) 24.86/10.75 24.86/10.75 We have to consider all minimal (P,Q,R)-chains. 24.86/10.75 ---------------------------------------- 24.86/10.75 24.86/10.75 (29) DependencyGraphProof (EQUIVALENT) 24.86/10.75 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. 24.86/10.75 ---------------------------------------- 24.86/10.75 24.86/10.75 (30) 24.86/10.75 Obligation: 24.86/10.75 Q DP problem: 24.86/10.75 The TRS P consists of the following rules: 24.86/10.75 24.86/10.75 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw16, Just(vyw18), bb, bc) 24.86/10.75 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Just(vyw300), new_esEs29(vyw40, vyw300, ba), ba), LT), h, ba) 24.86/10.75 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare26(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) 24.86/10.75 new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw17, Just(vyw18), bb, bc) 24.86/10.75 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, LT), h, ba) 24.86/10.75 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), GT), h, ba) 24.86/10.75 new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw34, Just(vyw40), h, ba) 24.86/10.75 24.86/10.75 The TRS R consists of the following rules: 24.86/10.75 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.75 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.75 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.75 new_ltEs17(LT, EQ) -> True 24.86/10.75 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs19(vyw400, vyw3000, dde) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.75 new_pePe(True, vyw110) -> True 24.86/10.75 new_compare12(vyw28000, vyw29000, False, bg, bh) -> GT 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw400, vyw3000, ee, ef) 24.86/10.75 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.75 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, cfb) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.75 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.75 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.75 new_esEs18(True, True) -> True 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(ty_[], daa)) -> new_esEs13(vyw28000, vyw29000, daa) 24.86/10.75 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.75 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.75 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.75 new_esEs29(vyw40, vyw300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vyw40, vyw300, bbg, bbh, bca) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], ceb)) -> new_esEs13(vyw400, vyw3000, ceb) 24.86/10.75 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.75 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(ty_Ratio, eh)) -> new_esEs19(vyw400, vyw3000, eh) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, cfd), cfb) -> new_ltEs7(vyw28000, vyw29000, cfd) 24.86/10.75 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.75 new_esEs9(LT, EQ) -> False 24.86/10.75 new_esEs9(EQ, LT) -> False 24.86/10.75 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.75 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bga) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bga), bga) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.75 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.75 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.75 new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw400, vyw3000, ddb, ddc) 24.86/10.75 new_compare8(vyw28000, vyw29000, bd, be) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Maybe, cgg)) -> new_ltEs7(vyw28000, vyw29000, cgg) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.75 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.75 new_primCompAux0(vyw116, GT) -> GT 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.75 new_ltEs5(Left(vyw28000), Right(vyw29000), cgd, cfb) -> True 24.86/10.75 new_esEs21(vyw401, vyw3001, app(ty_[], bdg)) -> new_esEs13(vyw401, vyw3001, bdg) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.75 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, cdd), cde)) -> new_ltEs4(vyw28002, vyw29002, cdd, cde) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, hd) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.75 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw400, vyw3000, bcb, bcc, bcd) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(ty_Maybe, bfd)) -> new_esEs4(vyw402, vyw3002, bfd) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, hd) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.75 new_primCompAux0(vyw116, LT) -> LT 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.75 new_ltEs17(LT, GT) -> True 24.86/10.75 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.75 new_not(True) -> False 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ccf)) -> new_ltEs7(vyw28002, vyw29002, ccf) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.75 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(ty_Maybe, gb)) -> new_esEs4(vyw401, vyw3001, gb) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.75 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bgd)) -> new_compare7(vyw28000, vyw29000, bgd) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(ty_Ratio, bfe)) -> new_esEs19(vyw402, vyw3002, bfe) 24.86/10.75 new_ltEs17(EQ, GT) -> True 24.86/10.75 new_esEs11(vyw400, vyw3000, app(ty_Maybe, eg)) -> new_esEs4(vyw400, vyw3000, eg) 24.86/10.75 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dea) -> new_asAs(new_esEs27(vyw400, vyw3000, dea), new_esEs28(vyw401, vyw3001, dea)) 24.86/10.75 new_esEs29(vyw40, vyw300, app(ty_[], dce)) -> new_esEs13(vyw40, vyw300, dce) 24.86/10.75 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw28000, vyw29000, cg, da, db) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs13(vyw28001, vyw29001, dbf, dbg, dbh) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.75 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.75 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.75 new_lt20(vyw28000, vyw29000, app(ty_[], daa)) -> new_lt4(vyw28000, vyw29000, daa) 24.86/10.75 new_esEs13([], [], dce) -> True 24.86/10.75 new_ltEs7(Nothing, Just(vyw29000), cc) -> True 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, hd) -> new_esEs14(vyw400, vyw3000) 24.86/10.75 new_compare26(Nothing, Nothing, False, ddh) -> LT 24.86/10.75 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.75 new_ltEs17(LT, LT) -> True 24.86/10.75 new_esEs22(vyw402, vyw3002, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw402, vyw3002, bfb, bfc) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vyw28000, vyw29000, dad, dae, daf) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, cfh), cga), cfb) -> new_ltEs5(vyw28000, vyw29000, cfh, cga) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.75 new_compare13(vyw95, vyw96, False, ca) -> GT 24.86/10.75 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(ty_Ratio, gc)) -> new_esEs19(vyw401, vyw3001, gc) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Ratio, cgf)) -> new_ltEs12(vyw28000, vyw29000, cgf) 24.86/10.75 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(vyw2800, vyw2900, caf, cag, cah) 24.86/10.75 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, chg), chh)) -> new_ltEs4(vyw2800, vyw2900, chg, chh) 24.86/10.75 new_lt18(vyw28000, vyw29000, bg, bh) -> new_esEs9(new_compare16(vyw28000, vyw29000, bg, bh), LT) 24.86/10.75 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.75 new_esEs30(vyw18, vyw13, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs5(vyw18, vyw13, bhd, bhe, bhf) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.75 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.75 new_compare28(vyw28000, vyw29000, False, gf, gg, gh) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(ty_[], ed)) -> new_esEs13(vyw400, vyw3000, ed) 24.86/10.75 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ha), hb), hc), hd) -> new_esEs5(vyw400, vyw3000, ha, hb, hc) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, cfc), cfb) -> new_ltEs12(vyw28000, vyw29000, cfc) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, cc)) -> new_ltEs7(vyw2800, vyw2900, cc) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, de), df)) -> new_ltEs4(vyw28000, vyw29000, de, df) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, dcc), dcd)) -> new_ltEs4(vyw28001, vyw29001, dcc, dcd) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(ty_[], cbb)) -> new_esEs13(vyw28001, vyw29001, cbb) 24.86/10.75 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(vyw401, vyw3001, bdd, bde, bdf) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.75 new_compare110(vyw28000, vyw29000, False, gf, gg, gh) -> GT 24.86/10.75 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 24.86/10.75 new_pePe(False, vyw110) -> vyw110 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.75 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.75 new_compare25(vyw28000, vyw29000, True, bg, bh) -> EQ 24.86/10.75 new_ltEs12(vyw2800, vyw2900, bfh) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, bfh), GT)) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Integer) -> new_esEs17(vyw40, vyw300) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(app(ty_Either, bff), bfg)) -> new_esEs6(vyw402, vyw3002, bff, bfg) 24.86/10.75 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vyw28000, vyw29000, gf, gg, gh) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_esEs19(vyw28000, vyw29000, dab) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Char) -> new_esEs14(vyw40, vyw300) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, cfb) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_@2, che), chf)) -> new_ltEs4(vyw28000, vyw29000, che, chf) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.75 new_compare11(vyw28000, vyw29000, False, bd, be) -> GT 24.86/10.75 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.75 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw401, vyw3001, fh, ga) 24.86/10.75 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dg, dh) -> new_asAs(new_esEs11(vyw400, vyw3000, dg), new_esEs12(vyw401, vyw3001, dh)) 24.86/10.75 new_esEs26(vyw400, vyw3000, app(ty_[], dda)) -> new_esEs13(vyw400, vyw3000, dda) 24.86/10.75 new_compare24(vyw28000, vyw29000, False, bd, be) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw400, vyw3000, cdg, cdh, cea) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs13(vyw28002, vyw29002, ccg, cch, cda) 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.75 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs5(vyw400, vyw3000, ea, eb, ec) 24.86/10.75 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.75 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.75 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, cfb) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw28001, vyw29001, cbh, cca) 24.86/10.75 new_esEs13(:(vyw400, vyw401), [], dce) -> False 24.86/10.75 new_esEs13([], :(vyw3000, vyw3001), dce) -> False 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, bab), bac), hd) -> new_esEs6(vyw400, vyw3000, bab, bac) 24.86/10.75 new_primCompAux1(vyw28000, vyw29000, vyw111, bga) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, bga)) 24.86/10.75 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.75 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.75 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.75 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), caf, cag, cah) -> new_pePe(new_lt12(vyw28000, vyw29000, caf), new_asAs(new_esEs23(vyw28000, vyw29000, caf), new_pePe(new_lt13(vyw28001, vyw29001, cag), new_asAs(new_esEs24(vyw28001, vyw29001, cag), new_ltEs18(vyw28002, vyw29002, cah))))) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vyw400, vyw3000, bae, baf, bag) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(vyw28000, vyw29000, gf, gg, gh) 24.86/10.75 new_compare26(vyw280, vyw290, True, ddh) -> EQ 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.75 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.75 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_[], bah)) -> new_esEs13(vyw400, vyw3000, bah) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, hf), hg), hd) -> new_esEs7(vyw400, vyw3000, hf, hg) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, cfe), cff), cfg), cfb) -> new_ltEs13(vyw28000, vyw29000, cfe, cff, cfg) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.75 new_lt12(vyw28000, vyw29000, app(ty_[], bf)) -> new_lt4(vyw28000, vyw29000, bf) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.75 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(ty_Maybe, bch)) -> new_esEs4(vyw400, vyw3000, bch) 24.86/10.75 new_compare30(vyw28000, vyw29000, app(ty_Ratio, bgc)) -> new_compare19(vyw28000, vyw29000, bgc) 24.86/10.75 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.75 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.75 new_esEs9(LT, LT) -> True 24.86/10.75 new_lt13(vyw28001, vyw29001, app(ty_[], cbb)) -> new_lt4(vyw28001, vyw29001, cbb) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.75 new_esEs11(vyw400, vyw3000, app(app(ty_Either, fa), fb)) -> new_esEs6(vyw400, vyw3000, fa, fb) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Bool) -> new_esEs18(vyw40, vyw300) 24.86/10.75 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bbg, bbh, bca) -> new_asAs(new_esEs20(vyw400, vyw3000, bbg), new_asAs(new_esEs21(vyw401, vyw3001, bbh), new_esEs22(vyw402, vyw3002, bca))) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs17(vyw18, vyw13) 24.86/10.75 new_compare25(vyw28000, vyw29000, False, bg, bh) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.75 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_esEs21(vyw401, vyw3001, app(ty_Maybe, beb)) -> new_esEs4(vyw401, vyw3001, beb) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(app(ty_Either, gd), ge)) -> new_esEs6(vyw401, vyw3001, gd, ge) 24.86/10.75 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.75 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, cfb) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyw28000, vyw29000, dba, dbb) 24.86/10.75 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.75 new_lt20(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_lt10(vyw28000, vyw29000, dac) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, hd) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs18(vyw18, vyw13) 24.86/10.75 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), chg, chh) -> new_pePe(new_lt20(vyw28000, vyw29000, chg), new_asAs(new_esEs25(vyw28000, vyw29000, chg), new_ltEs19(vyw28001, vyw29001, chh))) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_@2, bba), bbb)) -> new_esEs7(vyw400, vyw3000, bba, bbb) 24.86/10.75 new_compare16(vyw28000, vyw29000, bg, bh) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.75 new_ltEs17(EQ, EQ) -> True 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, cee)) -> new_esEs4(vyw400, vyw3000, cee) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_esEs6(vyw28000, vyw29000, bg, bh) 24.86/10.75 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.75 new_esEs21(vyw401, vyw3001, app(app(ty_Either, bed), bee)) -> new_esEs6(vyw401, vyw3001, bed, bee) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, dca), dcb)) -> new_ltEs5(vyw28001, vyw29001, dca, dcb) 24.86/10.75 new_ltEs17(GT, LT) -> False 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.75 new_ltEs17(EQ, LT) -> False 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs8(vyw18, vyw13) 24.86/10.75 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.75 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.75 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.75 new_esEs30(vyw18, vyw13, app(ty_Maybe, cab)) -> new_esEs4(vyw18, vyw13, cab) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_esEs4(vyw28001, vyw29001, cbd) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_Either, bbe), bbf)) -> new_esEs6(vyw400, vyw3000, bbe, bbf) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(ty_[], bf)) -> new_esEs13(vyw28000, vyw29000, bf) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, cgb), cgc), cfb) -> new_ltEs4(vyw28000, vyw29000, cgb, cgc) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.75 new_lt7(vyw28000, vyw29000, bd, be) -> new_esEs9(new_compare8(vyw28000, vyw29000, bd, be), LT) 24.86/10.75 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(vyw402, vyw3002, bef, beg, beh) 24.86/10.75 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.75 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.75 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw400, vyw3000, ceg, ceh) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, dc), dd)) -> new_ltEs5(vyw28000, vyw29000, dc, dd) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, hd) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_esEs19(vyw28001, vyw29001, cbc) 24.86/10.75 new_compare0([], :(vyw29000, vyw29001), bga) -> LT 24.86/10.75 new_asAs(True, vyw102) -> vyw102 24.86/10.75 new_ltEs5(Right(vyw28000), Left(vyw29000), cgd, cfb) -> False 24.86/10.75 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(vyw401, vyw3001, fc, fd, ff) 24.86/10.75 new_ltEs8(vyw2800, vyw2900, bga) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, bga), GT)) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.75 new_compare26(Just(vyw2800), Just(vyw2900), False, ddh) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, ddh), ddh) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, baa), hd) -> new_esEs19(vyw400, vyw3000, baa) 24.86/10.75 new_esEs29(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.75 new_lt20(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_lt7(vyw28000, vyw29000, dba, dbb) 24.86/10.75 new_esEs30(vyw18, vyw13, app(ty_Ratio, cac)) -> new_esEs19(vyw18, vyw13, cac) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.75 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Left(vyw400), Right(vyw3000), bad, hd) -> False 24.86/10.75 new_esEs6(Right(vyw400), Left(vyw3000), bad, hd) -> False 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.75 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.75 new_ltEs16(True, False) -> False 24.86/10.75 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, cgd), cfb)) -> new_ltEs5(vyw2800, vyw2900, cgd, cfb) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.75 new_esEs18(False, False) -> True 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.75 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.75 new_compare13(vyw95, vyw96, True, ca) -> LT 24.86/10.75 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.75 new_compare24(vyw28000, vyw29000, True, bd, be) -> EQ 24.86/10.75 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_esEs7(vyw28001, vyw29001, ccb, ccc) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.75 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.75 new_esEs30(vyw18, vyw13, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw18, vyw13, bhh, caa) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(ty_[], ccd)) -> new_ltEs8(vyw28002, vyw29002, ccd) 24.86/10.75 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_Either, chc), chd)) -> new_ltEs5(vyw28000, vyw29000, chc, chd) 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Ratio, bbd)) -> new_esEs19(vyw400, vyw3000, bbd) 24.86/10.75 new_compare0([], [], bga) -> EQ 24.86/10.75 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.75 new_ltEs7(Nothing, Nothing, cc) -> True 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.75 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.75 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.75 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.75 new_esEs12(vyw401, vyw3001, app(ty_[], fg)) -> new_esEs13(vyw401, vyw3001, fg) 24.86/10.75 new_lt12(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_lt18(vyw28000, vyw29000, bg, bh) 24.86/10.75 new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) 24.86/10.75 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.75 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.75 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.75 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hd) -> new_esEs4(vyw400, vyw3000, hh) 24.86/10.75 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(ty_[], dbc)) -> new_ltEs8(vyw28001, vyw29001, dbc) 24.86/10.75 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.75 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.75 new_esEs26(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs6(vyw400, vyw3000, ddf, ddg) 24.86/10.75 new_ltEs7(Just(vyw28000), Nothing, cc) -> False 24.86/10.75 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.75 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_esEs7(vyw28000, vyw29000, bd, be) 24.86/10.75 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.75 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.75 new_compare28(vyw28000, vyw29000, True, gf, gg, gh) -> EQ 24.86/10.75 new_lt15(vyw28000, vyw29000, cba) -> new_esEs9(new_compare19(vyw28000, vyw29000, cba), LT) 24.86/10.75 new_esEs4(Nothing, Nothing, cdf) -> True 24.86/10.75 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.75 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.75 new_esEs4(Nothing, Just(vyw3000), cdf) -> False 24.86/10.75 new_esEs4(Just(vyw400), Nothing, cdf) -> False 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.75 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_lt15(vyw28000, vyw29000, dab) 24.86/10.75 new_lt13(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_lt18(vyw28001, vyw29001, cbh, cca) 24.86/10.75 new_esEs29(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs19(vyw40, vyw300, dea) 24.86/10.75 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.75 new_compare32(@0, @0) -> EQ 24.86/10.75 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Maybe, bbc)) -> new_esEs4(vyw400, vyw3000, bbc) 24.86/10.75 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.75 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_esEs6(vyw28000, vyw29000, dag, dah) 24.86/10.75 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], cfa), cfb) -> new_ltEs8(vyw28000, vyw29000, cfa) 24.86/10.75 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.75 new_esEs9(EQ, EQ) -> True 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(ty_[], bga)) -> new_ltEs8(vyw2800, vyw2900, bga) 24.86/10.75 new_compare26(Just(vyw2800), Nothing, False, ddh) -> GT 24.86/10.75 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.75 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, dbe)) -> new_ltEs7(vyw28001, vyw29001, dbe) 24.86/10.75 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, bfh)) -> new_ltEs12(vyw2800, vyw2900, bfh) 24.86/10.75 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.75 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.75 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.75 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cd)) -> new_ltEs8(vyw28000, vyw29000, cd) 24.86/10.75 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.75 new_esEs20(vyw400, vyw3000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(vyw400, vyw3000, bdb, bdc) 24.86/10.75 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.75 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.75 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, cdb), cdc)) -> new_ltEs5(vyw28002, vyw29002, cdb, cdc) 24.86/10.76 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.76 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.76 new_compare30(vyw28000, vyw29000, app(ty_[], bgb)) -> new_compare0(vyw28000, vyw29000, bgb) 24.86/10.76 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_esEs19(vyw28000, vyw29000, cba) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, ce)) -> new_ltEs12(vyw28000, vyw29000, ce) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, dbd)) -> new_ltEs12(vyw28001, vyw29001, dbd) 24.86/10.76 new_esEs29(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs4(vyw40, vyw300, cdf) 24.86/10.76 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.76 new_lt4(vyw28000, vyw29000, bf) -> new_esEs9(new_compare0(vyw28000, vyw29000, bf), LT) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.76 new_compare110(vyw28000, vyw29000, True, gf, gg, gh) -> LT 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cf)) -> new_ltEs7(vyw28000, vyw29000, cf) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.76 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, cfb) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.76 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_lt16(vyw28000, vyw29000, dad, dae, daf) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.76 new_not(False) -> True 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, hd) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_[], cge)) -> new_ltEs8(vyw28000, vyw29000, cge) 24.86/10.76 new_lt16(vyw28000, vyw29000, gf, gg, gh) -> new_esEs9(new_compare17(vyw28000, vyw29000, gf, gg, gh), LT) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.76 new_esEs9(GT, GT) -> True 24.86/10.76 new_compare0(:(vyw28000, vyw28001), [], bga) -> GT 24.86/10.76 new_esEs18(False, True) -> False 24.86/10.76 new_esEs18(True, False) -> False 24.86/10.76 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.76 new_esEs29(vyw40, vyw300, app(app(ty_Either, bad), hd)) -> new_esEs6(vyw40, vyw300, bad, hd) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(ty_[], bfa)) -> new_esEs13(vyw402, vyw3002, bfa) 24.86/10.76 new_esEs10(@0, @0) -> True 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cce)) -> new_ltEs12(vyw28002, vyw29002, cce) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.76 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bgh), bha)) -> new_compare16(vyw28000, vyw29000, bgh, bha) 24.86/10.76 new_lt13(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_lt7(vyw28001, vyw29001, ccb, ccc) 24.86/10.76 new_esEs29(vyw40, vyw300, app(app(ty_@2, dg), dh)) -> new_esEs7(vyw40, vyw300, dg, dh) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.76 new_esEs9(EQ, GT) -> False 24.86/10.76 new_esEs9(GT, EQ) -> False 24.86/10.76 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.76 new_ltEs16(False, False) -> True 24.86/10.76 new_compare11(vyw28000, vyw29000, True, bd, be) -> LT 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.76 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) 24.86/10.76 new_esEs30(vyw18, vyw13, app(app(ty_Either, cad), cae)) -> new_esEs6(vyw18, vyw13, cad, cae) 24.86/10.76 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.76 new_lt20(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_lt18(vyw28000, vyw29000, dag, dah) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.76 new_esEs30(vyw18, vyw13, app(ty_[], bhg)) -> new_esEs13(vyw18, vyw13, bhg) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.76 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.76 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.76 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.76 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare17(vyw28000, vyw29000, bge, bgf, bgg) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.76 new_ltEs17(GT, EQ) -> False 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_esEs4(vyw28000, vyw29000, dac) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.76 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bhb), bhc)) -> new_compare8(vyw28000, vyw29000, bhb, bhc) 24.86/10.76 new_ltEs16(True, True) -> True 24.86/10.76 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_lt15(vyw28000, vyw29000, cba) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs13(vyw28000, vyw29000, cgh, cha, chb) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs10(vyw18, vyw13) 24.86/10.76 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(ty_Ratio, bec)) -> new_esEs19(vyw401, vyw3001, bec) 24.86/10.76 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, hd) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(vyw400, vyw3000, dcf, dcg, dch) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bdh), bea)) -> new_esEs7(vyw401, vyw3001, bdh, bea) 24.86/10.76 new_compare26(Nothing, Just(vyw2900), False, ddh) -> LT 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.76 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_lt15(vyw28001, vyw29001, cbc) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, cec), ced)) -> new_esEs7(vyw400, vyw3000, cec, ced) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.76 new_compare17(vyw28000, vyw29000, gf, gg, gh) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.76 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.76 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], he), hd) -> new_esEs13(vyw400, vyw3000, he) 24.86/10.76 new_ltEs17(GT, GT) -> True 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, cef)) -> new_esEs19(vyw400, vyw3000, cef) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs4(vyw400, vyw3000, ddd) 24.86/10.76 new_primEqNat0(Zero, Zero) -> True 24.86/10.76 new_lt13(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_lt10(vyw28001, vyw29001, cbd) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_esEs9(LT, GT) -> False 24.86/10.76 new_esEs9(GT, LT) -> False 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, cfb) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.76 new_asAs(False, vyw102) -> False 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, cfb) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Ordering) -> new_esEs9(vyw40, vyw300) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, cfb) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(ty_Ratio, bda)) -> new_esEs19(vyw400, vyw3000, bda) 24.86/10.76 new_lt12(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_lt7(vyw28000, vyw29000, bd, be) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.76 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, hd) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_ltEs16(False, True) -> True 24.86/10.76 new_compare12(vyw28000, vyw29000, True, bg, bh) -> LT 24.86/10.76 new_esEs20(vyw400, vyw3000, app(ty_[], bce)) -> new_esEs13(vyw400, vyw3000, bce) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(app(ty_@2, bcf), bcg)) -> new_esEs7(vyw400, vyw3000, bcf, bcg) 24.86/10.76 24.86/10.76 The set Q consists of the following terms: 24.86/10.76 24.86/10.76 new_ltEs20(x0, x1, ty_Float) 24.86/10.76 new_esEs22(x0, x1, ty_Int) 24.86/10.76 new_ltEs19(x0, x1, ty_Char) 24.86/10.76 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs27(x0, x1, ty_Integer) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.76 new_lt20(x0, x1, ty_Char) 24.86/10.76 new_compare24(x0, x1, True, x2, x3) 24.86/10.76 new_ltEs17(EQ, EQ) 24.86/10.76 new_lt13(x0, x1, ty_Int) 24.86/10.76 new_primPlusNat1(Succ(x0), Zero) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.76 new_esEs30(x0, x1, ty_Bool) 24.86/10.76 new_esEs24(x0, x1, ty_Bool) 24.86/10.76 new_primPlusNat1(Zero, Zero) 24.86/10.76 new_ltEs19(x0, x1, ty_Int) 24.86/10.76 new_lt13(x0, x1, ty_Ordering) 24.86/10.76 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.86/10.76 new_compare25(x0, x1, False, x2, x3) 24.86/10.76 new_esEs22(x0, x1, ty_Ordering) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.76 new_lt10(x0, x1, x2) 24.86/10.76 new_esEs30(x0, x1, ty_Integer) 24.86/10.76 new_esEs23(x0, x1, ty_@0) 24.86/10.76 new_esEs21(x0, x1, ty_Ordering) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.86/10.76 new_compare10(x0, x1, True) 24.86/10.76 new_lt12(x0, x1, ty_Ordering) 24.86/10.76 new_esEs18(True, True) 24.86/10.76 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.76 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.76 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.76 new_primCompAux0(x0, GT) 24.86/10.76 new_lt20(x0, x1, ty_Int) 24.86/10.76 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.76 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs24(x0, x1, ty_@0) 24.86/10.76 new_esEs11(x0, x1, ty_Integer) 24.86/10.76 new_esEs8(x0, x1) 24.86/10.76 new_lt20(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs23(x0, x1, ty_Bool) 24.86/10.76 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.76 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.76 new_lt16(x0, x1, x2, x3, x4) 24.86/10.76 new_compare8(x0, x1, x2, x3) 24.86/10.76 new_esEs30(x0, x1, ty_@0) 24.86/10.76 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.76 new_ltEs18(x0, x1, ty_@0) 24.86/10.76 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs11(x0, x1, ty_@0) 24.86/10.76 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.76 new_esEs12(x0, x1, ty_Integer) 24.86/10.76 new_esEs29(x0, x1, ty_Bool) 24.86/10.76 new_ltEs9(x0, x1) 24.86/10.76 new_esEs23(x0, x1, ty_Char) 24.86/10.76 new_ltEs7(Nothing, Nothing, x0) 24.86/10.76 new_ltEs19(x0, x1, ty_@0) 24.86/10.76 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs9(LT, LT) 24.86/10.76 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.76 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.76 new_ltEs16(False, False) 24.86/10.76 new_primCmpNat0(Succ(x0), Zero) 24.86/10.76 new_esEs23(x0, x1, ty_Int) 24.86/10.76 new_esEs12(x0, x1, ty_@0) 24.86/10.76 new_compare31(Char(x0), Char(x1)) 24.86/10.76 new_ltEs19(x0, x1, ty_Double) 24.86/10.76 new_lt20(x0, x1, ty_Ordering) 24.86/10.76 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.76 new_esEs29(x0, x1, app(ty_[], x2)) 24.86/10.76 new_ltEs11(x0, x1) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.76 new_esEs9(EQ, GT) 24.86/10.76 new_esEs9(GT, EQ) 24.86/10.76 new_primPlusNat0(Succ(x0), x1) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.76 new_esEs22(x0, x1, ty_@0) 24.86/10.76 new_esEs20(x0, x1, ty_Int) 24.86/10.76 new_esEs14(Char(x0), Char(x1)) 24.86/10.76 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_compare111(x0, x1, True) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.76 new_esEs26(x0, x1, ty_Double) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.76 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.86/10.76 new_esEs25(x0, x1, ty_Integer) 24.86/10.76 new_esEs20(x0, x1, app(ty_[], x2)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.76 new_esEs23(x0, x1, app(ty_[], x2)) 24.86/10.76 new_compare17(x0, x1, x2, x3, x4) 24.86/10.76 new_esEs22(x0, x1, ty_Bool) 24.86/10.76 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.76 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.76 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.76 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs20(x0, x1, ty_Char) 24.86/10.76 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.76 new_esEs24(x0, x1, ty_Integer) 24.86/10.76 new_compare110(x0, x1, False, x2, x3, x4) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.76 new_ltEs7(Nothing, Just(x0), x1) 24.86/10.76 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs25(x0, x1, ty_Ordering) 24.86/10.76 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.76 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.76 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.76 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs29(x0, x1, ty_Integer) 24.86/10.76 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs29(x0, x1, ty_Ordering) 24.86/10.76 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs22(x0, x1, ty_Char) 24.86/10.76 new_esEs22(x0, x1, ty_Double) 24.86/10.76 new_esEs20(x0, x1, ty_Double) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.76 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs12(x0, x1, ty_Bool) 24.86/10.76 new_lt13(x0, x1, ty_Double) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.76 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_lt13(x0, x1, ty_Char) 24.86/10.76 new_compare29(x0, x1, False) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.76 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_compare24(x0, x1, False, x2, x3) 24.86/10.76 new_esEs29(x0, x1, ty_Double) 24.86/10.76 new_esEs22(x0, x1, ty_Integer) 24.86/10.76 new_ltEs20(x0, x1, ty_Bool) 24.86/10.76 new_esEs30(x0, x1, ty_Ordering) 24.86/10.76 new_esEs26(x0, x1, ty_Int) 24.86/10.76 new_esEs24(x0, x1, ty_Float) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.76 new_compare16(x0, x1, x2, x3) 24.86/10.76 new_compare10(x0, x1, False) 24.86/10.76 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.76 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_lt13(x0, x1, ty_Bool) 24.86/10.76 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs11(x0, x1, ty_Double) 24.86/10.76 new_lt9(x0, x1) 24.86/10.76 new_esEs30(x0, x1, ty_Float) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.76 new_esEs26(x0, x1, ty_Char) 24.86/10.76 new_lt13(x0, x1, ty_@0) 24.86/10.76 new_compare26(Just(x0), Nothing, False, x1) 24.86/10.76 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.76 new_esEs21(x0, x1, ty_@0) 24.86/10.76 new_lt12(x0, x1, ty_@0) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.86/10.76 new_ltEs18(x0, x1, ty_Ordering) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.76 new_esEs23(x0, x1, ty_Ordering) 24.86/10.76 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.76 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.76 new_lt14(x0, x1) 24.86/10.76 new_esEs18(False, True) 24.86/10.76 new_esEs18(True, False) 24.86/10.76 new_esEs30(x0, x1, ty_Char) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.86/10.76 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_lt13(x0, x1, ty_Integer) 24.86/10.76 new_compare0([], :(x0, x1), x2) 24.86/10.76 new_ltEs20(x0, x1, ty_Integer) 24.86/10.76 new_ltEs18(x0, x1, ty_Float) 24.86/10.76 new_esEs26(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.76 new_esEs12(x0, x1, ty_Ordering) 24.86/10.76 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_primCompAux0(x0, LT) 24.86/10.76 new_esEs24(x0, x1, ty_Int) 24.86/10.76 new_esEs26(x0, x1, ty_Float) 24.86/10.76 new_lt8(x0, x1) 24.86/10.76 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.86/10.76 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.76 new_esEs30(x0, x1, ty_Int) 24.86/10.76 new_ltEs18(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs4(Nothing, Just(x0), x1) 24.86/10.76 new_primEqNat0(Zero, Succ(x0)) 24.86/10.76 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.86/10.76 new_compare28(x0, x1, True, x2, x3, x4) 24.86/10.76 new_esEs4(Nothing, Nothing, x0) 24.86/10.76 new_ltEs16(True, False) 24.86/10.76 new_esEs24(x0, x1, ty_Char) 24.86/10.76 new_ltEs16(False, True) 24.86/10.76 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.76 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.86/10.76 new_pePe(True, x0) 24.86/10.76 new_ltEs17(LT, LT) 24.86/10.76 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.86/10.76 new_ltEs18(x0, x1, ty_Integer) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.76 new_lt20(x0, x1, ty_Double) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.76 new_lt20(x0, x1, ty_@0) 24.86/10.76 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare30(x0, x1, ty_@0) 24.86/10.76 new_compare11(x0, x1, False, x2, x3) 24.86/10.76 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.86/10.76 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.86/10.76 new_compare26(Nothing, Nothing, False, x0) 24.86/10.76 new_compare30(x0, x1, ty_Double) 24.86/10.76 new_ltEs18(x0, x1, ty_Int) 24.86/10.76 new_esEs23(x0, x1, ty_Integer) 24.86/10.76 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.86/10.76 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.86/10.76 new_compare30(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.76 new_esEs12(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.86/10.76 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.86/10.76 new_asAs(False, x0) 24.86/10.76 new_ltEs18(x0, x1, ty_Char) 24.86/10.76 new_lt18(x0, x1, x2, x3) 24.86/10.76 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_ltEs17(GT, GT) 24.86/10.76 new_sr0(Integer(x0), Integer(x1)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.76 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_ltEs20(x0, x1, ty_Int) 24.86/10.76 new_ltEs18(x0, x1, ty_Bool) 24.86/10.76 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.76 new_ltEs20(x0, x1, app(ty_[], x2)) 24.86/10.76 new_primCmpNat0(Zero, Succ(x0)) 24.86/10.76 new_esEs10(@0, @0) 24.86/10.76 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_primPlusNat0(Zero, x0) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.76 new_esEs25(x0, x1, ty_Double) 24.86/10.76 new_esEs25(x0, x1, ty_@0) 24.86/10.76 new_lt12(x0, x1, ty_Double) 24.86/10.76 new_lt13(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs27(x0, x1, ty_Int) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.76 new_esEs29(x0, x1, ty_@0) 24.86/10.76 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.76 new_ltEs20(x0, x1, ty_Char) 24.86/10.76 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare18(x0, x1) 24.86/10.76 new_ltEs17(LT, EQ) 24.86/10.76 new_ltEs17(EQ, LT) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.76 new_esEs21(x0, x1, ty_Double) 24.86/10.76 new_primCompAux1(x0, x1, x2, x3) 24.86/10.76 new_primMulNat0(Succ(x0), Zero) 24.86/10.76 new_primPlusNat1(Succ(x0), Succ(x1)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.76 new_esEs13([], :(x0, x1), x2) 24.86/10.76 new_primPlusNat1(Zero, Succ(x0)) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.76 new_compare0(:(x0, x1), :(x2, x3), x4) 24.86/10.76 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_compare29(x0, x1, True) 24.86/10.76 new_ltEs20(x0, x1, ty_Double) 24.86/10.76 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs9(EQ, EQ) 24.86/10.76 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs26(x0, x1, ty_Integer) 24.86/10.76 new_compare30(x0, x1, ty_Char) 24.86/10.76 new_compare27(x0, x1, True) 24.86/10.76 new_compare0(:(x0, x1), [], x2) 24.86/10.76 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.76 new_esEs21(x0, x1, ty_Float) 24.86/10.76 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.86/10.76 new_lt13(x0, x1, ty_Float) 24.86/10.76 new_primEqNat0(Succ(x0), Succ(x1)) 24.86/10.76 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.86/10.76 new_esEs4(Just(x0), Nothing, x1) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Float) 24.86/10.76 new_primMulNat0(Zero, Zero) 24.86/10.76 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_compare6(Integer(x0), Integer(x1)) 24.86/10.76 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_primCompAux0(x0, EQ) 24.86/10.76 new_esEs17(Integer(x0), Integer(x1)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.76 new_ltEs20(x0, x1, ty_Ordering) 24.86/10.76 new_compare14(x0, x1) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.76 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.86/10.76 new_esEs22(x0, x1, ty_Float) 24.86/10.76 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.86/10.76 new_esEs20(x0, x1, ty_Float) 24.86/10.76 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_lt12(x0, x1, ty_Float) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.76 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_ltEs12(x0, x1, x2) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.76 new_primMulNat0(Succ(x0), Succ(x1)) 24.86/10.76 new_ltEs8(x0, x1, x2) 24.86/10.76 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.76 new_esEs20(x0, x1, ty_Integer) 24.86/10.76 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_lt12(x0, x1, ty_Integer) 24.86/10.76 new_compare12(x0, x1, False, x2, x3) 24.86/10.76 new_not(True) 24.86/10.76 new_esEs26(x0, x1, ty_@0) 24.86/10.76 new_compare30(x0, x1, ty_Bool) 24.86/10.76 new_lt19(x0, x1) 24.86/10.76 new_lt20(x0, x1, ty_Float) 24.86/10.76 new_primEqNat0(Succ(x0), Zero) 24.86/10.76 new_primMulNat0(Zero, Succ(x0)) 24.86/10.76 new_ltEs6(x0, x1) 24.86/10.76 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.76 new_compare30(x0, x1, ty_Ordering) 24.86/10.76 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs12(x0, x1, ty_Double) 24.86/10.76 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.76 new_compare7(x0, x1, x2) 24.86/10.76 new_compare26(x0, x1, True, x2) 24.86/10.76 new_compare13(x0, x1, False, x2) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.76 new_esEs18(False, False) 24.86/10.76 new_asAs(True, x0) 24.86/10.76 new_ltEs14(x0, x1) 24.86/10.76 new_esEs9(LT, EQ) 24.86/10.76 new_esEs9(EQ, LT) 24.86/10.76 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs9(GT, GT) 24.86/10.76 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.76 new_esEs20(x0, x1, ty_Bool) 24.86/10.76 new_sr(x0, x1) 24.86/10.76 new_esEs23(x0, x1, ty_Float) 24.86/10.76 new_esEs28(x0, x1, ty_Int) 24.86/10.76 new_esEs26(x0, x1, ty_Bool) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.76 new_lt15(x0, x1, x2) 24.86/10.76 new_primMulInt(Pos(x0), Pos(x1)) 24.86/10.76 new_ltEs19(x0, x1, ty_Float) 24.86/10.76 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs9(LT, GT) 24.86/10.76 new_esEs9(GT, LT) 24.86/10.76 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.86/10.76 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_compare30(x0, x1, ty_Integer) 24.86/10.76 new_esEs29(x0, x1, ty_Float) 24.86/10.76 new_lt5(x0, x1) 24.86/10.76 new_esEs11(x0, x1, ty_Ordering) 24.86/10.76 new_esEs24(x0, x1, ty_Ordering) 24.86/10.76 new_esEs21(x0, x1, ty_Bool) 24.86/10.76 new_esEs11(x0, x1, ty_Float) 24.86/10.76 new_esEs12(x0, x1, ty_Char) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.86/10.76 new_lt6(x0, x1) 24.86/10.76 new_compare25(x0, x1, True, x2, x3) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.86/10.76 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.76 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.76 new_ltEs17(LT, GT) 24.86/10.76 new_ltEs17(GT, LT) 24.86/10.76 new_compare9(x0, x1) 24.86/10.76 new_ltEs18(x0, x1, ty_Double) 24.86/10.76 new_esEs12(x0, x1, ty_Int) 24.86/10.76 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_@0) 24.86/10.76 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.86/10.76 new_ltEs20(x0, x1, ty_@0) 24.86/10.76 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_lt11(x0, x1) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.86/10.76 new_primMulInt(Neg(x0), Neg(x1)) 24.86/10.76 new_esEs22(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs20(x0, x1, ty_@0) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.76 new_ltEs7(Just(x0), Nothing, x1) 24.86/10.76 new_esEs25(x0, x1, ty_Float) 24.86/10.76 new_primMulInt(Pos(x0), Neg(x1)) 24.86/10.76 new_primMulInt(Neg(x0), Pos(x1)) 24.86/10.76 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.76 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.86/10.76 new_primCmpNat0(Succ(x0), Succ(x1)) 24.86/10.76 new_esEs11(x0, x1, ty_Int) 24.86/10.76 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.86/10.76 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.86/10.76 new_compare0([], [], x0) 24.86/10.76 new_esEs30(x0, x1, ty_Double) 24.86/10.76 new_esEs21(x0, x1, ty_Integer) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.86/10.76 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.76 new_esEs12(x0, x1, ty_Float) 24.86/10.76 new_compare27(x0, x1, False) 24.86/10.76 new_lt20(x0, x1, ty_Integer) 24.86/10.76 new_esEs24(x0, x1, ty_Double) 24.86/10.76 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs26(x0, x1, ty_Ordering) 24.86/10.76 new_lt17(x0, x1) 24.86/10.76 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.76 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.86/10.76 new_ltEs19(x0, x1, ty_Bool) 24.86/10.76 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.86/10.76 new_esEs23(x0, x1, ty_Double) 24.86/10.76 new_compare30(x0, x1, ty_Float) 24.86/10.76 new_primEqNat0(Zero, Zero) 24.86/10.76 new_esEs25(x0, x1, ty_Int) 24.86/10.76 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.76 new_compare111(x0, x1, False) 24.86/10.76 new_ltEs10(x0, x1) 24.86/10.76 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.86/10.76 new_not(False) 24.86/10.76 new_lt12(x0, x1, ty_Int) 24.86/10.76 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_compare13(x0, x1, True, x2) 24.86/10.76 new_esEs13(:(x0, x1), [], x2) 24.86/10.76 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.76 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.86/10.76 new_ltEs16(True, True) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.76 new_esEs11(x0, x1, ty_Char) 24.86/10.76 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.76 new_lt7(x0, x1, x2, x3) 24.86/10.76 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.76 new_ltEs17(EQ, GT) 24.86/10.76 new_ltEs17(GT, EQ) 24.86/10.76 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.76 new_esEs28(x0, x1, ty_Integer) 24.86/10.76 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs29(x0, x1, ty_Char) 24.86/10.76 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs25(x0, x1, ty_Bool) 24.86/10.76 new_esEs20(x0, x1, ty_Ordering) 24.86/10.76 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.76 new_compare11(x0, x1, True, x2, x3) 24.86/10.76 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_compare12(x0, x1, True, x2, x3) 24.86/10.76 new_compare30(x0, x1, ty_Int) 24.86/10.76 new_esEs11(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs29(x0, x1, ty_Int) 24.86/10.76 new_ltEs15(x0, x1) 24.86/10.76 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs30(x0, x1, app(ty_[], x2)) 24.86/10.76 new_lt12(x0, x1, ty_Bool) 24.86/10.76 new_ltEs19(x0, x1, app(ty_[], x2)) 24.86/10.76 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.86/10.76 new_esEs25(x0, x1, ty_Char) 24.86/10.76 new_esEs21(x0, x1, ty_Int) 24.86/10.76 new_ltEs19(x0, x1, ty_Ordering) 24.86/10.76 new_lt4(x0, x1, x2) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.76 new_esEs13([], [], x0) 24.86/10.76 new_ltEs19(x0, x1, ty_Integer) 24.86/10.76 new_pePe(False, x0) 24.86/10.76 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.76 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.76 new_lt12(x0, x1, ty_Char) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.76 new_compare32(@0, @0) 24.86/10.76 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_primCmpNat0(Zero, Zero) 24.86/10.76 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs21(x0, x1, ty_Char) 24.86/10.76 new_esEs11(x0, x1, ty_Bool) 24.86/10.76 new_lt20(x0, x1, ty_Bool) 24.86/10.76 24.86/10.76 We have to consider all minimal (P,Q,R)-chains. 24.86/10.76 ---------------------------------------- 24.86/10.76 24.86/10.76 (31) TransformationProof (EQUIVALENT) 24.86/10.76 By rewriting [LPAR04] the rule new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, LT), h, ba) at position [5] we obtained the following new rules [LPAR04]: 24.86/10.76 24.86/10.76 (new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba),new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba)) 24.86/10.76 24.86/10.76 24.86/10.76 ---------------------------------------- 24.86/10.76 24.86/10.76 (32) 24.86/10.76 Obligation: 24.86/10.76 Q DP problem: 24.86/10.76 The TRS P consists of the following rules: 24.86/10.76 24.86/10.76 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw16, Just(vyw18), bb, bc) 24.86/10.76 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Just(vyw300), new_esEs29(vyw40, vyw300, ba), ba), LT), h, ba) 24.86/10.76 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare26(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) 24.86/10.76 new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw17, Just(vyw18), bb, bc) 24.86/10.76 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), GT), h, ba) 24.86/10.76 new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw34, Just(vyw40), h, ba) 24.86/10.76 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) 24.86/10.76 24.86/10.76 The TRS R consists of the following rules: 24.86/10.76 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.76 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.76 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.76 new_ltEs17(LT, EQ) -> True 24.86/10.76 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs19(vyw400, vyw3000, dde) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.76 new_pePe(True, vyw110) -> True 24.86/10.76 new_compare12(vyw28000, vyw29000, False, bg, bh) -> GT 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw400, vyw3000, ee, ef) 24.86/10.76 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.76 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, cfb) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.76 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.76 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.76 new_esEs18(True, True) -> True 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(ty_[], daa)) -> new_esEs13(vyw28000, vyw29000, daa) 24.86/10.76 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.76 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.76 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.76 new_esEs29(vyw40, vyw300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vyw40, vyw300, bbg, bbh, bca) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], ceb)) -> new_esEs13(vyw400, vyw3000, ceb) 24.86/10.76 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.76 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(ty_Ratio, eh)) -> new_esEs19(vyw400, vyw3000, eh) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, cfd), cfb) -> new_ltEs7(vyw28000, vyw29000, cfd) 24.86/10.76 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.76 new_esEs9(LT, EQ) -> False 24.86/10.76 new_esEs9(EQ, LT) -> False 24.86/10.76 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.76 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bga) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bga), bga) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.76 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.76 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw400, vyw3000, ddb, ddc) 24.86/10.76 new_compare8(vyw28000, vyw29000, bd, be) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Maybe, cgg)) -> new_ltEs7(vyw28000, vyw29000, cgg) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.76 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.76 new_primCompAux0(vyw116, GT) -> GT 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.76 new_ltEs5(Left(vyw28000), Right(vyw29000), cgd, cfb) -> True 24.86/10.76 new_esEs21(vyw401, vyw3001, app(ty_[], bdg)) -> new_esEs13(vyw401, vyw3001, bdg) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.76 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, cdd), cde)) -> new_ltEs4(vyw28002, vyw29002, cdd, cde) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, hd) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.76 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw400, vyw3000, bcb, bcc, bcd) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(ty_Maybe, bfd)) -> new_esEs4(vyw402, vyw3002, bfd) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, hd) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.76 new_primCompAux0(vyw116, LT) -> LT 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.76 new_ltEs17(LT, GT) -> True 24.86/10.76 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.76 new_not(True) -> False 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ccf)) -> new_ltEs7(vyw28002, vyw29002, ccf) 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.76 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(ty_Maybe, gb)) -> new_esEs4(vyw401, vyw3001, gb) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.76 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bgd)) -> new_compare7(vyw28000, vyw29000, bgd) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(ty_Ratio, bfe)) -> new_esEs19(vyw402, vyw3002, bfe) 24.86/10.76 new_ltEs17(EQ, GT) -> True 24.86/10.76 new_esEs11(vyw400, vyw3000, app(ty_Maybe, eg)) -> new_esEs4(vyw400, vyw3000, eg) 24.86/10.76 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dea) -> new_asAs(new_esEs27(vyw400, vyw3000, dea), new_esEs28(vyw401, vyw3001, dea)) 24.86/10.76 new_esEs29(vyw40, vyw300, app(ty_[], dce)) -> new_esEs13(vyw40, vyw300, dce) 24.86/10.76 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw28000, vyw29000, cg, da, db) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs13(vyw28001, vyw29001, dbf, dbg, dbh) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.76 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.76 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.76 new_lt20(vyw28000, vyw29000, app(ty_[], daa)) -> new_lt4(vyw28000, vyw29000, daa) 24.86/10.76 new_esEs13([], [], dce) -> True 24.86/10.76 new_ltEs7(Nothing, Just(vyw29000), cc) -> True 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, hd) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_compare26(Nothing, Nothing, False, ddh) -> LT 24.86/10.76 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.76 new_ltEs17(LT, LT) -> True 24.86/10.76 new_esEs22(vyw402, vyw3002, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw402, vyw3002, bfb, bfc) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vyw28000, vyw29000, dad, dae, daf) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, cfh), cga), cfb) -> new_ltEs5(vyw28000, vyw29000, cfh, cga) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.76 new_compare13(vyw95, vyw96, False, ca) -> GT 24.86/10.76 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(ty_Ratio, gc)) -> new_esEs19(vyw401, vyw3001, gc) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Ratio, cgf)) -> new_ltEs12(vyw28000, vyw29000, cgf) 24.86/10.76 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(vyw2800, vyw2900, caf, cag, cah) 24.86/10.76 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, chg), chh)) -> new_ltEs4(vyw2800, vyw2900, chg, chh) 24.86/10.76 new_lt18(vyw28000, vyw29000, bg, bh) -> new_esEs9(new_compare16(vyw28000, vyw29000, bg, bh), LT) 24.86/10.76 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.76 new_esEs30(vyw18, vyw13, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs5(vyw18, vyw13, bhd, bhe, bhf) 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.76 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.76 new_compare28(vyw28000, vyw29000, False, gf, gg, gh) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(ty_[], ed)) -> new_esEs13(vyw400, vyw3000, ed) 24.86/10.76 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ha), hb), hc), hd) -> new_esEs5(vyw400, vyw3000, ha, hb, hc) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, cfc), cfb) -> new_ltEs12(vyw28000, vyw29000, cfc) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, cc)) -> new_ltEs7(vyw2800, vyw2900, cc) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, de), df)) -> new_ltEs4(vyw28000, vyw29000, de, df) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, dcc), dcd)) -> new_ltEs4(vyw28001, vyw29001, dcc, dcd) 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(ty_[], cbb)) -> new_esEs13(vyw28001, vyw29001, cbb) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(vyw401, vyw3001, bdd, bde, bdf) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.76 new_compare110(vyw28000, vyw29000, False, gf, gg, gh) -> GT 24.86/10.76 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 24.86/10.76 new_pePe(False, vyw110) -> vyw110 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.76 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.76 new_compare25(vyw28000, vyw29000, True, bg, bh) -> EQ 24.86/10.76 new_ltEs12(vyw2800, vyw2900, bfh) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, bfh), GT)) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Integer) -> new_esEs17(vyw40, vyw300) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(app(ty_Either, bff), bfg)) -> new_esEs6(vyw402, vyw3002, bff, bfg) 24.86/10.76 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vyw28000, vyw29000, gf, gg, gh) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_esEs19(vyw28000, vyw29000, dab) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Char) -> new_esEs14(vyw40, vyw300) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, cfb) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_@2, che), chf)) -> new_ltEs4(vyw28000, vyw29000, che, chf) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.76 new_compare11(vyw28000, vyw29000, False, bd, be) -> GT 24.86/10.76 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.76 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw401, vyw3001, fh, ga) 24.86/10.76 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dg, dh) -> new_asAs(new_esEs11(vyw400, vyw3000, dg), new_esEs12(vyw401, vyw3001, dh)) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(ty_[], dda)) -> new_esEs13(vyw400, vyw3000, dda) 24.86/10.76 new_compare24(vyw28000, vyw29000, False, bd, be) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw400, vyw3000, cdg, cdh, cea) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs13(vyw28002, vyw29002, ccg, cch, cda) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.76 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs5(vyw400, vyw3000, ea, eb, ec) 24.86/10.76 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.76 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.76 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, cfb) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw28001, vyw29001, cbh, cca) 24.86/10.76 new_esEs13(:(vyw400, vyw401), [], dce) -> False 24.86/10.76 new_esEs13([], :(vyw3000, vyw3001), dce) -> False 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, bab), bac), hd) -> new_esEs6(vyw400, vyw3000, bab, bac) 24.86/10.76 new_primCompAux1(vyw28000, vyw29000, vyw111, bga) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, bga)) 24.86/10.76 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.76 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.76 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.76 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), caf, cag, cah) -> new_pePe(new_lt12(vyw28000, vyw29000, caf), new_asAs(new_esEs23(vyw28000, vyw29000, caf), new_pePe(new_lt13(vyw28001, vyw29001, cag), new_asAs(new_esEs24(vyw28001, vyw29001, cag), new_ltEs18(vyw28002, vyw29002, cah))))) 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vyw400, vyw3000, bae, baf, bag) 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(vyw28000, vyw29000, gf, gg, gh) 24.86/10.76 new_compare26(vyw280, vyw290, True, ddh) -> EQ 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.76 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.76 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_[], bah)) -> new_esEs13(vyw400, vyw3000, bah) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, hf), hg), hd) -> new_esEs7(vyw400, vyw3000, hf, hg) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, cfe), cff), cfg), cfb) -> new_ltEs13(vyw28000, vyw29000, cfe, cff, cfg) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.76 new_lt12(vyw28000, vyw29000, app(ty_[], bf)) -> new_lt4(vyw28000, vyw29000, bf) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.76 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(ty_Maybe, bch)) -> new_esEs4(vyw400, vyw3000, bch) 24.86/10.76 new_compare30(vyw28000, vyw29000, app(ty_Ratio, bgc)) -> new_compare19(vyw28000, vyw29000, bgc) 24.86/10.76 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.76 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.76 new_esEs9(LT, LT) -> True 24.86/10.76 new_lt13(vyw28001, vyw29001, app(ty_[], cbb)) -> new_lt4(vyw28001, vyw29001, cbb) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(app(ty_Either, fa), fb)) -> new_esEs6(vyw400, vyw3000, fa, fb) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Bool) -> new_esEs18(vyw40, vyw300) 24.86/10.76 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bbg, bbh, bca) -> new_asAs(new_esEs20(vyw400, vyw3000, bbg), new_asAs(new_esEs21(vyw401, vyw3001, bbh), new_esEs22(vyw402, vyw3002, bca))) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs17(vyw18, vyw13) 24.86/10.76 new_compare25(vyw28000, vyw29000, False, bg, bh) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.76 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(ty_Maybe, beb)) -> new_esEs4(vyw401, vyw3001, beb) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(app(ty_Either, gd), ge)) -> new_esEs6(vyw401, vyw3001, gd, ge) 24.86/10.76 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.76 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, cfb) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyw28000, vyw29000, dba, dbb) 24.86/10.76 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.76 new_lt20(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_lt10(vyw28000, vyw29000, dac) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, hd) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs18(vyw18, vyw13) 24.86/10.76 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), chg, chh) -> new_pePe(new_lt20(vyw28000, vyw29000, chg), new_asAs(new_esEs25(vyw28000, vyw29000, chg), new_ltEs19(vyw28001, vyw29001, chh))) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_@2, bba), bbb)) -> new_esEs7(vyw400, vyw3000, bba, bbb) 24.86/10.76 new_compare16(vyw28000, vyw29000, bg, bh) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.76 new_ltEs17(EQ, EQ) -> True 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, cee)) -> new_esEs4(vyw400, vyw3000, cee) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_esEs6(vyw28000, vyw29000, bg, bh) 24.86/10.76 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(app(ty_Either, bed), bee)) -> new_esEs6(vyw401, vyw3001, bed, bee) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, dca), dcb)) -> new_ltEs5(vyw28001, vyw29001, dca, dcb) 24.86/10.76 new_ltEs17(GT, LT) -> False 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.76 new_ltEs17(EQ, LT) -> False 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs8(vyw18, vyw13) 24.86/10.76 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.76 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.76 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.76 new_esEs30(vyw18, vyw13, app(ty_Maybe, cab)) -> new_esEs4(vyw18, vyw13, cab) 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_esEs4(vyw28001, vyw29001, cbd) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_Either, bbe), bbf)) -> new_esEs6(vyw400, vyw3000, bbe, bbf) 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(ty_[], bf)) -> new_esEs13(vyw28000, vyw29000, bf) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, cgb), cgc), cfb) -> new_ltEs4(vyw28000, vyw29000, cgb, cgc) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.76 new_lt7(vyw28000, vyw29000, bd, be) -> new_esEs9(new_compare8(vyw28000, vyw29000, bd, be), LT) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(vyw402, vyw3002, bef, beg, beh) 24.86/10.76 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.76 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw400, vyw3000, ceg, ceh) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, dc), dd)) -> new_ltEs5(vyw28000, vyw29000, dc, dd) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, hd) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_esEs19(vyw28001, vyw29001, cbc) 24.86/10.76 new_compare0([], :(vyw29000, vyw29001), bga) -> LT 24.86/10.76 new_asAs(True, vyw102) -> vyw102 24.86/10.76 new_ltEs5(Right(vyw28000), Left(vyw29000), cgd, cfb) -> False 24.86/10.76 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(vyw401, vyw3001, fc, fd, ff) 24.86/10.76 new_ltEs8(vyw2800, vyw2900, bga) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, bga), GT)) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.76 new_compare26(Just(vyw2800), Just(vyw2900), False, ddh) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, ddh), ddh) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, baa), hd) -> new_esEs19(vyw400, vyw3000, baa) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.76 new_lt20(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_lt7(vyw28000, vyw29000, dba, dbb) 24.86/10.76 new_esEs30(vyw18, vyw13, app(ty_Ratio, cac)) -> new_esEs19(vyw18, vyw13, cac) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.76 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Left(vyw400), Right(vyw3000), bad, hd) -> False 24.86/10.76 new_esEs6(Right(vyw400), Left(vyw3000), bad, hd) -> False 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_ltEs16(True, False) -> False 24.86/10.76 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, cgd), cfb)) -> new_ltEs5(vyw2800, vyw2900, cgd, cfb) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs18(False, False) -> True 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.76 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.76 new_compare13(vyw95, vyw96, True, ca) -> LT 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.76 new_compare24(vyw28000, vyw29000, True, bd, be) -> EQ 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_esEs7(vyw28001, vyw29001, ccb, ccc) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.76 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.76 new_esEs30(vyw18, vyw13, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw18, vyw13, bhh, caa) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(ty_[], ccd)) -> new_ltEs8(vyw28002, vyw29002, ccd) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_Either, chc), chd)) -> new_ltEs5(vyw28000, vyw29000, chc, chd) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Ratio, bbd)) -> new_esEs19(vyw400, vyw3000, bbd) 24.86/10.76 new_compare0([], [], bga) -> EQ 24.86/10.76 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.76 new_ltEs7(Nothing, Nothing, cc) -> True 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.76 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.76 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.76 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(ty_[], fg)) -> new_esEs13(vyw401, vyw3001, fg) 24.86/10.76 new_lt12(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_lt18(vyw28000, vyw29000, bg, bh) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) 24.86/10.76 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hd) -> new_esEs4(vyw400, vyw3000, hh) 24.86/10.76 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(ty_[], dbc)) -> new_ltEs8(vyw28001, vyw29001, dbc) 24.86/10.76 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs6(vyw400, vyw3000, ddf, ddg) 24.86/10.76 new_ltEs7(Just(vyw28000), Nothing, cc) -> False 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_esEs7(vyw28000, vyw29000, bd, be) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_compare28(vyw28000, vyw29000, True, gf, gg, gh) -> EQ 24.86/10.76 new_lt15(vyw28000, vyw29000, cba) -> new_esEs9(new_compare19(vyw28000, vyw29000, cba), LT) 24.86/10.76 new_esEs4(Nothing, Nothing, cdf) -> True 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.76 new_esEs4(Nothing, Just(vyw3000), cdf) -> False 24.86/10.76 new_esEs4(Just(vyw400), Nothing, cdf) -> False 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.76 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_lt15(vyw28000, vyw29000, dab) 24.86/10.76 new_lt13(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_lt18(vyw28001, vyw29001, cbh, cca) 24.86/10.76 new_esEs29(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs19(vyw40, vyw300, dea) 24.86/10.76 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.76 new_compare32(@0, @0) -> EQ 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Maybe, bbc)) -> new_esEs4(vyw400, vyw3000, bbc) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_esEs6(vyw28000, vyw29000, dag, dah) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], cfa), cfb) -> new_ltEs8(vyw28000, vyw29000, cfa) 24.86/10.76 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.76 new_esEs9(EQ, EQ) -> True 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(ty_[], bga)) -> new_ltEs8(vyw2800, vyw2900, bga) 24.86/10.76 new_compare26(Just(vyw2800), Nothing, False, ddh) -> GT 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, dbe)) -> new_ltEs7(vyw28001, vyw29001, dbe) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, bfh)) -> new_ltEs12(vyw2800, vyw2900, bfh) 24.86/10.76 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.76 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.76 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cd)) -> new_ltEs8(vyw28000, vyw29000, cd) 24.86/10.76 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(vyw400, vyw3000, bdb, bdc) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.76 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, cdb), cdc)) -> new_ltEs5(vyw28002, vyw29002, cdb, cdc) 24.86/10.76 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.76 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.76 new_compare30(vyw28000, vyw29000, app(ty_[], bgb)) -> new_compare0(vyw28000, vyw29000, bgb) 24.86/10.76 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_esEs19(vyw28000, vyw29000, cba) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, ce)) -> new_ltEs12(vyw28000, vyw29000, ce) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, dbd)) -> new_ltEs12(vyw28001, vyw29001, dbd) 24.86/10.76 new_esEs29(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs4(vyw40, vyw300, cdf) 24.86/10.76 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.76 new_lt4(vyw28000, vyw29000, bf) -> new_esEs9(new_compare0(vyw28000, vyw29000, bf), LT) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.76 new_compare110(vyw28000, vyw29000, True, gf, gg, gh) -> LT 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cf)) -> new_ltEs7(vyw28000, vyw29000, cf) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.76 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, cfb) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.76 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_lt16(vyw28000, vyw29000, dad, dae, daf) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.76 new_not(False) -> True 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, hd) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_[], cge)) -> new_ltEs8(vyw28000, vyw29000, cge) 24.86/10.76 new_lt16(vyw28000, vyw29000, gf, gg, gh) -> new_esEs9(new_compare17(vyw28000, vyw29000, gf, gg, gh), LT) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.76 new_esEs9(GT, GT) -> True 24.86/10.76 new_compare0(:(vyw28000, vyw28001), [], bga) -> GT 24.86/10.76 new_esEs18(False, True) -> False 24.86/10.76 new_esEs18(True, False) -> False 24.86/10.76 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.76 new_esEs29(vyw40, vyw300, app(app(ty_Either, bad), hd)) -> new_esEs6(vyw40, vyw300, bad, hd) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(ty_[], bfa)) -> new_esEs13(vyw402, vyw3002, bfa) 24.86/10.76 new_esEs10(@0, @0) -> True 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cce)) -> new_ltEs12(vyw28002, vyw29002, cce) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.76 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bgh), bha)) -> new_compare16(vyw28000, vyw29000, bgh, bha) 24.86/10.76 new_lt13(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_lt7(vyw28001, vyw29001, ccb, ccc) 24.86/10.76 new_esEs29(vyw40, vyw300, app(app(ty_@2, dg), dh)) -> new_esEs7(vyw40, vyw300, dg, dh) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.76 new_esEs9(EQ, GT) -> False 24.86/10.76 new_esEs9(GT, EQ) -> False 24.86/10.76 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.76 new_ltEs16(False, False) -> True 24.86/10.76 new_compare11(vyw28000, vyw29000, True, bd, be) -> LT 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.76 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) 24.86/10.76 new_esEs30(vyw18, vyw13, app(app(ty_Either, cad), cae)) -> new_esEs6(vyw18, vyw13, cad, cae) 24.86/10.76 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.76 new_lt20(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_lt18(vyw28000, vyw29000, dag, dah) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.76 new_esEs30(vyw18, vyw13, app(ty_[], bhg)) -> new_esEs13(vyw18, vyw13, bhg) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.76 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.76 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.76 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.76 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare17(vyw28000, vyw29000, bge, bgf, bgg) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.76 new_ltEs17(GT, EQ) -> False 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_esEs4(vyw28000, vyw29000, dac) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.76 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bhb), bhc)) -> new_compare8(vyw28000, vyw29000, bhb, bhc) 24.86/10.76 new_ltEs16(True, True) -> True 24.86/10.76 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_lt15(vyw28000, vyw29000, cba) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs13(vyw28000, vyw29000, cgh, cha, chb) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs10(vyw18, vyw13) 24.86/10.76 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(ty_Ratio, bec)) -> new_esEs19(vyw401, vyw3001, bec) 24.86/10.76 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, hd) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(vyw400, vyw3000, dcf, dcg, dch) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bdh), bea)) -> new_esEs7(vyw401, vyw3001, bdh, bea) 24.86/10.76 new_compare26(Nothing, Just(vyw2900), False, ddh) -> LT 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.76 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_lt15(vyw28001, vyw29001, cbc) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, cec), ced)) -> new_esEs7(vyw400, vyw3000, cec, ced) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.76 new_compare17(vyw28000, vyw29000, gf, gg, gh) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.76 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.76 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], he), hd) -> new_esEs13(vyw400, vyw3000, he) 24.86/10.76 new_ltEs17(GT, GT) -> True 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, cef)) -> new_esEs19(vyw400, vyw3000, cef) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs4(vyw400, vyw3000, ddd) 24.86/10.76 new_primEqNat0(Zero, Zero) -> True 24.86/10.76 new_lt13(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_lt10(vyw28001, vyw29001, cbd) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_esEs9(LT, GT) -> False 24.86/10.76 new_esEs9(GT, LT) -> False 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, cfb) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.76 new_asAs(False, vyw102) -> False 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, cfb) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Ordering) -> new_esEs9(vyw40, vyw300) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, cfb) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(ty_Ratio, bda)) -> new_esEs19(vyw400, vyw3000, bda) 24.86/10.76 new_lt12(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_lt7(vyw28000, vyw29000, bd, be) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.76 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, hd) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_ltEs16(False, True) -> True 24.86/10.76 new_compare12(vyw28000, vyw29000, True, bg, bh) -> LT 24.86/10.76 new_esEs20(vyw400, vyw3000, app(ty_[], bce)) -> new_esEs13(vyw400, vyw3000, bce) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(app(ty_@2, bcf), bcg)) -> new_esEs7(vyw400, vyw3000, bcf, bcg) 24.86/10.76 24.86/10.76 The set Q consists of the following terms: 24.86/10.76 24.86/10.76 new_ltEs20(x0, x1, ty_Float) 24.86/10.76 new_esEs22(x0, x1, ty_Int) 24.86/10.76 new_ltEs19(x0, x1, ty_Char) 24.86/10.76 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs27(x0, x1, ty_Integer) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.76 new_lt20(x0, x1, ty_Char) 24.86/10.76 new_compare24(x0, x1, True, x2, x3) 24.86/10.76 new_ltEs17(EQ, EQ) 24.86/10.76 new_lt13(x0, x1, ty_Int) 24.86/10.76 new_primPlusNat1(Succ(x0), Zero) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.76 new_esEs30(x0, x1, ty_Bool) 24.86/10.76 new_esEs24(x0, x1, ty_Bool) 24.86/10.76 new_primPlusNat1(Zero, Zero) 24.86/10.76 new_ltEs19(x0, x1, ty_Int) 24.86/10.76 new_lt13(x0, x1, ty_Ordering) 24.86/10.76 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.86/10.76 new_compare25(x0, x1, False, x2, x3) 24.86/10.76 new_esEs22(x0, x1, ty_Ordering) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.76 new_lt10(x0, x1, x2) 24.86/10.76 new_esEs30(x0, x1, ty_Integer) 24.86/10.76 new_esEs23(x0, x1, ty_@0) 24.86/10.76 new_esEs21(x0, x1, ty_Ordering) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.86/10.76 new_compare10(x0, x1, True) 24.86/10.76 new_lt12(x0, x1, ty_Ordering) 24.86/10.76 new_esEs18(True, True) 24.86/10.76 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.76 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.76 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.76 new_primCompAux0(x0, GT) 24.86/10.76 new_lt20(x0, x1, ty_Int) 24.86/10.76 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.76 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs24(x0, x1, ty_@0) 24.86/10.76 new_esEs11(x0, x1, ty_Integer) 24.86/10.76 new_esEs8(x0, x1) 24.86/10.76 new_lt20(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs23(x0, x1, ty_Bool) 24.86/10.76 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.76 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.76 new_lt16(x0, x1, x2, x3, x4) 24.86/10.76 new_compare8(x0, x1, x2, x3) 24.86/10.76 new_esEs30(x0, x1, ty_@0) 24.86/10.76 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.76 new_ltEs18(x0, x1, ty_@0) 24.86/10.76 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs11(x0, x1, ty_@0) 24.86/10.76 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.76 new_esEs12(x0, x1, ty_Integer) 24.86/10.76 new_esEs29(x0, x1, ty_Bool) 24.86/10.76 new_ltEs9(x0, x1) 24.86/10.76 new_esEs23(x0, x1, ty_Char) 24.86/10.76 new_ltEs7(Nothing, Nothing, x0) 24.86/10.76 new_ltEs19(x0, x1, ty_@0) 24.86/10.76 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs9(LT, LT) 24.86/10.76 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.76 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.76 new_ltEs16(False, False) 24.86/10.76 new_primCmpNat0(Succ(x0), Zero) 24.86/10.76 new_esEs23(x0, x1, ty_Int) 24.86/10.76 new_esEs12(x0, x1, ty_@0) 24.86/10.76 new_compare31(Char(x0), Char(x1)) 24.86/10.76 new_ltEs19(x0, x1, ty_Double) 24.86/10.76 new_lt20(x0, x1, ty_Ordering) 24.86/10.76 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.76 new_esEs29(x0, x1, app(ty_[], x2)) 24.86/10.76 new_ltEs11(x0, x1) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.76 new_esEs9(EQ, GT) 24.86/10.76 new_esEs9(GT, EQ) 24.86/10.76 new_primPlusNat0(Succ(x0), x1) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.76 new_esEs22(x0, x1, ty_@0) 24.86/10.76 new_esEs20(x0, x1, ty_Int) 24.86/10.76 new_esEs14(Char(x0), Char(x1)) 24.86/10.76 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_compare111(x0, x1, True) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.76 new_esEs26(x0, x1, ty_Double) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.76 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.86/10.76 new_esEs25(x0, x1, ty_Integer) 24.86/10.76 new_esEs20(x0, x1, app(ty_[], x2)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.76 new_esEs23(x0, x1, app(ty_[], x2)) 24.86/10.76 new_compare17(x0, x1, x2, x3, x4) 24.86/10.76 new_esEs22(x0, x1, ty_Bool) 24.86/10.76 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.76 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.76 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.76 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs20(x0, x1, ty_Char) 24.86/10.76 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.76 new_esEs24(x0, x1, ty_Integer) 24.86/10.76 new_compare110(x0, x1, False, x2, x3, x4) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.76 new_ltEs7(Nothing, Just(x0), x1) 24.86/10.76 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs25(x0, x1, ty_Ordering) 24.86/10.76 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.76 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.76 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.76 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs29(x0, x1, ty_Integer) 24.86/10.76 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs29(x0, x1, ty_Ordering) 24.86/10.76 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs22(x0, x1, ty_Char) 24.86/10.76 new_esEs22(x0, x1, ty_Double) 24.86/10.76 new_esEs20(x0, x1, ty_Double) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.76 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs12(x0, x1, ty_Bool) 24.86/10.76 new_lt13(x0, x1, ty_Double) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.76 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_lt13(x0, x1, ty_Char) 24.86/10.76 new_compare29(x0, x1, False) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.76 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_compare24(x0, x1, False, x2, x3) 24.86/10.76 new_esEs29(x0, x1, ty_Double) 24.86/10.76 new_esEs22(x0, x1, ty_Integer) 24.86/10.76 new_ltEs20(x0, x1, ty_Bool) 24.86/10.76 new_esEs30(x0, x1, ty_Ordering) 24.86/10.76 new_esEs26(x0, x1, ty_Int) 24.86/10.76 new_esEs24(x0, x1, ty_Float) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.76 new_compare16(x0, x1, x2, x3) 24.86/10.76 new_compare10(x0, x1, False) 24.86/10.76 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.76 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_lt13(x0, x1, ty_Bool) 24.86/10.76 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs11(x0, x1, ty_Double) 24.86/10.76 new_lt9(x0, x1) 24.86/10.76 new_esEs30(x0, x1, ty_Float) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.76 new_esEs26(x0, x1, ty_Char) 24.86/10.76 new_lt13(x0, x1, ty_@0) 24.86/10.76 new_compare26(Just(x0), Nothing, False, x1) 24.86/10.76 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.76 new_esEs21(x0, x1, ty_@0) 24.86/10.76 new_lt12(x0, x1, ty_@0) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.86/10.76 new_ltEs18(x0, x1, ty_Ordering) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.76 new_esEs23(x0, x1, ty_Ordering) 24.86/10.76 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.76 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.76 new_lt14(x0, x1) 24.86/10.76 new_esEs18(False, True) 24.86/10.76 new_esEs18(True, False) 24.86/10.76 new_esEs30(x0, x1, ty_Char) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.86/10.76 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_lt13(x0, x1, ty_Integer) 24.86/10.76 new_compare0([], :(x0, x1), x2) 24.86/10.76 new_ltEs20(x0, x1, ty_Integer) 24.86/10.76 new_ltEs18(x0, x1, ty_Float) 24.86/10.76 new_esEs26(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.76 new_esEs12(x0, x1, ty_Ordering) 24.86/10.76 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_primCompAux0(x0, LT) 24.86/10.76 new_esEs24(x0, x1, ty_Int) 24.86/10.76 new_esEs26(x0, x1, ty_Float) 24.86/10.76 new_lt8(x0, x1) 24.86/10.76 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.86/10.76 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.76 new_esEs30(x0, x1, ty_Int) 24.86/10.76 new_ltEs18(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs4(Nothing, Just(x0), x1) 24.86/10.76 new_primEqNat0(Zero, Succ(x0)) 24.86/10.76 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.86/10.76 new_compare28(x0, x1, True, x2, x3, x4) 24.86/10.76 new_esEs4(Nothing, Nothing, x0) 24.86/10.76 new_ltEs16(True, False) 24.86/10.76 new_esEs24(x0, x1, ty_Char) 24.86/10.76 new_ltEs16(False, True) 24.86/10.76 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.76 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.86/10.76 new_pePe(True, x0) 24.86/10.76 new_ltEs17(LT, LT) 24.86/10.76 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.86/10.76 new_ltEs18(x0, x1, ty_Integer) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.76 new_lt20(x0, x1, ty_Double) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.76 new_lt20(x0, x1, ty_@0) 24.86/10.76 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare30(x0, x1, ty_@0) 24.86/10.76 new_compare11(x0, x1, False, x2, x3) 24.86/10.76 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.86/10.76 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.86/10.76 new_compare26(Nothing, Nothing, False, x0) 24.86/10.76 new_compare30(x0, x1, ty_Double) 24.86/10.76 new_ltEs18(x0, x1, ty_Int) 24.86/10.76 new_esEs23(x0, x1, ty_Integer) 24.86/10.76 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.86/10.76 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.86/10.76 new_compare30(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.76 new_esEs12(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.86/10.76 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.86/10.76 new_asAs(False, x0) 24.86/10.76 new_ltEs18(x0, x1, ty_Char) 24.86/10.76 new_lt18(x0, x1, x2, x3) 24.86/10.76 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_ltEs17(GT, GT) 24.86/10.76 new_sr0(Integer(x0), Integer(x1)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.76 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_ltEs20(x0, x1, ty_Int) 24.86/10.76 new_ltEs18(x0, x1, ty_Bool) 24.86/10.76 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.76 new_ltEs20(x0, x1, app(ty_[], x2)) 24.86/10.76 new_primCmpNat0(Zero, Succ(x0)) 24.86/10.76 new_esEs10(@0, @0) 24.86/10.76 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_primPlusNat0(Zero, x0) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.76 new_esEs25(x0, x1, ty_Double) 24.86/10.76 new_esEs25(x0, x1, ty_@0) 24.86/10.76 new_lt12(x0, x1, ty_Double) 24.86/10.76 new_lt13(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs27(x0, x1, ty_Int) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.76 new_esEs29(x0, x1, ty_@0) 24.86/10.76 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.76 new_ltEs20(x0, x1, ty_Char) 24.86/10.76 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare18(x0, x1) 24.86/10.76 new_ltEs17(LT, EQ) 24.86/10.76 new_ltEs17(EQ, LT) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.76 new_esEs21(x0, x1, ty_Double) 24.86/10.76 new_primCompAux1(x0, x1, x2, x3) 24.86/10.76 new_primMulNat0(Succ(x0), Zero) 24.86/10.76 new_primPlusNat1(Succ(x0), Succ(x1)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.76 new_esEs13([], :(x0, x1), x2) 24.86/10.76 new_primPlusNat1(Zero, Succ(x0)) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.76 new_compare0(:(x0, x1), :(x2, x3), x4) 24.86/10.76 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_compare29(x0, x1, True) 24.86/10.76 new_ltEs20(x0, x1, ty_Double) 24.86/10.76 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs9(EQ, EQ) 24.86/10.76 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs26(x0, x1, ty_Integer) 24.86/10.76 new_compare30(x0, x1, ty_Char) 24.86/10.76 new_compare27(x0, x1, True) 24.86/10.76 new_compare0(:(x0, x1), [], x2) 24.86/10.76 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.76 new_esEs21(x0, x1, ty_Float) 24.86/10.76 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.86/10.76 new_lt13(x0, x1, ty_Float) 24.86/10.76 new_primEqNat0(Succ(x0), Succ(x1)) 24.86/10.76 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.86/10.76 new_esEs4(Just(x0), Nothing, x1) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Float) 24.86/10.76 new_primMulNat0(Zero, Zero) 24.86/10.76 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_compare6(Integer(x0), Integer(x1)) 24.86/10.76 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_primCompAux0(x0, EQ) 24.86/10.76 new_esEs17(Integer(x0), Integer(x1)) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.76 new_ltEs20(x0, x1, ty_Ordering) 24.86/10.76 new_compare14(x0, x1) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.76 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.76 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.86/10.76 new_esEs22(x0, x1, ty_Float) 24.86/10.76 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.86/10.76 new_esEs20(x0, x1, ty_Float) 24.86/10.76 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_lt12(x0, x1, ty_Float) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.76 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_ltEs12(x0, x1, x2) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.76 new_primMulNat0(Succ(x0), Succ(x1)) 24.86/10.76 new_ltEs8(x0, x1, x2) 24.86/10.76 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.76 new_esEs20(x0, x1, ty_Integer) 24.86/10.76 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_lt12(x0, x1, ty_Integer) 24.86/10.76 new_compare12(x0, x1, False, x2, x3) 24.86/10.76 new_not(True) 24.86/10.76 new_esEs26(x0, x1, ty_@0) 24.86/10.76 new_compare30(x0, x1, ty_Bool) 24.86/10.76 new_lt19(x0, x1) 24.86/10.76 new_lt20(x0, x1, ty_Float) 24.86/10.76 new_primEqNat0(Succ(x0), Zero) 24.86/10.76 new_primMulNat0(Zero, Succ(x0)) 24.86/10.76 new_ltEs6(x0, x1) 24.86/10.76 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.76 new_compare30(x0, x1, ty_Ordering) 24.86/10.76 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs12(x0, x1, ty_Double) 24.86/10.76 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.76 new_compare7(x0, x1, x2) 24.86/10.76 new_compare26(x0, x1, True, x2) 24.86/10.76 new_compare13(x0, x1, False, x2) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.76 new_esEs18(False, False) 24.86/10.76 new_asAs(True, x0) 24.86/10.76 new_ltEs14(x0, x1) 24.86/10.76 new_esEs9(LT, EQ) 24.86/10.76 new_esEs9(EQ, LT) 24.86/10.76 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs9(GT, GT) 24.86/10.76 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.76 new_esEs20(x0, x1, ty_Bool) 24.86/10.76 new_sr(x0, x1) 24.86/10.76 new_esEs23(x0, x1, ty_Float) 24.86/10.76 new_esEs28(x0, x1, ty_Int) 24.86/10.76 new_esEs26(x0, x1, ty_Bool) 24.86/10.76 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.76 new_lt15(x0, x1, x2) 24.86/10.76 new_primMulInt(Pos(x0), Pos(x1)) 24.86/10.76 new_ltEs19(x0, x1, ty_Float) 24.86/10.76 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs9(LT, GT) 24.86/10.76 new_esEs9(GT, LT) 24.86/10.76 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.86/10.76 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_compare30(x0, x1, ty_Integer) 24.86/10.76 new_esEs29(x0, x1, ty_Float) 24.86/10.76 new_lt5(x0, x1) 24.86/10.76 new_esEs11(x0, x1, ty_Ordering) 24.86/10.76 new_esEs24(x0, x1, ty_Ordering) 24.86/10.76 new_esEs21(x0, x1, ty_Bool) 24.86/10.76 new_esEs11(x0, x1, ty_Float) 24.86/10.76 new_esEs12(x0, x1, ty_Char) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.86/10.76 new_lt6(x0, x1) 24.86/10.76 new_compare25(x0, x1, True, x2, x3) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.86/10.76 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.76 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.76 new_ltEs17(LT, GT) 24.86/10.76 new_ltEs17(GT, LT) 24.86/10.76 new_compare9(x0, x1) 24.86/10.76 new_ltEs18(x0, x1, ty_Double) 24.86/10.76 new_esEs12(x0, x1, ty_Int) 24.86/10.76 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_@0) 24.86/10.76 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.86/10.76 new_ltEs20(x0, x1, ty_@0) 24.86/10.76 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_lt11(x0, x1) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.86/10.76 new_primMulInt(Neg(x0), Neg(x1)) 24.86/10.76 new_esEs22(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs20(x0, x1, ty_@0) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.76 new_ltEs7(Just(x0), Nothing, x1) 24.86/10.76 new_esEs25(x0, x1, ty_Float) 24.86/10.76 new_primMulInt(Pos(x0), Neg(x1)) 24.86/10.76 new_primMulInt(Neg(x0), Pos(x1)) 24.86/10.76 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.76 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.86/10.76 new_primCmpNat0(Succ(x0), Succ(x1)) 24.86/10.76 new_esEs11(x0, x1, ty_Int) 24.86/10.76 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.86/10.76 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.76 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.86/10.76 new_compare0([], [], x0) 24.86/10.76 new_esEs30(x0, x1, ty_Double) 24.86/10.76 new_esEs21(x0, x1, ty_Integer) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.86/10.76 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.86/10.76 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.76 new_esEs12(x0, x1, ty_Float) 24.86/10.76 new_compare27(x0, x1, False) 24.86/10.76 new_lt20(x0, x1, ty_Integer) 24.86/10.76 new_esEs24(x0, x1, ty_Double) 24.86/10.76 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_esEs26(x0, x1, ty_Ordering) 24.86/10.76 new_lt17(x0, x1) 24.86/10.76 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.76 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.86/10.76 new_ltEs19(x0, x1, ty_Bool) 24.86/10.76 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.86/10.76 new_esEs23(x0, x1, ty_Double) 24.86/10.76 new_compare30(x0, x1, ty_Float) 24.86/10.76 new_primEqNat0(Zero, Zero) 24.86/10.76 new_esEs25(x0, x1, ty_Int) 24.86/10.76 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.76 new_compare111(x0, x1, False) 24.86/10.76 new_ltEs10(x0, x1) 24.86/10.76 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.86/10.76 new_not(False) 24.86/10.76 new_lt12(x0, x1, ty_Int) 24.86/10.76 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.76 new_compare13(x0, x1, True, x2) 24.86/10.76 new_esEs13(:(x0, x1), [], x2) 24.86/10.76 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.76 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.86/10.76 new_ltEs16(True, True) 24.86/10.76 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.76 new_esEs11(x0, x1, ty_Char) 24.86/10.76 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.76 new_lt7(x0, x1, x2, x3) 24.86/10.76 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.76 new_ltEs17(EQ, GT) 24.86/10.76 new_ltEs17(GT, EQ) 24.86/10.76 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.76 new_esEs28(x0, x1, ty_Integer) 24.86/10.76 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_esEs29(x0, x1, ty_Char) 24.86/10.76 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs25(x0, x1, ty_Bool) 24.86/10.76 new_esEs20(x0, x1, ty_Ordering) 24.86/10.76 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.76 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.76 new_compare11(x0, x1, True, x2, x3) 24.86/10.76 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.76 new_compare12(x0, x1, True, x2, x3) 24.86/10.76 new_compare30(x0, x1, ty_Int) 24.86/10.76 new_esEs11(x0, x1, app(ty_[], x2)) 24.86/10.76 new_esEs29(x0, x1, ty_Int) 24.86/10.76 new_ltEs15(x0, x1) 24.86/10.76 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.76 new_esEs30(x0, x1, app(ty_[], x2)) 24.86/10.76 new_lt12(x0, x1, ty_Bool) 24.86/10.76 new_ltEs19(x0, x1, app(ty_[], x2)) 24.86/10.76 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.86/10.76 new_esEs25(x0, x1, ty_Char) 24.86/10.76 new_esEs21(x0, x1, ty_Int) 24.86/10.76 new_ltEs19(x0, x1, ty_Ordering) 24.86/10.76 new_lt4(x0, x1, x2) 24.86/10.76 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.76 new_esEs13([], [], x0) 24.86/10.76 new_ltEs19(x0, x1, ty_Integer) 24.86/10.76 new_pePe(False, x0) 24.86/10.76 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.76 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.76 new_lt12(x0, x1, ty_Char) 24.86/10.76 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.76 new_compare32(@0, @0) 24.86/10.76 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_primCmpNat0(Zero, Zero) 24.86/10.76 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.86/10.76 new_esEs21(x0, x1, ty_Char) 24.86/10.76 new_esEs11(x0, x1, ty_Bool) 24.86/10.76 new_lt20(x0, x1, ty_Bool) 24.86/10.76 24.86/10.76 We have to consider all minimal (P,Q,R)-chains. 24.86/10.76 ---------------------------------------- 24.86/10.76 24.86/10.76 (33) TransformationProof (EQUIVALENT) 24.86/10.76 By rewriting [LPAR04] the rule new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Nothing, False, ba), GT), h, ba) at position [5,0] we obtained the following new rules [LPAR04]: 24.86/10.76 24.86/10.76 (new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, GT), h, ba),new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, GT), h, ba)) 24.86/10.76 24.86/10.76 24.86/10.76 ---------------------------------------- 24.86/10.76 24.86/10.76 (34) 24.86/10.76 Obligation: 24.86/10.76 Q DP problem: 24.86/10.76 The TRS P consists of the following rules: 24.86/10.76 24.86/10.76 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw16, Just(vyw18), bb, bc) 24.86/10.76 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Just(vyw300), new_esEs29(vyw40, vyw300, ba), ba), LT), h, ba) 24.86/10.76 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare26(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) 24.86/10.76 new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw17, Just(vyw18), bb, bc) 24.86/10.76 new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw34, Just(vyw40), h, ba) 24.86/10.76 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) 24.86/10.76 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, GT), h, ba) 24.86/10.76 24.86/10.76 The TRS R consists of the following rules: 24.86/10.76 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.76 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.76 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.76 new_ltEs17(LT, EQ) -> True 24.86/10.76 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs19(vyw400, vyw3000, dde) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.76 new_pePe(True, vyw110) -> True 24.86/10.76 new_compare12(vyw28000, vyw29000, False, bg, bh) -> GT 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw400, vyw3000, ee, ef) 24.86/10.76 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.76 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, cfb) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.76 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.76 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.76 new_esEs18(True, True) -> True 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(ty_[], daa)) -> new_esEs13(vyw28000, vyw29000, daa) 24.86/10.76 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.76 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.76 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.76 new_esEs29(vyw40, vyw300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vyw40, vyw300, bbg, bbh, bca) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], ceb)) -> new_esEs13(vyw400, vyw3000, ceb) 24.86/10.76 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.76 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(ty_Ratio, eh)) -> new_esEs19(vyw400, vyw3000, eh) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, cfd), cfb) -> new_ltEs7(vyw28000, vyw29000, cfd) 24.86/10.76 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.76 new_esEs9(LT, EQ) -> False 24.86/10.76 new_esEs9(EQ, LT) -> False 24.86/10.76 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.76 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bga) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bga), bga) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.76 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.76 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw400, vyw3000, ddb, ddc) 24.86/10.76 new_compare8(vyw28000, vyw29000, bd, be) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Maybe, cgg)) -> new_ltEs7(vyw28000, vyw29000, cgg) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.76 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.76 new_primCompAux0(vyw116, GT) -> GT 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.76 new_ltEs5(Left(vyw28000), Right(vyw29000), cgd, cfb) -> True 24.86/10.76 new_esEs21(vyw401, vyw3001, app(ty_[], bdg)) -> new_esEs13(vyw401, vyw3001, bdg) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.76 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, cdd), cde)) -> new_ltEs4(vyw28002, vyw29002, cdd, cde) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, hd) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.76 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw400, vyw3000, bcb, bcc, bcd) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(ty_Maybe, bfd)) -> new_esEs4(vyw402, vyw3002, bfd) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, hd) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.76 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.76 new_primCompAux0(vyw116, LT) -> LT 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.76 new_ltEs17(LT, GT) -> True 24.86/10.76 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.76 new_not(True) -> False 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ccf)) -> new_ltEs7(vyw28002, vyw29002, ccf) 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.76 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(ty_Maybe, gb)) -> new_esEs4(vyw401, vyw3001, gb) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.76 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bgd)) -> new_compare7(vyw28000, vyw29000, bgd) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(ty_Ratio, bfe)) -> new_esEs19(vyw402, vyw3002, bfe) 24.86/10.76 new_ltEs17(EQ, GT) -> True 24.86/10.76 new_esEs11(vyw400, vyw3000, app(ty_Maybe, eg)) -> new_esEs4(vyw400, vyw3000, eg) 24.86/10.76 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dea) -> new_asAs(new_esEs27(vyw400, vyw3000, dea), new_esEs28(vyw401, vyw3001, dea)) 24.86/10.76 new_esEs29(vyw40, vyw300, app(ty_[], dce)) -> new_esEs13(vyw40, vyw300, dce) 24.86/10.76 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw28000, vyw29000, cg, da, db) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs13(vyw28001, vyw29001, dbf, dbg, dbh) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.76 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.76 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.76 new_lt20(vyw28000, vyw29000, app(ty_[], daa)) -> new_lt4(vyw28000, vyw29000, daa) 24.86/10.76 new_esEs13([], [], dce) -> True 24.86/10.76 new_ltEs7(Nothing, Just(vyw29000), cc) -> True 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, hd) -> new_esEs14(vyw400, vyw3000) 24.86/10.76 new_compare26(Nothing, Nothing, False, ddh) -> LT 24.86/10.76 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.76 new_ltEs17(LT, LT) -> True 24.86/10.76 new_esEs22(vyw402, vyw3002, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw402, vyw3002, bfb, bfc) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vyw28000, vyw29000, dad, dae, daf) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, cfh), cga), cfb) -> new_ltEs5(vyw28000, vyw29000, cfh, cga) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.76 new_compare13(vyw95, vyw96, False, ca) -> GT 24.86/10.76 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(ty_Ratio, gc)) -> new_esEs19(vyw401, vyw3001, gc) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Ratio, cgf)) -> new_ltEs12(vyw28000, vyw29000, cgf) 24.86/10.76 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(vyw2800, vyw2900, caf, cag, cah) 24.86/10.76 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, chg), chh)) -> new_ltEs4(vyw2800, vyw2900, chg, chh) 24.86/10.76 new_lt18(vyw28000, vyw29000, bg, bh) -> new_esEs9(new_compare16(vyw28000, vyw29000, bg, bh), LT) 24.86/10.76 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.76 new_esEs30(vyw18, vyw13, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs5(vyw18, vyw13, bhd, bhe, bhf) 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.76 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.76 new_compare28(vyw28000, vyw29000, False, gf, gg, gh) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(ty_[], ed)) -> new_esEs13(vyw400, vyw3000, ed) 24.86/10.76 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ha), hb), hc), hd) -> new_esEs5(vyw400, vyw3000, ha, hb, hc) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, cfc), cfb) -> new_ltEs12(vyw28000, vyw29000, cfc) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, cc)) -> new_ltEs7(vyw2800, vyw2900, cc) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, de), df)) -> new_ltEs4(vyw28000, vyw29000, de, df) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, dcc), dcd)) -> new_ltEs4(vyw28001, vyw29001, dcc, dcd) 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(ty_[], cbb)) -> new_esEs13(vyw28001, vyw29001, cbb) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(vyw401, vyw3001, bdd, bde, bdf) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.76 new_compare110(vyw28000, vyw29000, False, gf, gg, gh) -> GT 24.86/10.76 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 24.86/10.76 new_pePe(False, vyw110) -> vyw110 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.76 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.76 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.76 new_compare25(vyw28000, vyw29000, True, bg, bh) -> EQ 24.86/10.76 new_ltEs12(vyw2800, vyw2900, bfh) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, bfh), GT)) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Integer) -> new_esEs17(vyw40, vyw300) 24.86/10.76 new_esEs22(vyw402, vyw3002, app(app(ty_Either, bff), bfg)) -> new_esEs6(vyw402, vyw3002, bff, bfg) 24.86/10.76 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vyw28000, vyw29000, gf, gg, gh) 24.86/10.76 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.76 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_esEs19(vyw28000, vyw29000, dab) 24.86/10.76 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Char) -> new_esEs14(vyw40, vyw300) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, cfb) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_@2, che), chf)) -> new_ltEs4(vyw28000, vyw29000, che, chf) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.76 new_compare11(vyw28000, vyw29000, False, bd, be) -> GT 24.86/10.76 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.76 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw401, vyw3001, fh, ga) 24.86/10.76 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dg, dh) -> new_asAs(new_esEs11(vyw400, vyw3000, dg), new_esEs12(vyw401, vyw3001, dh)) 24.86/10.76 new_esEs26(vyw400, vyw3000, app(ty_[], dda)) -> new_esEs13(vyw400, vyw3000, dda) 24.86/10.76 new_compare24(vyw28000, vyw29000, False, bd, be) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw400, vyw3000, cdg, cdh, cea) 24.86/10.76 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs13(vyw28002, vyw29002, ccg, cch, cda) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.76 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs5(vyw400, vyw3000, ea, eb, ec) 24.86/10.76 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.76 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.76 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.76 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, cfb) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw28001, vyw29001, cbh, cca) 24.86/10.76 new_esEs13(:(vyw400, vyw401), [], dce) -> False 24.86/10.76 new_esEs13([], :(vyw3000, vyw3001), dce) -> False 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, bab), bac), hd) -> new_esEs6(vyw400, vyw3000, bab, bac) 24.86/10.76 new_primCompAux1(vyw28000, vyw29000, vyw111, bga) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, bga)) 24.86/10.76 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.76 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.76 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.76 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), caf, cag, cah) -> new_pePe(new_lt12(vyw28000, vyw29000, caf), new_asAs(new_esEs23(vyw28000, vyw29000, caf), new_pePe(new_lt13(vyw28001, vyw29001, cag), new_asAs(new_esEs24(vyw28001, vyw29001, cag), new_ltEs18(vyw28002, vyw29002, cah))))) 24.86/10.76 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vyw400, vyw3000, bae, baf, bag) 24.86/10.76 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(vyw28000, vyw29000, gf, gg, gh) 24.86/10.76 new_compare26(vyw280, vyw290, True, ddh) -> EQ 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.76 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.76 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_[], bah)) -> new_esEs13(vyw400, vyw3000, bah) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, hf), hg), hd) -> new_esEs7(vyw400, vyw3000, hf, hg) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, cfe), cff), cfg), cfb) -> new_ltEs13(vyw28000, vyw29000, cfe, cff, cfg) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.76 new_lt12(vyw28000, vyw29000, app(ty_[], bf)) -> new_lt4(vyw28000, vyw29000, bf) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.76 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.76 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.76 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.76 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.76 new_esEs20(vyw400, vyw3000, app(ty_Maybe, bch)) -> new_esEs4(vyw400, vyw3000, bch) 24.86/10.76 new_compare30(vyw28000, vyw29000, app(ty_Ratio, bgc)) -> new_compare19(vyw28000, vyw29000, bgc) 24.86/10.76 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.76 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.76 new_esEs9(LT, LT) -> True 24.86/10.76 new_lt13(vyw28001, vyw29001, app(ty_[], cbb)) -> new_lt4(vyw28001, vyw29001, cbb) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.76 new_esEs11(vyw400, vyw3000, app(app(ty_Either, fa), fb)) -> new_esEs6(vyw400, vyw3000, fa, fb) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.76 new_esEs29(vyw40, vyw300, ty_Bool) -> new_esEs18(vyw40, vyw300) 24.86/10.76 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bbg, bbh, bca) -> new_asAs(new_esEs20(vyw400, vyw3000, bbg), new_asAs(new_esEs21(vyw401, vyw3001, bbh), new_esEs22(vyw402, vyw3002, bca))) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs17(vyw18, vyw13) 24.86/10.76 new_compare25(vyw28000, vyw29000, False, bg, bh) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.76 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.76 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.76 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.76 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.76 new_esEs21(vyw401, vyw3001, app(ty_Maybe, beb)) -> new_esEs4(vyw401, vyw3001, beb) 24.86/10.76 new_esEs12(vyw401, vyw3001, app(app(ty_Either, gd), ge)) -> new_esEs6(vyw401, vyw3001, gd, ge) 24.86/10.76 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.76 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.76 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, cfb) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.76 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyw28000, vyw29000, dba, dbb) 24.86/10.76 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.76 new_lt20(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_lt10(vyw28000, vyw29000, dac) 24.86/10.76 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, hd) -> new_esEs10(vyw400, vyw3000) 24.86/10.76 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.76 new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs18(vyw18, vyw13) 24.86/10.76 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), chg, chh) -> new_pePe(new_lt20(vyw28000, vyw29000, chg), new_asAs(new_esEs25(vyw28000, vyw29000, chg), new_ltEs19(vyw28001, vyw29001, chh))) 24.86/10.76 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.76 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_@2, bba), bbb)) -> new_esEs7(vyw400, vyw3000, bba, bbb) 24.86/10.76 new_compare16(vyw28000, vyw29000, bg, bh) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.76 new_ltEs17(EQ, EQ) -> True 24.86/10.76 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.76 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, cee)) -> new_esEs4(vyw400, vyw3000, cee) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_esEs6(vyw28000, vyw29000, bg, bh) 24.86/10.77 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.77 new_esEs21(vyw401, vyw3001, app(app(ty_Either, bed), bee)) -> new_esEs6(vyw401, vyw3001, bed, bee) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, dca), dcb)) -> new_ltEs5(vyw28001, vyw29001, dca, dcb) 24.86/10.77 new_ltEs17(GT, LT) -> False 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.77 new_ltEs17(EQ, LT) -> False 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs8(vyw18, vyw13) 24.86/10.77 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.77 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.77 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.77 new_esEs30(vyw18, vyw13, app(ty_Maybe, cab)) -> new_esEs4(vyw18, vyw13, cab) 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_esEs4(vyw28001, vyw29001, cbd) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_Either, bbe), bbf)) -> new_esEs6(vyw400, vyw3000, bbe, bbf) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(ty_[], bf)) -> new_esEs13(vyw28000, vyw29000, bf) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, cgb), cgc), cfb) -> new_ltEs4(vyw28000, vyw29000, cgb, cgc) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.77 new_lt7(vyw28000, vyw29000, bd, be) -> new_esEs9(new_compare8(vyw28000, vyw29000, bd, be), LT) 24.86/10.77 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(vyw402, vyw3002, bef, beg, beh) 24.86/10.77 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.77 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw400, vyw3000, ceg, ceh) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, dc), dd)) -> new_ltEs5(vyw28000, vyw29000, dc, dd) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, hd) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_esEs19(vyw28001, vyw29001, cbc) 24.86/10.77 new_compare0([], :(vyw29000, vyw29001), bga) -> LT 24.86/10.77 new_asAs(True, vyw102) -> vyw102 24.86/10.77 new_ltEs5(Right(vyw28000), Left(vyw29000), cgd, cfb) -> False 24.86/10.77 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(vyw401, vyw3001, fc, fd, ff) 24.86/10.77 new_ltEs8(vyw2800, vyw2900, bga) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, bga), GT)) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.77 new_compare26(Just(vyw2800), Just(vyw2900), False, ddh) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, ddh), ddh) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, baa), hd) -> new_esEs19(vyw400, vyw3000, baa) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_lt7(vyw28000, vyw29000, dba, dbb) 24.86/10.77 new_esEs30(vyw18, vyw13, app(ty_Ratio, cac)) -> new_esEs19(vyw18, vyw13, cac) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.77 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Left(vyw400), Right(vyw3000), bad, hd) -> False 24.86/10.77 new_esEs6(Right(vyw400), Left(vyw3000), bad, hd) -> False 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_ltEs16(True, False) -> False 24.86/10.77 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, cgd), cfb)) -> new_ltEs5(vyw2800, vyw2900, cgd, cfb) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.77 new_esEs18(False, False) -> True 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.77 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.77 new_compare13(vyw95, vyw96, True, ca) -> LT 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.77 new_compare24(vyw28000, vyw29000, True, bd, be) -> EQ 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_esEs7(vyw28001, vyw29001, ccb, ccc) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.77 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.77 new_esEs30(vyw18, vyw13, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw18, vyw13, bhh, caa) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(ty_[], ccd)) -> new_ltEs8(vyw28002, vyw29002, ccd) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_Either, chc), chd)) -> new_ltEs5(vyw28000, vyw29000, chc, chd) 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Ratio, bbd)) -> new_esEs19(vyw400, vyw3000, bbd) 24.86/10.77 new_compare0([], [], bga) -> EQ 24.86/10.77 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.77 new_ltEs7(Nothing, Nothing, cc) -> True 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.77 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.77 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.77 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.77 new_esEs12(vyw401, vyw3001, app(ty_[], fg)) -> new_esEs13(vyw401, vyw3001, fg) 24.86/10.77 new_lt12(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_lt18(vyw28000, vyw29000, bg, bh) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) 24.86/10.77 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hd) -> new_esEs4(vyw400, vyw3000, hh) 24.86/10.77 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(ty_[], dbc)) -> new_ltEs8(vyw28001, vyw29001, dbc) 24.86/10.77 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.77 new_esEs26(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs6(vyw400, vyw3000, ddf, ddg) 24.86/10.77 new_ltEs7(Just(vyw28000), Nothing, cc) -> False 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_esEs7(vyw28000, vyw29000, bd, be) 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_compare28(vyw28000, vyw29000, True, gf, gg, gh) -> EQ 24.86/10.77 new_lt15(vyw28000, vyw29000, cba) -> new_esEs9(new_compare19(vyw28000, vyw29000, cba), LT) 24.86/10.77 new_esEs4(Nothing, Nothing, cdf) -> True 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.77 new_esEs4(Nothing, Just(vyw3000), cdf) -> False 24.86/10.77 new_esEs4(Just(vyw400), Nothing, cdf) -> False 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_lt15(vyw28000, vyw29000, dab) 24.86/10.77 new_lt13(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_lt18(vyw28001, vyw29001, cbh, cca) 24.86/10.77 new_esEs29(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs19(vyw40, vyw300, dea) 24.86/10.77 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.77 new_compare32(@0, @0) -> EQ 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Maybe, bbc)) -> new_esEs4(vyw400, vyw3000, bbc) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_esEs6(vyw28000, vyw29000, dag, dah) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], cfa), cfb) -> new_ltEs8(vyw28000, vyw29000, cfa) 24.86/10.77 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.77 new_esEs9(EQ, EQ) -> True 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(ty_[], bga)) -> new_ltEs8(vyw2800, vyw2900, bga) 24.86/10.77 new_compare26(Just(vyw2800), Nothing, False, ddh) -> GT 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, dbe)) -> new_ltEs7(vyw28001, vyw29001, dbe) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, bfh)) -> new_ltEs12(vyw2800, vyw2900, bfh) 24.86/10.77 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.77 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.77 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cd)) -> new_ltEs8(vyw28000, vyw29000, cd) 24.86/10.77 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.77 new_esEs20(vyw400, vyw3000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(vyw400, vyw3000, bdb, bdc) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.77 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, cdb), cdc)) -> new_ltEs5(vyw28002, vyw29002, cdb, cdc) 24.86/10.77 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.77 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.77 new_compare30(vyw28000, vyw29000, app(ty_[], bgb)) -> new_compare0(vyw28000, vyw29000, bgb) 24.86/10.77 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_esEs19(vyw28000, vyw29000, cba) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, ce)) -> new_ltEs12(vyw28000, vyw29000, ce) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, dbd)) -> new_ltEs12(vyw28001, vyw29001, dbd) 24.86/10.77 new_esEs29(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs4(vyw40, vyw300, cdf) 24.86/10.77 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.77 new_lt4(vyw28000, vyw29000, bf) -> new_esEs9(new_compare0(vyw28000, vyw29000, bf), LT) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.77 new_compare110(vyw28000, vyw29000, True, gf, gg, gh) -> LT 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cf)) -> new_ltEs7(vyw28000, vyw29000, cf) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.77 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, cfb) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_lt16(vyw28000, vyw29000, dad, dae, daf) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.77 new_not(False) -> True 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, hd) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_[], cge)) -> new_ltEs8(vyw28000, vyw29000, cge) 24.86/10.77 new_lt16(vyw28000, vyw29000, gf, gg, gh) -> new_esEs9(new_compare17(vyw28000, vyw29000, gf, gg, gh), LT) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.77 new_esEs9(GT, GT) -> True 24.86/10.77 new_compare0(:(vyw28000, vyw28001), [], bga) -> GT 24.86/10.77 new_esEs18(False, True) -> False 24.86/10.77 new_esEs18(True, False) -> False 24.86/10.77 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.77 new_esEs29(vyw40, vyw300, app(app(ty_Either, bad), hd)) -> new_esEs6(vyw40, vyw300, bad, hd) 24.86/10.77 new_esEs22(vyw402, vyw3002, app(ty_[], bfa)) -> new_esEs13(vyw402, vyw3002, bfa) 24.86/10.77 new_esEs10(@0, @0) -> True 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cce)) -> new_ltEs12(vyw28002, vyw29002, cce) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.77 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bgh), bha)) -> new_compare16(vyw28000, vyw29000, bgh, bha) 24.86/10.77 new_lt13(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_lt7(vyw28001, vyw29001, ccb, ccc) 24.86/10.77 new_esEs29(vyw40, vyw300, app(app(ty_@2, dg), dh)) -> new_esEs7(vyw40, vyw300, dg, dh) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.77 new_esEs9(EQ, GT) -> False 24.86/10.77 new_esEs9(GT, EQ) -> False 24.86/10.77 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.77 new_ltEs16(False, False) -> True 24.86/10.77 new_compare11(vyw28000, vyw29000, True, bd, be) -> LT 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.77 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) 24.86/10.77 new_esEs30(vyw18, vyw13, app(app(ty_Either, cad), cae)) -> new_esEs6(vyw18, vyw13, cad, cae) 24.86/10.77 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_lt18(vyw28000, vyw29000, dag, dah) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.77 new_esEs30(vyw18, vyw13, app(ty_[], bhg)) -> new_esEs13(vyw18, vyw13, bhg) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.77 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.77 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.77 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.77 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare17(vyw28000, vyw29000, bge, bgf, bgg) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.77 new_ltEs17(GT, EQ) -> False 24.86/10.77 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_esEs4(vyw28000, vyw29000, dac) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.77 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bhb), bhc)) -> new_compare8(vyw28000, vyw29000, bhb, bhc) 24.86/10.77 new_ltEs16(True, True) -> True 24.86/10.77 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_lt15(vyw28000, vyw29000, cba) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs13(vyw28000, vyw29000, cgh, cha, chb) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs10(vyw18, vyw13) 24.86/10.77 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.77 new_esEs21(vyw401, vyw3001, app(ty_Ratio, bec)) -> new_esEs19(vyw401, vyw3001, bec) 24.86/10.77 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, hd) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.77 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(vyw400, vyw3000, dcf, dcg, dch) 24.86/10.77 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bdh), bea)) -> new_esEs7(vyw401, vyw3001, bdh, bea) 24.86/10.77 new_compare26(Nothing, Just(vyw2900), False, ddh) -> LT 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.77 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_lt15(vyw28001, vyw29001, cbc) 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, cec), ced)) -> new_esEs7(vyw400, vyw3000, cec, ced) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.77 new_compare17(vyw28000, vyw29000, gf, gg, gh) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.77 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.77 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], he), hd) -> new_esEs13(vyw400, vyw3000, he) 24.86/10.77 new_ltEs17(GT, GT) -> True 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, cef)) -> new_esEs19(vyw400, vyw3000, cef) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.77 new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs4(vyw400, vyw3000, ddd) 24.86/10.77 new_primEqNat0(Zero, Zero) -> True 24.86/10.77 new_lt13(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_lt10(vyw28001, vyw29001, cbd) 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_esEs9(LT, GT) -> False 24.86/10.77 new_esEs9(GT, LT) -> False 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.77 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, cfb) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.77 new_asAs(False, vyw102) -> False 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, cfb) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Ordering) -> new_esEs9(vyw40, vyw300) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, cfb) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.77 new_esEs20(vyw400, vyw3000, app(ty_Ratio, bda)) -> new_esEs19(vyw400, vyw3000, bda) 24.86/10.77 new_lt12(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_lt7(vyw28000, vyw29000, bd, be) 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.77 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, hd) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_ltEs16(False, True) -> True 24.86/10.77 new_compare12(vyw28000, vyw29000, True, bg, bh) -> LT 24.86/10.77 new_esEs20(vyw400, vyw3000, app(ty_[], bce)) -> new_esEs13(vyw400, vyw3000, bce) 24.86/10.77 new_esEs20(vyw400, vyw3000, app(app(ty_@2, bcf), bcg)) -> new_esEs7(vyw400, vyw3000, bcf, bcg) 24.86/10.77 24.86/10.77 The set Q consists of the following terms: 24.86/10.77 24.86/10.77 new_ltEs20(x0, x1, ty_Float) 24.86/10.77 new_esEs22(x0, x1, ty_Int) 24.86/10.77 new_ltEs19(x0, x1, ty_Char) 24.86/10.77 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs27(x0, x1, ty_Integer) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.77 new_lt20(x0, x1, ty_Char) 24.86/10.77 new_compare24(x0, x1, True, x2, x3) 24.86/10.77 new_ltEs17(EQ, EQ) 24.86/10.77 new_lt13(x0, x1, ty_Int) 24.86/10.77 new_primPlusNat1(Succ(x0), Zero) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.77 new_esEs30(x0, x1, ty_Bool) 24.86/10.77 new_esEs24(x0, x1, ty_Bool) 24.86/10.77 new_primPlusNat1(Zero, Zero) 24.86/10.77 new_ltEs19(x0, x1, ty_Int) 24.86/10.77 new_lt13(x0, x1, ty_Ordering) 24.86/10.77 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.86/10.77 new_compare25(x0, x1, False, x2, x3) 24.86/10.77 new_esEs22(x0, x1, ty_Ordering) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.77 new_lt10(x0, x1, x2) 24.86/10.77 new_esEs30(x0, x1, ty_Integer) 24.86/10.77 new_esEs23(x0, x1, ty_@0) 24.86/10.77 new_esEs21(x0, x1, ty_Ordering) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.86/10.77 new_compare10(x0, x1, True) 24.86/10.77 new_lt12(x0, x1, ty_Ordering) 24.86/10.77 new_esEs18(True, True) 24.86/10.77 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.77 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.77 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.77 new_primCompAux0(x0, GT) 24.86/10.77 new_lt20(x0, x1, ty_Int) 24.86/10.77 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.77 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs24(x0, x1, ty_@0) 24.86/10.77 new_esEs11(x0, x1, ty_Integer) 24.86/10.77 new_esEs8(x0, x1) 24.86/10.77 new_lt20(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs23(x0, x1, ty_Bool) 24.86/10.77 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.77 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.77 new_lt16(x0, x1, x2, x3, x4) 24.86/10.77 new_compare8(x0, x1, x2, x3) 24.86/10.77 new_esEs30(x0, x1, ty_@0) 24.86/10.77 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.77 new_ltEs18(x0, x1, ty_@0) 24.86/10.77 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs11(x0, x1, ty_@0) 24.86/10.77 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.77 new_esEs12(x0, x1, ty_Integer) 24.86/10.77 new_esEs29(x0, x1, ty_Bool) 24.86/10.77 new_ltEs9(x0, x1) 24.86/10.77 new_esEs23(x0, x1, ty_Char) 24.86/10.77 new_ltEs7(Nothing, Nothing, x0) 24.86/10.77 new_ltEs19(x0, x1, ty_@0) 24.86/10.77 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs9(LT, LT) 24.86/10.77 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.77 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.77 new_ltEs16(False, False) 24.86/10.77 new_primCmpNat0(Succ(x0), Zero) 24.86/10.77 new_esEs23(x0, x1, ty_Int) 24.86/10.77 new_esEs12(x0, x1, ty_@0) 24.86/10.77 new_compare31(Char(x0), Char(x1)) 24.86/10.77 new_ltEs19(x0, x1, ty_Double) 24.86/10.77 new_lt20(x0, x1, ty_Ordering) 24.86/10.77 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.77 new_esEs29(x0, x1, app(ty_[], x2)) 24.86/10.77 new_ltEs11(x0, x1) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.77 new_esEs9(EQ, GT) 24.86/10.77 new_esEs9(GT, EQ) 24.86/10.77 new_primPlusNat0(Succ(x0), x1) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.77 new_esEs22(x0, x1, ty_@0) 24.86/10.77 new_esEs20(x0, x1, ty_Int) 24.86/10.77 new_esEs14(Char(x0), Char(x1)) 24.86/10.77 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_compare111(x0, x1, True) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.77 new_esEs26(x0, x1, ty_Double) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.77 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.86/10.77 new_esEs25(x0, x1, ty_Integer) 24.86/10.77 new_esEs20(x0, x1, app(ty_[], x2)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.77 new_esEs23(x0, x1, app(ty_[], x2)) 24.86/10.77 new_compare17(x0, x1, x2, x3, x4) 24.86/10.77 new_esEs22(x0, x1, ty_Bool) 24.86/10.77 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.77 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.77 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.77 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs20(x0, x1, ty_Char) 24.86/10.77 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.77 new_esEs24(x0, x1, ty_Integer) 24.86/10.77 new_compare110(x0, x1, False, x2, x3, x4) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.77 new_ltEs7(Nothing, Just(x0), x1) 24.86/10.77 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs25(x0, x1, ty_Ordering) 24.86/10.77 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.77 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.77 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.77 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs29(x0, x1, ty_Integer) 24.86/10.77 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs29(x0, x1, ty_Ordering) 24.86/10.77 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs22(x0, x1, ty_Char) 24.86/10.77 new_esEs22(x0, x1, ty_Double) 24.86/10.77 new_esEs20(x0, x1, ty_Double) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.77 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs12(x0, x1, ty_Bool) 24.86/10.77 new_lt13(x0, x1, ty_Double) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.77 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_lt13(x0, x1, ty_Char) 24.86/10.77 new_compare29(x0, x1, False) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.77 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_compare24(x0, x1, False, x2, x3) 24.86/10.77 new_esEs29(x0, x1, ty_Double) 24.86/10.77 new_esEs22(x0, x1, ty_Integer) 24.86/10.77 new_ltEs20(x0, x1, ty_Bool) 24.86/10.77 new_esEs30(x0, x1, ty_Ordering) 24.86/10.77 new_esEs26(x0, x1, ty_Int) 24.86/10.77 new_esEs24(x0, x1, ty_Float) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.77 new_compare16(x0, x1, x2, x3) 24.86/10.77 new_compare10(x0, x1, False) 24.86/10.77 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.77 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_lt13(x0, x1, ty_Bool) 24.86/10.77 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs11(x0, x1, ty_Double) 24.86/10.77 new_lt9(x0, x1) 24.86/10.77 new_esEs30(x0, x1, ty_Float) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.77 new_esEs26(x0, x1, ty_Char) 24.86/10.77 new_lt13(x0, x1, ty_@0) 24.86/10.77 new_compare26(Just(x0), Nothing, False, x1) 24.86/10.77 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.77 new_esEs21(x0, x1, ty_@0) 24.86/10.77 new_lt12(x0, x1, ty_@0) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.86/10.77 new_ltEs18(x0, x1, ty_Ordering) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.77 new_esEs23(x0, x1, ty_Ordering) 24.86/10.77 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.77 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.77 new_lt14(x0, x1) 24.86/10.77 new_esEs18(False, True) 24.86/10.77 new_esEs18(True, False) 24.86/10.77 new_esEs30(x0, x1, ty_Char) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.86/10.77 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_lt13(x0, x1, ty_Integer) 24.86/10.77 new_compare0([], :(x0, x1), x2) 24.86/10.77 new_ltEs20(x0, x1, ty_Integer) 24.86/10.77 new_ltEs18(x0, x1, ty_Float) 24.86/10.77 new_esEs26(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.77 new_esEs12(x0, x1, ty_Ordering) 24.86/10.77 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_primCompAux0(x0, LT) 24.86/10.77 new_esEs24(x0, x1, ty_Int) 24.86/10.77 new_esEs26(x0, x1, ty_Float) 24.86/10.77 new_lt8(x0, x1) 24.86/10.77 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.86/10.77 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.77 new_esEs30(x0, x1, ty_Int) 24.86/10.77 new_ltEs18(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs4(Nothing, Just(x0), x1) 24.86/10.77 new_primEqNat0(Zero, Succ(x0)) 24.86/10.77 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.86/10.77 new_compare28(x0, x1, True, x2, x3, x4) 24.86/10.77 new_esEs4(Nothing, Nothing, x0) 24.86/10.77 new_ltEs16(True, False) 24.86/10.77 new_esEs24(x0, x1, ty_Char) 24.86/10.77 new_ltEs16(False, True) 24.86/10.77 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.77 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.86/10.77 new_pePe(True, x0) 24.86/10.77 new_ltEs17(LT, LT) 24.86/10.77 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.86/10.77 new_ltEs18(x0, x1, ty_Integer) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.77 new_lt20(x0, x1, ty_Double) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.77 new_lt20(x0, x1, ty_@0) 24.86/10.77 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare30(x0, x1, ty_@0) 24.86/10.77 new_compare11(x0, x1, False, x2, x3) 24.86/10.77 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.86/10.77 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.86/10.77 new_compare26(Nothing, Nothing, False, x0) 24.86/10.77 new_compare30(x0, x1, ty_Double) 24.86/10.77 new_ltEs18(x0, x1, ty_Int) 24.86/10.77 new_esEs23(x0, x1, ty_Integer) 24.86/10.77 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.86/10.77 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.86/10.77 new_compare30(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.77 new_esEs12(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.86/10.77 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.86/10.77 new_asAs(False, x0) 24.86/10.77 new_ltEs18(x0, x1, ty_Char) 24.86/10.77 new_lt18(x0, x1, x2, x3) 24.86/10.77 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_ltEs17(GT, GT) 24.86/10.77 new_sr0(Integer(x0), Integer(x1)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.77 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_ltEs20(x0, x1, ty_Int) 24.86/10.77 new_ltEs18(x0, x1, ty_Bool) 24.86/10.77 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.77 new_ltEs20(x0, x1, app(ty_[], x2)) 24.86/10.77 new_primCmpNat0(Zero, Succ(x0)) 24.86/10.77 new_esEs10(@0, @0) 24.86/10.77 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_primPlusNat0(Zero, x0) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.77 new_esEs25(x0, x1, ty_Double) 24.86/10.77 new_esEs25(x0, x1, ty_@0) 24.86/10.77 new_lt12(x0, x1, ty_Double) 24.86/10.77 new_lt13(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs27(x0, x1, ty_Int) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.77 new_esEs29(x0, x1, ty_@0) 24.86/10.77 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.77 new_ltEs20(x0, x1, ty_Char) 24.86/10.77 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare18(x0, x1) 24.86/10.77 new_ltEs17(LT, EQ) 24.86/10.77 new_ltEs17(EQ, LT) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.77 new_esEs21(x0, x1, ty_Double) 24.86/10.77 new_primCompAux1(x0, x1, x2, x3) 24.86/10.77 new_primMulNat0(Succ(x0), Zero) 24.86/10.77 new_primPlusNat1(Succ(x0), Succ(x1)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.77 new_esEs13([], :(x0, x1), x2) 24.86/10.77 new_primPlusNat1(Zero, Succ(x0)) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.77 new_compare0(:(x0, x1), :(x2, x3), x4) 24.86/10.77 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_compare29(x0, x1, True) 24.86/10.77 new_ltEs20(x0, x1, ty_Double) 24.86/10.77 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs9(EQ, EQ) 24.86/10.77 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs26(x0, x1, ty_Integer) 24.86/10.77 new_compare30(x0, x1, ty_Char) 24.86/10.77 new_compare27(x0, x1, True) 24.86/10.77 new_compare0(:(x0, x1), [], x2) 24.86/10.77 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.77 new_esEs21(x0, x1, ty_Float) 24.86/10.77 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.86/10.77 new_lt13(x0, x1, ty_Float) 24.86/10.77 new_primEqNat0(Succ(x0), Succ(x1)) 24.86/10.77 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.86/10.77 new_esEs4(Just(x0), Nothing, x1) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Float) 24.86/10.77 new_primMulNat0(Zero, Zero) 24.86/10.77 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_compare6(Integer(x0), Integer(x1)) 24.86/10.77 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_primCompAux0(x0, EQ) 24.86/10.77 new_esEs17(Integer(x0), Integer(x1)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.77 new_ltEs20(x0, x1, ty_Ordering) 24.86/10.77 new_compare14(x0, x1) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.77 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.86/10.77 new_esEs22(x0, x1, ty_Float) 24.86/10.77 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.86/10.77 new_esEs20(x0, x1, ty_Float) 24.86/10.77 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_lt12(x0, x1, ty_Float) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.77 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_ltEs12(x0, x1, x2) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.77 new_primMulNat0(Succ(x0), Succ(x1)) 24.86/10.77 new_ltEs8(x0, x1, x2) 24.86/10.77 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.77 new_esEs20(x0, x1, ty_Integer) 24.86/10.77 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_lt12(x0, x1, ty_Integer) 24.86/10.77 new_compare12(x0, x1, False, x2, x3) 24.86/10.77 new_not(True) 24.86/10.77 new_esEs26(x0, x1, ty_@0) 24.86/10.77 new_compare30(x0, x1, ty_Bool) 24.86/10.77 new_lt19(x0, x1) 24.86/10.77 new_lt20(x0, x1, ty_Float) 24.86/10.77 new_primEqNat0(Succ(x0), Zero) 24.86/10.77 new_primMulNat0(Zero, Succ(x0)) 24.86/10.77 new_ltEs6(x0, x1) 24.86/10.77 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.77 new_compare30(x0, x1, ty_Ordering) 24.86/10.77 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs12(x0, x1, ty_Double) 24.86/10.77 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.77 new_compare7(x0, x1, x2) 24.86/10.77 new_compare26(x0, x1, True, x2) 24.86/10.77 new_compare13(x0, x1, False, x2) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.77 new_esEs18(False, False) 24.86/10.77 new_asAs(True, x0) 24.86/10.77 new_ltEs14(x0, x1) 24.86/10.77 new_esEs9(LT, EQ) 24.86/10.77 new_esEs9(EQ, LT) 24.86/10.77 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs9(GT, GT) 24.86/10.77 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.77 new_esEs20(x0, x1, ty_Bool) 24.86/10.77 new_sr(x0, x1) 24.86/10.77 new_esEs23(x0, x1, ty_Float) 24.86/10.77 new_esEs28(x0, x1, ty_Int) 24.86/10.77 new_esEs26(x0, x1, ty_Bool) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.77 new_lt15(x0, x1, x2) 24.86/10.77 new_primMulInt(Pos(x0), Pos(x1)) 24.86/10.77 new_ltEs19(x0, x1, ty_Float) 24.86/10.77 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs9(LT, GT) 24.86/10.77 new_esEs9(GT, LT) 24.86/10.77 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.86/10.77 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_compare30(x0, x1, ty_Integer) 24.86/10.77 new_esEs29(x0, x1, ty_Float) 24.86/10.77 new_lt5(x0, x1) 24.86/10.77 new_esEs11(x0, x1, ty_Ordering) 24.86/10.77 new_esEs24(x0, x1, ty_Ordering) 24.86/10.77 new_esEs21(x0, x1, ty_Bool) 24.86/10.77 new_esEs11(x0, x1, ty_Float) 24.86/10.77 new_esEs12(x0, x1, ty_Char) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.86/10.77 new_lt6(x0, x1) 24.86/10.77 new_compare25(x0, x1, True, x2, x3) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.86/10.77 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.77 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.77 new_ltEs17(LT, GT) 24.86/10.77 new_ltEs17(GT, LT) 24.86/10.77 new_compare9(x0, x1) 24.86/10.77 new_ltEs18(x0, x1, ty_Double) 24.86/10.77 new_esEs12(x0, x1, ty_Int) 24.86/10.77 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_@0) 24.86/10.77 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.86/10.77 new_ltEs20(x0, x1, ty_@0) 24.86/10.77 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_lt11(x0, x1) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.86/10.77 new_primMulInt(Neg(x0), Neg(x1)) 24.86/10.77 new_esEs22(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs20(x0, x1, ty_@0) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.77 new_ltEs7(Just(x0), Nothing, x1) 24.86/10.77 new_esEs25(x0, x1, ty_Float) 24.86/10.77 new_primMulInt(Pos(x0), Neg(x1)) 24.86/10.77 new_primMulInt(Neg(x0), Pos(x1)) 24.86/10.77 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.77 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.86/10.77 new_primCmpNat0(Succ(x0), Succ(x1)) 24.86/10.77 new_esEs11(x0, x1, ty_Int) 24.86/10.77 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.86/10.77 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.86/10.77 new_compare0([], [], x0) 24.86/10.77 new_esEs30(x0, x1, ty_Double) 24.86/10.77 new_esEs21(x0, x1, ty_Integer) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.86/10.77 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.77 new_esEs12(x0, x1, ty_Float) 24.86/10.77 new_compare27(x0, x1, False) 24.86/10.77 new_lt20(x0, x1, ty_Integer) 24.86/10.77 new_esEs24(x0, x1, ty_Double) 24.86/10.77 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs26(x0, x1, ty_Ordering) 24.86/10.77 new_lt17(x0, x1) 24.86/10.77 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.77 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.86/10.77 new_ltEs19(x0, x1, ty_Bool) 24.86/10.77 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.86/10.77 new_esEs23(x0, x1, ty_Double) 24.86/10.77 new_compare30(x0, x1, ty_Float) 24.86/10.77 new_primEqNat0(Zero, Zero) 24.86/10.77 new_esEs25(x0, x1, ty_Int) 24.86/10.77 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.77 new_compare111(x0, x1, False) 24.86/10.77 new_ltEs10(x0, x1) 24.86/10.77 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.86/10.77 new_not(False) 24.86/10.77 new_lt12(x0, x1, ty_Int) 24.86/10.77 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_compare13(x0, x1, True, x2) 24.86/10.77 new_esEs13(:(x0, x1), [], x2) 24.86/10.77 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.77 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.86/10.77 new_ltEs16(True, True) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.77 new_esEs11(x0, x1, ty_Char) 24.86/10.77 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.77 new_lt7(x0, x1, x2, x3) 24.86/10.77 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.77 new_ltEs17(EQ, GT) 24.86/10.77 new_ltEs17(GT, EQ) 24.86/10.77 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.77 new_esEs28(x0, x1, ty_Integer) 24.86/10.77 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs29(x0, x1, ty_Char) 24.86/10.77 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs25(x0, x1, ty_Bool) 24.86/10.77 new_esEs20(x0, x1, ty_Ordering) 24.86/10.77 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.77 new_compare11(x0, x1, True, x2, x3) 24.86/10.77 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_compare12(x0, x1, True, x2, x3) 24.86/10.77 new_compare30(x0, x1, ty_Int) 24.86/10.77 new_esEs11(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs29(x0, x1, ty_Int) 24.86/10.77 new_ltEs15(x0, x1) 24.86/10.77 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs30(x0, x1, app(ty_[], x2)) 24.86/10.77 new_lt12(x0, x1, ty_Bool) 24.86/10.77 new_ltEs19(x0, x1, app(ty_[], x2)) 24.86/10.77 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.86/10.77 new_esEs25(x0, x1, ty_Char) 24.86/10.77 new_esEs21(x0, x1, ty_Int) 24.86/10.77 new_ltEs19(x0, x1, ty_Ordering) 24.86/10.77 new_lt4(x0, x1, x2) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.77 new_esEs13([], [], x0) 24.86/10.77 new_ltEs19(x0, x1, ty_Integer) 24.86/10.77 new_pePe(False, x0) 24.86/10.77 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.77 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.77 new_lt12(x0, x1, ty_Char) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.77 new_compare32(@0, @0) 24.86/10.77 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_primCmpNat0(Zero, Zero) 24.86/10.77 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs21(x0, x1, ty_Char) 24.86/10.77 new_esEs11(x0, x1, ty_Bool) 24.86/10.77 new_lt20(x0, x1, ty_Bool) 24.86/10.77 24.86/10.77 We have to consider all minimal (P,Q,R)-chains. 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (35) TransformationProof (EQUIVALENT) 24.86/10.77 By rewriting [LPAR04] the rule new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(GT, GT), h, ba) at position [5] we obtained the following new rules [LPAR04]: 24.86/10.77 24.86/10.77 (new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba),new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba)) 24.86/10.77 24.86/10.77 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (36) 24.86/10.77 Obligation: 24.86/10.77 Q DP problem: 24.86/10.77 The TRS P consists of the following rules: 24.86/10.77 24.86/10.77 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw16, Just(vyw18), bb, bc) 24.86/10.77 new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Just(vyw300), new_esEs29(vyw40, vyw300, ba), ba), LT), h, ba) 24.86/10.77 new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare26(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) 24.86/10.77 new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw17, Just(vyw18), bb, bc) 24.86/10.77 new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw34, Just(vyw40), h, ba) 24.86/10.77 new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) 24.86/10.77 new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) 24.86/10.77 24.86/10.77 The TRS R consists of the following rules: 24.86/10.77 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.77 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.77 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.77 new_ltEs17(LT, EQ) -> True 24.86/10.77 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs19(vyw400, vyw3000, dde) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.77 new_pePe(True, vyw110) -> True 24.86/10.77 new_compare12(vyw28000, vyw29000, False, bg, bh) -> GT 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.77 new_esEs11(vyw400, vyw3000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw400, vyw3000, ee, ef) 24.86/10.77 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.77 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, cfb) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.77 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.77 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.77 new_esEs18(True, True) -> True 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_esEs25(vyw28000, vyw29000, app(ty_[], daa)) -> new_esEs13(vyw28000, vyw29000, daa) 24.86/10.77 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.77 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.77 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.77 new_esEs29(vyw40, vyw300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vyw40, vyw300, bbg, bbh, bca) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], ceb)) -> new_esEs13(vyw400, vyw3000, ceb) 24.86/10.77 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.77 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.77 new_esEs11(vyw400, vyw3000, app(ty_Ratio, eh)) -> new_esEs19(vyw400, vyw3000, eh) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, cfd), cfb) -> new_ltEs7(vyw28000, vyw29000, cfd) 24.86/10.77 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.77 new_esEs9(LT, EQ) -> False 24.86/10.77 new_esEs9(EQ, LT) -> False 24.86/10.77 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.77 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bga) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bga), bga) 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.77 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.77 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.77 new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw400, vyw3000, ddb, ddc) 24.86/10.77 new_compare8(vyw28000, vyw29000, bd, be) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Maybe, cgg)) -> new_ltEs7(vyw28000, vyw29000, cgg) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.77 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.77 new_primCompAux0(vyw116, GT) -> GT 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.77 new_ltEs5(Left(vyw28000), Right(vyw29000), cgd, cfb) -> True 24.86/10.77 new_esEs21(vyw401, vyw3001, app(ty_[], bdg)) -> new_esEs13(vyw401, vyw3001, bdg) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.77 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, cdd), cde)) -> new_ltEs4(vyw28002, vyw29002, cdd, cde) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, hd) -> new_esEs9(vyw400, vyw3000) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.77 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.77 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw400, vyw3000, bcb, bcc, bcd) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.77 new_esEs22(vyw402, vyw3002, app(ty_Maybe, bfd)) -> new_esEs4(vyw402, vyw3002, bfd) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, hd) -> new_esEs15(vyw400, vyw3000) 24.86/10.77 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.77 new_primCompAux0(vyw116, LT) -> LT 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.77 new_ltEs17(LT, GT) -> True 24.86/10.77 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.77 new_not(True) -> False 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ccf)) -> new_ltEs7(vyw28002, vyw29002, ccf) 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.77 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_esEs12(vyw401, vyw3001, app(ty_Maybe, gb)) -> new_esEs4(vyw401, vyw3001, gb) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.77 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bgd)) -> new_compare7(vyw28000, vyw29000, bgd) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.77 new_esEs22(vyw402, vyw3002, app(ty_Ratio, bfe)) -> new_esEs19(vyw402, vyw3002, bfe) 24.86/10.77 new_ltEs17(EQ, GT) -> True 24.86/10.77 new_esEs11(vyw400, vyw3000, app(ty_Maybe, eg)) -> new_esEs4(vyw400, vyw3000, eg) 24.86/10.77 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dea) -> new_asAs(new_esEs27(vyw400, vyw3000, dea), new_esEs28(vyw401, vyw3001, dea)) 24.86/10.77 new_esEs29(vyw40, vyw300, app(ty_[], dce)) -> new_esEs13(vyw40, vyw300, dce) 24.86/10.77 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw28000, vyw29000, cg, da, db) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs13(vyw28001, vyw29001, dbf, dbg, dbh) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.77 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.77 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.77 new_lt20(vyw28000, vyw29000, app(ty_[], daa)) -> new_lt4(vyw28000, vyw29000, daa) 24.86/10.77 new_esEs13([], [], dce) -> True 24.86/10.77 new_ltEs7(Nothing, Just(vyw29000), cc) -> True 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, hd) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_compare26(Nothing, Nothing, False, ddh) -> LT 24.86/10.77 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.77 new_ltEs17(LT, LT) -> True 24.86/10.77 new_esEs22(vyw402, vyw3002, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw402, vyw3002, bfb, bfc) 24.86/10.77 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vyw28000, vyw29000, dad, dae, daf) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, cfh), cga), cfb) -> new_ltEs5(vyw28000, vyw29000, cfh, cga) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.77 new_compare13(vyw95, vyw96, False, ca) -> GT 24.86/10.77 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_esEs12(vyw401, vyw3001, app(ty_Ratio, gc)) -> new_esEs19(vyw401, vyw3001, gc) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_Ratio, cgf)) -> new_ltEs12(vyw28000, vyw29000, cgf) 24.86/10.77 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(vyw2800, vyw2900, caf, cag, cah) 24.86/10.77 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, chg), chh)) -> new_ltEs4(vyw2800, vyw2900, chg, chh) 24.86/10.77 new_lt18(vyw28000, vyw29000, bg, bh) -> new_esEs9(new_compare16(vyw28000, vyw29000, bg, bh), LT) 24.86/10.77 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.77 new_esEs30(vyw18, vyw13, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs5(vyw18, vyw13, bhd, bhe, bhf) 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.77 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.77 new_compare28(vyw28000, vyw29000, False, gf, gg, gh) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.77 new_esEs11(vyw400, vyw3000, app(ty_[], ed)) -> new_esEs13(vyw400, vyw3000, ed) 24.86/10.77 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ha), hb), hc), hd) -> new_esEs5(vyw400, vyw3000, ha, hb, hc) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, cfc), cfb) -> new_ltEs12(vyw28000, vyw29000, cfc) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, cc)) -> new_ltEs7(vyw2800, vyw2900, cc) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, de), df)) -> new_ltEs4(vyw28000, vyw29000, de, df) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, dcc), dcd)) -> new_ltEs4(vyw28001, vyw29001, dcc, dcd) 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(ty_[], cbb)) -> new_esEs13(vyw28001, vyw29001, cbb) 24.86/10.77 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(vyw401, vyw3001, bdd, bde, bdf) 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.77 new_compare110(vyw28000, vyw29000, False, gf, gg, gh) -> GT 24.86/10.77 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 24.86/10.77 new_pePe(False, vyw110) -> vyw110 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.77 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.77 new_compare25(vyw28000, vyw29000, True, bg, bh) -> EQ 24.86/10.77 new_ltEs12(vyw2800, vyw2900, bfh) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, bfh), GT)) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Integer) -> new_esEs17(vyw40, vyw300) 24.86/10.77 new_esEs22(vyw402, vyw3002, app(app(ty_Either, bff), bfg)) -> new_esEs6(vyw402, vyw3002, bff, bfg) 24.86/10.77 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vyw28000, vyw29000, gf, gg, gh) 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.77 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_esEs19(vyw28000, vyw29000, dab) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Char) -> new_esEs14(vyw40, vyw300) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, cfb) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_@2, che), chf)) -> new_ltEs4(vyw28000, vyw29000, che, chf) 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.77 new_compare11(vyw28000, vyw29000, False, bd, be) -> GT 24.86/10.77 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.77 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.77 new_esEs12(vyw401, vyw3001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw401, vyw3001, fh, ga) 24.86/10.77 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dg, dh) -> new_asAs(new_esEs11(vyw400, vyw3000, dg), new_esEs12(vyw401, vyw3001, dh)) 24.86/10.77 new_esEs26(vyw400, vyw3000, app(ty_[], dda)) -> new_esEs13(vyw400, vyw3000, dda) 24.86/10.77 new_compare24(vyw28000, vyw29000, False, bd, be) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, bd, be), bd, be) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw400, vyw3000, cdg, cdh, cea) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs13(vyw28002, vyw29002, ccg, cch, cda) 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.77 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.77 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs5(vyw400, vyw3000, ea, eb, ec) 24.86/10.77 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.77 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.77 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, cfb) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw28001, vyw29001, cbh, cca) 24.86/10.77 new_esEs13(:(vyw400, vyw401), [], dce) -> False 24.86/10.77 new_esEs13([], :(vyw3000, vyw3001), dce) -> False 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, bab), bac), hd) -> new_esEs6(vyw400, vyw3000, bab, bac) 24.86/10.77 new_primCompAux1(vyw28000, vyw29000, vyw111, bga) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, bga)) 24.86/10.77 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.77 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.77 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.77 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), caf, cag, cah) -> new_pePe(new_lt12(vyw28000, vyw29000, caf), new_asAs(new_esEs23(vyw28000, vyw29000, caf), new_pePe(new_lt13(vyw28001, vyw29001, cag), new_asAs(new_esEs24(vyw28001, vyw29001, cag), new_ltEs18(vyw28002, vyw29002, cah))))) 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vyw400, vyw3000, bae, baf, bag) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(vyw28000, vyw29000, gf, gg, gh) 24.86/10.77 new_compare26(vyw280, vyw290, True, ddh) -> EQ 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.77 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.77 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_[], bah)) -> new_esEs13(vyw400, vyw3000, bah) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, hf), hg), hd) -> new_esEs7(vyw400, vyw3000, hf, hg) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, cfe), cff), cfg), cfb) -> new_ltEs13(vyw28000, vyw29000, cfe, cff, cfg) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.77 new_lt12(vyw28000, vyw29000, app(ty_[], bf)) -> new_lt4(vyw28000, vyw29000, bf) 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.77 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.77 new_esEs20(vyw400, vyw3000, app(ty_Maybe, bch)) -> new_esEs4(vyw400, vyw3000, bch) 24.86/10.77 new_compare30(vyw28000, vyw29000, app(ty_Ratio, bgc)) -> new_compare19(vyw28000, vyw29000, bgc) 24.86/10.77 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.77 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.77 new_esEs9(LT, LT) -> True 24.86/10.77 new_lt13(vyw28001, vyw29001, app(ty_[], cbb)) -> new_lt4(vyw28001, vyw29001, cbb) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.77 new_esEs11(vyw400, vyw3000, app(app(ty_Either, fa), fb)) -> new_esEs6(vyw400, vyw3000, fa, fb) 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Bool) -> new_esEs18(vyw40, vyw300) 24.86/10.77 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bbg, bbh, bca) -> new_asAs(new_esEs20(vyw400, vyw3000, bbg), new_asAs(new_esEs21(vyw401, vyw3001, bbh), new_esEs22(vyw402, vyw3002, bca))) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs17(vyw18, vyw13) 24.86/10.77 new_compare25(vyw28000, vyw29000, False, bg, bh) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.77 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_esEs21(vyw401, vyw3001, app(ty_Maybe, beb)) -> new_esEs4(vyw401, vyw3001, beb) 24.86/10.77 new_esEs12(vyw401, vyw3001, app(app(ty_Either, gd), ge)) -> new_esEs6(vyw401, vyw3001, gd, ge) 24.86/10.77 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.77 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, cfb) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.77 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyw28000, vyw29000, dba, dbb) 24.86/10.77 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_lt10(vyw28000, vyw29000, dac) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, hd) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw28001, vyw29001, cbe, cbf, cbg) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs18(vyw18, vyw13) 24.86/10.77 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), chg, chh) -> new_pePe(new_lt20(vyw28000, vyw29000, chg), new_asAs(new_esEs25(vyw28000, vyw29000, chg), new_ltEs19(vyw28001, vyw29001, chh))) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_@2, bba), bbb)) -> new_esEs7(vyw400, vyw3000, bba, bbb) 24.86/10.77 new_compare16(vyw28000, vyw29000, bg, bh) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bg, bh), bg, bh) 24.86/10.77 new_ltEs17(EQ, EQ) -> True 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, cee)) -> new_esEs4(vyw400, vyw3000, cee) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_esEs6(vyw28000, vyw29000, bg, bh) 24.86/10.77 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.77 new_esEs21(vyw401, vyw3001, app(app(ty_Either, bed), bee)) -> new_esEs6(vyw401, vyw3001, bed, bee) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, dca), dcb)) -> new_ltEs5(vyw28001, vyw29001, dca, dcb) 24.86/10.77 new_ltEs17(GT, LT) -> False 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.77 new_ltEs17(EQ, LT) -> False 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs8(vyw18, vyw13) 24.86/10.77 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.77 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.77 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.77 new_esEs30(vyw18, vyw13, app(ty_Maybe, cab)) -> new_esEs4(vyw18, vyw13, cab) 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_esEs4(vyw28001, vyw29001, cbd) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(app(ty_Either, bbe), bbf)) -> new_esEs6(vyw400, vyw3000, bbe, bbf) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(ty_[], bf)) -> new_esEs13(vyw28000, vyw29000, bf) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, cgb), cgc), cfb) -> new_ltEs4(vyw28000, vyw29000, cgb, cgc) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.77 new_lt7(vyw28000, vyw29000, bd, be) -> new_esEs9(new_compare8(vyw28000, vyw29000, bd, be), LT) 24.86/10.77 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(vyw402, vyw3002, bef, beg, beh) 24.86/10.77 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.77 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw400, vyw3000, ceg, ceh) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, dc), dd)) -> new_ltEs5(vyw28000, vyw29000, dc, dd) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, hd) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_esEs19(vyw28001, vyw29001, cbc) 24.86/10.77 new_compare0([], :(vyw29000, vyw29001), bga) -> LT 24.86/10.77 new_asAs(True, vyw102) -> vyw102 24.86/10.77 new_ltEs5(Right(vyw28000), Left(vyw29000), cgd, cfb) -> False 24.86/10.77 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(vyw401, vyw3001, fc, fd, ff) 24.86/10.77 new_ltEs8(vyw2800, vyw2900, bga) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, bga), GT)) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.77 new_compare26(Just(vyw2800), Just(vyw2900), False, ddh) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, ddh), ddh) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, baa), hd) -> new_esEs19(vyw400, vyw3000, baa) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(app(ty_@2, dba), dbb)) -> new_lt7(vyw28000, vyw29000, dba, dbb) 24.86/10.77 new_esEs30(vyw18, vyw13, app(ty_Ratio, cac)) -> new_esEs19(vyw18, vyw13, cac) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.77 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Left(vyw400), Right(vyw3000), bad, hd) -> False 24.86/10.77 new_esEs6(Right(vyw400), Left(vyw3000), bad, hd) -> False 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_ltEs16(True, False) -> False 24.86/10.77 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, cgd), cfb)) -> new_ltEs5(vyw2800, vyw2900, cgd, cfb) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.77 new_esEs18(False, False) -> True 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.77 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.77 new_compare13(vyw95, vyw96, True, ca) -> LT 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.77 new_compare24(vyw28000, vyw29000, True, bd, be) -> EQ 24.86/10.77 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_esEs7(vyw28001, vyw29001, ccb, ccc) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.77 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.77 new_esEs30(vyw18, vyw13, app(app(ty_@2, bhh), caa)) -> new_esEs7(vyw18, vyw13, bhh, caa) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(ty_[], ccd)) -> new_ltEs8(vyw28002, vyw29002, ccd) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(ty_Either, chc), chd)) -> new_ltEs5(vyw28000, vyw29000, chc, chd) 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Ratio, bbd)) -> new_esEs19(vyw400, vyw3000, bbd) 24.86/10.77 new_compare0([], [], bga) -> EQ 24.86/10.77 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.77 new_ltEs7(Nothing, Nothing, cc) -> True 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.77 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.77 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.77 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.77 new_esEs12(vyw401, vyw3001, app(ty_[], fg)) -> new_esEs13(vyw401, vyw3001, fg) 24.86/10.77 new_lt12(vyw28000, vyw29000, app(app(ty_Either, bg), bh)) -> new_lt18(vyw28000, vyw29000, bg, bh) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) 24.86/10.77 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hd) -> new_esEs4(vyw400, vyw3000, hh) 24.86/10.77 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(ty_[], dbc)) -> new_ltEs8(vyw28001, vyw29001, dbc) 24.86/10.77 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.77 new_esEs26(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs6(vyw400, vyw3000, ddf, ddg) 24.86/10.77 new_ltEs7(Just(vyw28000), Nothing, cc) -> False 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_esEs7(vyw28000, vyw29000, bd, be) 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_compare28(vyw28000, vyw29000, True, gf, gg, gh) -> EQ 24.86/10.77 new_lt15(vyw28000, vyw29000, cba) -> new_esEs9(new_compare19(vyw28000, vyw29000, cba), LT) 24.86/10.77 new_esEs4(Nothing, Nothing, cdf) -> True 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.77 new_esEs4(Nothing, Just(vyw3000), cdf) -> False 24.86/10.77 new_esEs4(Just(vyw400), Nothing, cdf) -> False 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dab)) -> new_lt15(vyw28000, vyw29000, dab) 24.86/10.77 new_lt13(vyw28001, vyw29001, app(app(ty_Either, cbh), cca)) -> new_lt18(vyw28001, vyw29001, cbh, cca) 24.86/10.77 new_esEs29(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs19(vyw40, vyw300, dea) 24.86/10.77 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.77 new_compare32(@0, @0) -> EQ 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, app(ty_Maybe, bbc)) -> new_esEs4(vyw400, vyw3000, bbc) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_esEs6(vyw28000, vyw29000, dag, dah) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], cfa), cfb) -> new_ltEs8(vyw28000, vyw29000, cfa) 24.86/10.77 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.77 new_esEs9(EQ, EQ) -> True 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(ty_[], bga)) -> new_ltEs8(vyw2800, vyw2900, bga) 24.86/10.77 new_compare26(Just(vyw2800), Nothing, False, ddh) -> GT 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, dbe)) -> new_ltEs7(vyw28001, vyw29001, dbe) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, bfh)) -> new_ltEs12(vyw2800, vyw2900, bfh) 24.86/10.77 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.77 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.77 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cd)) -> new_ltEs8(vyw28000, vyw29000, cd) 24.86/10.77 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.77 new_esEs20(vyw400, vyw3000, app(app(ty_Either, bdb), bdc)) -> new_esEs6(vyw400, vyw3000, bdb, bdc) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.77 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, cdb), cdc)) -> new_ltEs5(vyw28002, vyw29002, cdb, cdc) 24.86/10.77 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.77 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.77 new_compare30(vyw28000, vyw29000, app(ty_[], bgb)) -> new_compare0(vyw28000, vyw29000, bgb) 24.86/10.77 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.77 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_esEs19(vyw28000, vyw29000, cba) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, ce)) -> new_ltEs12(vyw28000, vyw29000, ce) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, dbd)) -> new_ltEs12(vyw28001, vyw29001, dbd) 24.86/10.77 new_esEs29(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs4(vyw40, vyw300, cdf) 24.86/10.77 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.77 new_lt4(vyw28000, vyw29000, bf) -> new_esEs9(new_compare0(vyw28000, vyw29000, bf), LT) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.77 new_compare110(vyw28000, vyw29000, True, gf, gg, gh) -> LT 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cf)) -> new_ltEs7(vyw28000, vyw29000, cf) 24.86/10.77 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.77 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.77 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, cfb) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, dad), dae), daf)) -> new_lt16(vyw28000, vyw29000, dad, dae, daf) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.77 new_not(False) -> True 24.86/10.77 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, hd) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(ty_[], cge)) -> new_ltEs8(vyw28000, vyw29000, cge) 24.86/10.77 new_lt16(vyw28000, vyw29000, gf, gg, gh) -> new_esEs9(new_compare17(vyw28000, vyw29000, gf, gg, gh), LT) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.77 new_esEs9(GT, GT) -> True 24.86/10.77 new_compare0(:(vyw28000, vyw28001), [], bga) -> GT 24.86/10.77 new_esEs18(False, True) -> False 24.86/10.77 new_esEs18(True, False) -> False 24.86/10.77 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.77 new_esEs29(vyw40, vyw300, app(app(ty_Either, bad), hd)) -> new_esEs6(vyw40, vyw300, bad, hd) 24.86/10.77 new_esEs22(vyw402, vyw3002, app(ty_[], bfa)) -> new_esEs13(vyw402, vyw3002, bfa) 24.86/10.77 new_esEs10(@0, @0) -> True 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cce)) -> new_ltEs12(vyw28002, vyw29002, cce) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.77 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bgh), bha)) -> new_compare16(vyw28000, vyw29000, bgh, bha) 24.86/10.77 new_lt13(vyw28001, vyw29001, app(app(ty_@2, ccb), ccc)) -> new_lt7(vyw28001, vyw29001, ccb, ccc) 24.86/10.77 new_esEs29(vyw40, vyw300, app(app(ty_@2, dg), dh)) -> new_esEs7(vyw40, vyw300, dg, dh) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.77 new_esEs9(EQ, GT) -> False 24.86/10.77 new_esEs9(GT, EQ) -> False 24.86/10.77 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.77 new_ltEs16(False, False) -> True 24.86/10.77 new_compare11(vyw28000, vyw29000, True, bd, be) -> LT 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.77 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) 24.86/10.77 new_esEs30(vyw18, vyw13, app(app(ty_Either, cad), cae)) -> new_esEs6(vyw18, vyw13, cad, cae) 24.86/10.77 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.77 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.77 new_lt20(vyw28000, vyw29000, app(app(ty_Either, dag), dah)) -> new_lt18(vyw28000, vyw29000, dag, dah) 24.86/10.77 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.77 new_esEs30(vyw18, vyw13, app(ty_[], bhg)) -> new_esEs13(vyw18, vyw13, bhg) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.77 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.77 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.77 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.77 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare17(vyw28000, vyw29000, bge, bgf, bgg) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.77 new_ltEs17(GT, EQ) -> False 24.86/10.77 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, dac)) -> new_esEs4(vyw28000, vyw29000, dac) 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.77 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bhb), bhc)) -> new_compare8(vyw28000, vyw29000, bhb, bhc) 24.86/10.77 new_ltEs16(True, True) -> True 24.86/10.77 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cba)) -> new_lt15(vyw28000, vyw29000, cba) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs13(vyw28000, vyw29000, cgh, cha, chb) 24.86/10.77 new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs10(vyw18, vyw13) 24.86/10.77 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.77 new_esEs21(vyw401, vyw3001, app(ty_Ratio, bec)) -> new_esEs19(vyw401, vyw3001, bec) 24.86/10.77 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, hd) -> new_esEs17(vyw400, vyw3000) 24.86/10.77 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.77 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs5(vyw400, vyw3000, dcf, dcg, dch) 24.86/10.77 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bdh), bea)) -> new_esEs7(vyw401, vyw3001, bdh, bea) 24.86/10.77 new_compare26(Nothing, Just(vyw2900), False, ddh) -> LT 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.77 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbc)) -> new_lt15(vyw28001, vyw29001, cbc) 24.86/10.77 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, cec), ced)) -> new_esEs7(vyw400, vyw3000, cec, ced) 24.86/10.77 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.77 new_compare17(vyw28000, vyw29000, gf, gg, gh) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gf, gg, gh), gf, gg, gh) 24.86/10.77 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.77 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], he), hd) -> new_esEs13(vyw400, vyw3000, he) 24.86/10.77 new_ltEs17(GT, GT) -> True 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.77 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, cef)) -> new_esEs19(vyw400, vyw3000, cef) 24.86/10.77 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.77 new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs4(vyw400, vyw3000, ddd) 24.86/10.77 new_primEqNat0(Zero, Zero) -> True 24.86/10.77 new_lt13(vyw28001, vyw29001, app(ty_Maybe, cbd)) -> new_lt10(vyw28001, vyw29001, cbd) 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.77 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.77 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.77 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_esEs9(LT, GT) -> False 24.86/10.77 new_esEs9(GT, LT) -> False 24.86/10.77 new_esEs6(Right(vyw400), Right(vyw3000), bad, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.77 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.77 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, cfb) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.77 new_asAs(False, vyw102) -> False 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, cfb) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.77 new_ltEs5(Right(vyw28000), Right(vyw29000), cgd, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.77 new_esEs29(vyw40, vyw300, ty_Ordering) -> new_esEs9(vyw40, vyw300) 24.86/10.77 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.77 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.77 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, cfb) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.77 new_esEs20(vyw400, vyw3000, app(ty_Ratio, bda)) -> new_esEs19(vyw400, vyw3000, bda) 24.86/10.77 new_lt12(vyw28000, vyw29000, app(app(ty_@2, bd), be)) -> new_lt7(vyw28000, vyw29000, bd, be) 24.86/10.77 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.77 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.77 new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) 24.86/10.77 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.77 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, hd) -> new_esEs16(vyw400, vyw3000) 24.86/10.77 new_ltEs16(False, True) -> True 24.86/10.77 new_compare12(vyw28000, vyw29000, True, bg, bh) -> LT 24.86/10.77 new_esEs20(vyw400, vyw3000, app(ty_[], bce)) -> new_esEs13(vyw400, vyw3000, bce) 24.86/10.77 new_esEs20(vyw400, vyw3000, app(app(ty_@2, bcf), bcg)) -> new_esEs7(vyw400, vyw3000, bcf, bcg) 24.86/10.77 24.86/10.77 The set Q consists of the following terms: 24.86/10.77 24.86/10.77 new_ltEs20(x0, x1, ty_Float) 24.86/10.77 new_esEs22(x0, x1, ty_Int) 24.86/10.77 new_ltEs19(x0, x1, ty_Char) 24.86/10.77 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs27(x0, x1, ty_Integer) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.77 new_lt20(x0, x1, ty_Char) 24.86/10.77 new_compare24(x0, x1, True, x2, x3) 24.86/10.77 new_ltEs17(EQ, EQ) 24.86/10.77 new_lt13(x0, x1, ty_Int) 24.86/10.77 new_primPlusNat1(Succ(x0), Zero) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.77 new_esEs30(x0, x1, ty_Bool) 24.86/10.77 new_esEs24(x0, x1, ty_Bool) 24.86/10.77 new_primPlusNat1(Zero, Zero) 24.86/10.77 new_ltEs19(x0, x1, ty_Int) 24.86/10.77 new_lt13(x0, x1, ty_Ordering) 24.86/10.77 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.86/10.77 new_compare25(x0, x1, False, x2, x3) 24.86/10.77 new_esEs22(x0, x1, ty_Ordering) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.77 new_lt10(x0, x1, x2) 24.86/10.77 new_esEs30(x0, x1, ty_Integer) 24.86/10.77 new_esEs23(x0, x1, ty_@0) 24.86/10.77 new_esEs21(x0, x1, ty_Ordering) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.86/10.77 new_compare10(x0, x1, True) 24.86/10.77 new_lt12(x0, x1, ty_Ordering) 24.86/10.77 new_esEs18(True, True) 24.86/10.77 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.77 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.77 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.77 new_primCompAux0(x0, GT) 24.86/10.77 new_lt20(x0, x1, ty_Int) 24.86/10.77 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.77 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs24(x0, x1, ty_@0) 24.86/10.77 new_esEs11(x0, x1, ty_Integer) 24.86/10.77 new_esEs8(x0, x1) 24.86/10.77 new_lt20(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs23(x0, x1, ty_Bool) 24.86/10.77 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.77 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.77 new_lt16(x0, x1, x2, x3, x4) 24.86/10.77 new_compare8(x0, x1, x2, x3) 24.86/10.77 new_esEs30(x0, x1, ty_@0) 24.86/10.77 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.77 new_ltEs18(x0, x1, ty_@0) 24.86/10.77 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs11(x0, x1, ty_@0) 24.86/10.77 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.77 new_esEs12(x0, x1, ty_Integer) 24.86/10.77 new_esEs29(x0, x1, ty_Bool) 24.86/10.77 new_ltEs9(x0, x1) 24.86/10.77 new_esEs23(x0, x1, ty_Char) 24.86/10.77 new_ltEs7(Nothing, Nothing, x0) 24.86/10.77 new_ltEs19(x0, x1, ty_@0) 24.86/10.77 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs9(LT, LT) 24.86/10.77 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.77 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.77 new_ltEs16(False, False) 24.86/10.77 new_primCmpNat0(Succ(x0), Zero) 24.86/10.77 new_esEs23(x0, x1, ty_Int) 24.86/10.77 new_esEs12(x0, x1, ty_@0) 24.86/10.77 new_compare31(Char(x0), Char(x1)) 24.86/10.77 new_ltEs19(x0, x1, ty_Double) 24.86/10.77 new_lt20(x0, x1, ty_Ordering) 24.86/10.77 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.77 new_esEs29(x0, x1, app(ty_[], x2)) 24.86/10.77 new_ltEs11(x0, x1) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.77 new_esEs9(EQ, GT) 24.86/10.77 new_esEs9(GT, EQ) 24.86/10.77 new_primPlusNat0(Succ(x0), x1) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.77 new_esEs22(x0, x1, ty_@0) 24.86/10.77 new_esEs20(x0, x1, ty_Int) 24.86/10.77 new_esEs14(Char(x0), Char(x1)) 24.86/10.77 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_compare111(x0, x1, True) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.77 new_esEs26(x0, x1, ty_Double) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.77 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.86/10.77 new_esEs25(x0, x1, ty_Integer) 24.86/10.77 new_esEs20(x0, x1, app(ty_[], x2)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.77 new_esEs23(x0, x1, app(ty_[], x2)) 24.86/10.77 new_compare17(x0, x1, x2, x3, x4) 24.86/10.77 new_esEs22(x0, x1, ty_Bool) 24.86/10.77 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.77 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.77 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.77 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs20(x0, x1, ty_Char) 24.86/10.77 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.77 new_esEs24(x0, x1, ty_Integer) 24.86/10.77 new_compare110(x0, x1, False, x2, x3, x4) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.77 new_ltEs7(Nothing, Just(x0), x1) 24.86/10.77 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs25(x0, x1, ty_Ordering) 24.86/10.77 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.77 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.77 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.77 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs29(x0, x1, ty_Integer) 24.86/10.77 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs29(x0, x1, ty_Ordering) 24.86/10.77 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs22(x0, x1, ty_Char) 24.86/10.77 new_esEs22(x0, x1, ty_Double) 24.86/10.77 new_esEs20(x0, x1, ty_Double) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.77 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs12(x0, x1, ty_Bool) 24.86/10.77 new_lt13(x0, x1, ty_Double) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.77 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_lt13(x0, x1, ty_Char) 24.86/10.77 new_compare29(x0, x1, False) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.77 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_compare24(x0, x1, False, x2, x3) 24.86/10.77 new_esEs29(x0, x1, ty_Double) 24.86/10.77 new_esEs22(x0, x1, ty_Integer) 24.86/10.77 new_ltEs20(x0, x1, ty_Bool) 24.86/10.77 new_esEs30(x0, x1, ty_Ordering) 24.86/10.77 new_esEs26(x0, x1, ty_Int) 24.86/10.77 new_esEs24(x0, x1, ty_Float) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.77 new_compare16(x0, x1, x2, x3) 24.86/10.77 new_compare10(x0, x1, False) 24.86/10.77 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.77 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_lt13(x0, x1, ty_Bool) 24.86/10.77 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs11(x0, x1, ty_Double) 24.86/10.77 new_lt9(x0, x1) 24.86/10.77 new_esEs30(x0, x1, ty_Float) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.77 new_esEs26(x0, x1, ty_Char) 24.86/10.77 new_lt13(x0, x1, ty_@0) 24.86/10.77 new_compare26(Just(x0), Nothing, False, x1) 24.86/10.77 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.77 new_esEs21(x0, x1, ty_@0) 24.86/10.77 new_lt12(x0, x1, ty_@0) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.86/10.77 new_ltEs18(x0, x1, ty_Ordering) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.77 new_esEs23(x0, x1, ty_Ordering) 24.86/10.77 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.77 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.77 new_lt14(x0, x1) 24.86/10.77 new_esEs18(False, True) 24.86/10.77 new_esEs18(True, False) 24.86/10.77 new_esEs30(x0, x1, ty_Char) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.86/10.77 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_lt13(x0, x1, ty_Integer) 24.86/10.77 new_compare0([], :(x0, x1), x2) 24.86/10.77 new_ltEs20(x0, x1, ty_Integer) 24.86/10.77 new_ltEs18(x0, x1, ty_Float) 24.86/10.77 new_esEs26(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.77 new_esEs12(x0, x1, ty_Ordering) 24.86/10.77 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_primCompAux0(x0, LT) 24.86/10.77 new_esEs24(x0, x1, ty_Int) 24.86/10.77 new_esEs26(x0, x1, ty_Float) 24.86/10.77 new_lt8(x0, x1) 24.86/10.77 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.86/10.77 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.77 new_esEs30(x0, x1, ty_Int) 24.86/10.77 new_ltEs18(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs4(Nothing, Just(x0), x1) 24.86/10.77 new_primEqNat0(Zero, Succ(x0)) 24.86/10.77 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.86/10.77 new_compare28(x0, x1, True, x2, x3, x4) 24.86/10.77 new_esEs4(Nothing, Nothing, x0) 24.86/10.77 new_ltEs16(True, False) 24.86/10.77 new_esEs24(x0, x1, ty_Char) 24.86/10.77 new_ltEs16(False, True) 24.86/10.77 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.86/10.77 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.86/10.77 new_pePe(True, x0) 24.86/10.77 new_ltEs17(LT, LT) 24.86/10.77 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.86/10.77 new_ltEs18(x0, x1, ty_Integer) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.77 new_lt20(x0, x1, ty_Double) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.77 new_lt20(x0, x1, ty_@0) 24.86/10.77 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare30(x0, x1, ty_@0) 24.86/10.77 new_compare11(x0, x1, False, x2, x3) 24.86/10.77 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.86/10.77 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.86/10.77 new_compare26(Nothing, Nothing, False, x0) 24.86/10.77 new_compare30(x0, x1, ty_Double) 24.86/10.77 new_ltEs18(x0, x1, ty_Int) 24.86/10.77 new_esEs23(x0, x1, ty_Integer) 24.86/10.77 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.86/10.77 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.86/10.77 new_compare30(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.77 new_esEs12(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.86/10.77 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.86/10.77 new_asAs(False, x0) 24.86/10.77 new_ltEs18(x0, x1, ty_Char) 24.86/10.77 new_lt18(x0, x1, x2, x3) 24.86/10.77 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_ltEs17(GT, GT) 24.86/10.77 new_sr0(Integer(x0), Integer(x1)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.86/10.77 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_ltEs20(x0, x1, ty_Int) 24.86/10.77 new_ltEs18(x0, x1, ty_Bool) 24.86/10.77 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.77 new_ltEs20(x0, x1, app(ty_[], x2)) 24.86/10.77 new_primCmpNat0(Zero, Succ(x0)) 24.86/10.77 new_esEs10(@0, @0) 24.86/10.77 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_primPlusNat0(Zero, x0) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.86/10.77 new_esEs25(x0, x1, ty_Double) 24.86/10.77 new_esEs25(x0, x1, ty_@0) 24.86/10.77 new_lt12(x0, x1, ty_Double) 24.86/10.77 new_lt13(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs27(x0, x1, ty_Int) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.86/10.77 new_esEs29(x0, x1, ty_@0) 24.86/10.77 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.77 new_ltEs20(x0, x1, ty_Char) 24.86/10.77 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare18(x0, x1) 24.86/10.77 new_ltEs17(LT, EQ) 24.86/10.77 new_ltEs17(EQ, LT) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.86/10.77 new_esEs21(x0, x1, ty_Double) 24.86/10.77 new_primCompAux1(x0, x1, x2, x3) 24.86/10.77 new_primMulNat0(Succ(x0), Zero) 24.86/10.77 new_primPlusNat1(Succ(x0), Succ(x1)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.86/10.77 new_esEs13([], :(x0, x1), x2) 24.86/10.77 new_primPlusNat1(Zero, Succ(x0)) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.77 new_compare0(:(x0, x1), :(x2, x3), x4) 24.86/10.77 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_compare29(x0, x1, True) 24.86/10.77 new_ltEs20(x0, x1, ty_Double) 24.86/10.77 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs9(EQ, EQ) 24.86/10.77 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs26(x0, x1, ty_Integer) 24.86/10.77 new_compare30(x0, x1, ty_Char) 24.86/10.77 new_compare27(x0, x1, True) 24.86/10.77 new_compare0(:(x0, x1), [], x2) 24.86/10.77 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.77 new_esEs21(x0, x1, ty_Float) 24.86/10.77 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.86/10.77 new_lt13(x0, x1, ty_Float) 24.86/10.77 new_primEqNat0(Succ(x0), Succ(x1)) 24.86/10.77 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.86/10.77 new_esEs4(Just(x0), Nothing, x1) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Float) 24.86/10.77 new_primMulNat0(Zero, Zero) 24.86/10.77 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_compare6(Integer(x0), Integer(x1)) 24.86/10.77 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_primCompAux0(x0, EQ) 24.86/10.77 new_esEs17(Integer(x0), Integer(x1)) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.77 new_ltEs20(x0, x1, ty_Ordering) 24.86/10.77 new_compare14(x0, x1) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.86/10.77 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.77 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.86/10.77 new_esEs22(x0, x1, ty_Float) 24.86/10.77 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.86/10.77 new_esEs20(x0, x1, ty_Float) 24.86/10.77 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_lt12(x0, x1, ty_Float) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.77 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_ltEs12(x0, x1, x2) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.77 new_primMulNat0(Succ(x0), Succ(x1)) 24.86/10.77 new_ltEs8(x0, x1, x2) 24.86/10.77 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.77 new_esEs20(x0, x1, ty_Integer) 24.86/10.77 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_lt12(x0, x1, ty_Integer) 24.86/10.77 new_compare12(x0, x1, False, x2, x3) 24.86/10.77 new_not(True) 24.86/10.77 new_esEs26(x0, x1, ty_@0) 24.86/10.77 new_compare30(x0, x1, ty_Bool) 24.86/10.77 new_lt19(x0, x1) 24.86/10.77 new_lt20(x0, x1, ty_Float) 24.86/10.77 new_primEqNat0(Succ(x0), Zero) 24.86/10.77 new_primMulNat0(Zero, Succ(x0)) 24.86/10.77 new_ltEs6(x0, x1) 24.86/10.77 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.77 new_compare30(x0, x1, ty_Ordering) 24.86/10.77 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs12(x0, x1, ty_Double) 24.86/10.77 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.77 new_compare7(x0, x1, x2) 24.86/10.77 new_compare26(x0, x1, True, x2) 24.86/10.77 new_compare13(x0, x1, False, x2) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.77 new_esEs18(False, False) 24.86/10.77 new_asAs(True, x0) 24.86/10.77 new_ltEs14(x0, x1) 24.86/10.77 new_esEs9(LT, EQ) 24.86/10.77 new_esEs9(EQ, LT) 24.86/10.77 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs9(GT, GT) 24.86/10.77 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.77 new_esEs20(x0, x1, ty_Bool) 24.86/10.77 new_sr(x0, x1) 24.86/10.77 new_esEs23(x0, x1, ty_Float) 24.86/10.77 new_esEs28(x0, x1, ty_Int) 24.86/10.77 new_esEs26(x0, x1, ty_Bool) 24.86/10.77 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.77 new_lt15(x0, x1, x2) 24.86/10.77 new_primMulInt(Pos(x0), Pos(x1)) 24.86/10.77 new_ltEs19(x0, x1, ty_Float) 24.86/10.77 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs9(LT, GT) 24.86/10.77 new_esEs9(GT, LT) 24.86/10.77 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.86/10.77 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_compare30(x0, x1, ty_Integer) 24.86/10.77 new_esEs29(x0, x1, ty_Float) 24.86/10.77 new_lt5(x0, x1) 24.86/10.77 new_esEs11(x0, x1, ty_Ordering) 24.86/10.77 new_esEs24(x0, x1, ty_Ordering) 24.86/10.77 new_esEs21(x0, x1, ty_Bool) 24.86/10.77 new_esEs11(x0, x1, ty_Float) 24.86/10.77 new_esEs12(x0, x1, ty_Char) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.86/10.77 new_lt6(x0, x1) 24.86/10.77 new_compare25(x0, x1, True, x2, x3) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.86/10.77 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.77 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.77 new_ltEs17(LT, GT) 24.86/10.77 new_ltEs17(GT, LT) 24.86/10.77 new_compare9(x0, x1) 24.86/10.77 new_ltEs18(x0, x1, ty_Double) 24.86/10.77 new_esEs12(x0, x1, ty_Int) 24.86/10.77 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_@0) 24.86/10.77 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.86/10.77 new_ltEs20(x0, x1, ty_@0) 24.86/10.77 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_lt11(x0, x1) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.86/10.77 new_primMulInt(Neg(x0), Neg(x1)) 24.86/10.77 new_esEs22(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs20(x0, x1, ty_@0) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.86/10.77 new_ltEs7(Just(x0), Nothing, x1) 24.86/10.77 new_esEs25(x0, x1, ty_Float) 24.86/10.77 new_primMulInt(Pos(x0), Neg(x1)) 24.86/10.77 new_primMulInt(Neg(x0), Pos(x1)) 24.86/10.77 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.77 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.86/10.77 new_primCmpNat0(Succ(x0), Succ(x1)) 24.86/10.77 new_esEs11(x0, x1, ty_Int) 24.86/10.77 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.86/10.77 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.86/10.77 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.86/10.77 new_compare0([], [], x0) 24.86/10.77 new_esEs30(x0, x1, ty_Double) 24.86/10.77 new_esEs21(x0, x1, ty_Integer) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.86/10.77 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.86/10.77 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.77 new_esEs12(x0, x1, ty_Float) 24.86/10.77 new_compare27(x0, x1, False) 24.86/10.77 new_lt20(x0, x1, ty_Integer) 24.86/10.77 new_esEs24(x0, x1, ty_Double) 24.86/10.77 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_esEs26(x0, x1, ty_Ordering) 24.86/10.77 new_lt17(x0, x1) 24.86/10.77 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.86/10.77 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.86/10.77 new_ltEs19(x0, x1, ty_Bool) 24.86/10.77 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.86/10.77 new_esEs23(x0, x1, ty_Double) 24.86/10.77 new_compare30(x0, x1, ty_Float) 24.86/10.77 new_primEqNat0(Zero, Zero) 24.86/10.77 new_esEs25(x0, x1, ty_Int) 24.86/10.77 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.77 new_compare111(x0, x1, False) 24.86/10.77 new_ltEs10(x0, x1) 24.86/10.77 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.86/10.77 new_not(False) 24.86/10.77 new_lt12(x0, x1, ty_Int) 24.86/10.77 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.77 new_compare13(x0, x1, True, x2) 24.86/10.77 new_esEs13(:(x0, x1), [], x2) 24.86/10.77 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.77 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.86/10.77 new_ltEs16(True, True) 24.86/10.77 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.77 new_esEs11(x0, x1, ty_Char) 24.86/10.77 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.77 new_lt7(x0, x1, x2, x3) 24.86/10.77 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.77 new_ltEs17(EQ, GT) 24.86/10.77 new_ltEs17(GT, EQ) 24.86/10.77 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.77 new_esEs28(x0, x1, ty_Integer) 24.86/10.77 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_esEs29(x0, x1, ty_Char) 24.86/10.77 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs25(x0, x1, ty_Bool) 24.86/10.77 new_esEs20(x0, x1, ty_Ordering) 24.86/10.77 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.77 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.77 new_compare11(x0, x1, True, x2, x3) 24.86/10.77 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.77 new_compare12(x0, x1, True, x2, x3) 24.86/10.77 new_compare30(x0, x1, ty_Int) 24.86/10.77 new_esEs11(x0, x1, app(ty_[], x2)) 24.86/10.77 new_esEs29(x0, x1, ty_Int) 24.86/10.77 new_ltEs15(x0, x1) 24.86/10.77 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.77 new_esEs30(x0, x1, app(ty_[], x2)) 24.86/10.77 new_lt12(x0, x1, ty_Bool) 24.86/10.77 new_ltEs19(x0, x1, app(ty_[], x2)) 24.86/10.77 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.86/10.77 new_esEs25(x0, x1, ty_Char) 24.86/10.77 new_esEs21(x0, x1, ty_Int) 24.86/10.77 new_ltEs19(x0, x1, ty_Ordering) 24.86/10.77 new_lt4(x0, x1, x2) 24.86/10.77 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.77 new_esEs13([], [], x0) 24.86/10.77 new_ltEs19(x0, x1, ty_Integer) 24.86/10.77 new_pePe(False, x0) 24.86/10.77 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.77 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.77 new_lt12(x0, x1, ty_Char) 24.86/10.77 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.77 new_compare32(@0, @0) 24.86/10.77 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_primCmpNat0(Zero, Zero) 24.86/10.77 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.86/10.77 new_esEs21(x0, x1, ty_Char) 24.86/10.77 new_esEs11(x0, x1, ty_Bool) 24.86/10.77 new_lt20(x0, x1, ty_Bool) 24.86/10.77 24.86/10.77 We have to consider all minimal (P,Q,R)-chains. 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (37) QDPSizeChangeProof (EQUIVALENT) 24.86/10.77 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. 24.86/10.77 24.86/10.77 From the DPs we obtained the following set of size-change graphs: 24.86/10.77 *new_lookupFM(Branch(Just(vyw300), vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs9(new_compare26(Just(vyw40), Just(vyw300), new_esEs29(vyw40, vyw300, ba), ba), LT), h, ba) 24.86/10.77 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9 24.86/10.77 24.86/10.77 24.86/10.77 *new_lookupFM(Branch(Nothing, vyw31, vyw32, vyw33, vyw34), Just(vyw40), h, ba) -> new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) 24.86/10.77 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 7, 4 >= 8 24.86/10.77 24.86/10.77 24.86/10.77 *new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw16, Just(vyw18), bb, bc) 24.86/10.77 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4 24.86/10.77 24.86/10.77 24.86/10.77 *new_lookupFM21(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare26(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) 24.86/10.77 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 24.86/10.77 24.86/10.77 24.86/10.77 *new_lookupFM20(vyw31, vyw32, vyw33, vyw34, vyw40, False, h, ba) -> new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) 24.86/10.77 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 24.86/10.77 24.86/10.77 24.86/10.77 *new_lookupFM12(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_lookupFM(vyw17, Just(vyw18), bb, bc) 24.86/10.77 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4 24.86/10.77 24.86/10.77 24.86/10.77 *new_lookupFM11(vyw31, vyw32, vyw33, vyw34, vyw40, True, h, ba) -> new_lookupFM(vyw34, Just(vyw40), h, ba) 24.86/10.77 The graph contains the following edges 4 >= 1, 7 >= 3, 8 >= 4 24.86/10.77 24.86/10.77 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (38) 24.86/10.77 YES 24.86/10.77 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (39) 24.86/10.77 Obligation: 24.86/10.77 Q DP problem: 24.86/10.77 The TRS P consists of the following rules: 24.86/10.77 24.86/10.77 new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) 24.86/10.77 24.86/10.77 R is empty. 24.86/10.77 Q is empty. 24.86/10.77 We have to consider all minimal (P,Q,R)-chains. 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (40) QDPSizeChangeProof (EQUIVALENT) 24.86/10.77 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. 24.86/10.77 24.86/10.77 From the DPs we obtained the following set of size-change graphs: 24.86/10.77 *new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) 24.86/10.77 The graph contains the following edges 1 > 1, 2 >= 2 24.86/10.77 24.86/10.77 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (41) 24.86/10.77 YES 24.86/10.77 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (42) 24.86/10.77 Obligation: 24.86/10.77 Q DP problem: 24.86/10.77 The TRS P consists of the following rules: 24.86/10.77 24.86/10.77 new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, bbb), bbc)) -> new_esEs1(vyw400, vyw3000, bbb, bbc) 24.86/10.77 new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(vyw400, vyw3000, bcg, bch) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bf), bg), bc, bd) -> new_esEs1(vyw400, vyw3000, bf, bg) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_[], cg), bd) -> new_esEs0(vyw401, vyw3001, cg) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vyw401, vyw3001, he, hf, hg) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_[], ea)) -> new_esEs0(vyw402, vyw3002, ea) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(vyw402, vyw3002, df, dg, dh) 24.86/10.77 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_[], bde)) -> new_esEs0(vyw400, vyw3000, bde) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_@2, eb), ec)) -> new_esEs1(vyw402, vyw3002, eb, ec) 24.86/10.77 new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], bba)) -> new_esEs0(vyw400, vyw3000, bba) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bh), bc, bd) -> new_esEs2(vyw400, vyw3000, bh) 24.86/10.77 new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw400, vyw3000, bbd) 24.86/10.77 new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_@2, bcd), bce), bcb) -> new_esEs1(vyw400, vyw3000, bcd, bce) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(vyw400, vyw3000, ca, cb) 24.86/10.77 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], fb)) -> new_esEs0(vyw400, vyw3000, fb) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(ty_Maybe, bac)) -> new_esEs2(vyw401, vyw3001, bac) 24.86/10.77 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw400, vyw3000, bea, beb) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(vyw401, vyw3001, cd, ce, cf) 24.86/10.77 new_esEs3(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(vyw400, vyw3000, bbg, bbh, bca) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(vyw401, vyw3001, dd, de) 24.86/10.77 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), ga) -> new_esEs0(vyw401, vyw3001, ga) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, ha), ge) -> new_esEs2(vyw400, vyw3000, ha) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_@2, da), db), bd) -> new_esEs1(vyw401, vyw3001, da, db) 24.86/10.77 new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(ty_[], hh)) -> new_esEs0(vyw401, vyw3001, hh) 24.86/10.77 new_esEs3(Left(vyw400), Left(vyw3000), app(ty_[], bcc), bcb) -> new_esEs0(vyw400, vyw3000, bcc) 24.86/10.77 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, ff)) -> new_esEs2(vyw400, vyw3000, ff) 24.86/10.77 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw400, vyw3000, bdf, bdg) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(vyw402, vyw3002, ee, ef) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], gf), ge) -> new_esEs0(vyw400, vyw3000, gf) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, hb), hc), ge) -> new_esEs3(vyw400, vyw3000, hb, hc) 24.86/10.77 new_esEs3(Left(vyw400), Left(vyw3000), app(ty_Maybe, bcf), bcb) -> new_esEs2(vyw400, vyw3000, bcf) 24.86/10.77 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(vyw400, vyw3000, bdb, bdc, bdd) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(vyw400, vyw3000, h, ba, bb) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(vyw400, vyw3000, gb, gc, gd) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, gg), gh), ge) -> new_esEs1(vyw400, vyw3000, gg, gh) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_Maybe, dc), bd) -> new_esEs2(vyw401, vyw3001, dc) 24.86/10.77 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(vyw400, vyw3000, eg, eh, fa) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_Maybe, ed)) -> new_esEs2(vyw402, vyw3002, ed) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(ty_@2, baa), bab)) -> new_esEs1(vyw401, vyw3001, baa, bab) 24.86/10.77 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(ty_Either, bad), bae)) -> new_esEs3(vyw401, vyw3001, bad, bae) 24.86/10.77 new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(vyw400, vyw3000, baf, bag, bah) 24.86/10.77 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], be), bc, bd) -> new_esEs0(vyw400, vyw3000, be) 24.86/10.77 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, fg), fh)) -> new_esEs3(vyw400, vyw3000, fg, fh) 24.86/10.77 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, fc), fd)) -> new_esEs1(vyw400, vyw3000, fc, fd) 24.86/10.77 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw400, vyw3000, bdh) 24.86/10.77 24.86/10.77 R is empty. 24.86/10.77 Q is empty. 24.86/10.77 We have to consider all minimal (P,Q,R)-chains. 24.86/10.77 ---------------------------------------- 24.86/10.77 24.86/10.77 (43) QDPSizeChangeProof (EQUIVALENT) 24.86/10.77 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. 24.86/10.77 24.86/10.77 From the DPs we obtained the following set of size-change graphs: 24.86/10.77 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, ff)) -> new_esEs2(vyw400, vyw3000, ff) 24.86/10.77 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.77 24.86/10.77 24.86/10.77 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, fg), fh)) -> new_esEs3(vyw400, vyw3000, fg, fh) 24.86/10.77 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.77 24.86/10.77 24.86/10.77 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(vyw400, vyw3000, eg, eh, fa) 24.86/10.77 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.86/10.77 24.86/10.77 24.86/10.78 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw400, vyw3000, bbd) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(vyw400, vyw3000, baf, bag, bah) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, fc), fd)) -> new_esEs1(vyw400, vyw3000, fc, fd) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, bbb), bbc)) -> new_esEs1(vyw400, vyw3000, bbb, bbc) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], bba)) -> new_esEs0(vyw400, vyw3000, bba) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(ty_Maybe, bac)) -> new_esEs2(vyw401, vyw3001, bac) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, ha), ge) -> new_esEs2(vyw400, vyw3000, ha) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, hb), hc), ge) -> new_esEs3(vyw400, vyw3000, hb, hc) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(ty_Either, bad), bae)) -> new_esEs3(vyw401, vyw3001, bad, bae) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vyw401, vyw3001, he, hf, hg) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(vyw400, vyw3000, gb, gc, gd) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, gg), gh), ge) -> new_esEs1(vyw400, vyw3000, gg, gh) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(ty_@2, baa), bab)) -> new_esEs1(vyw401, vyw3001, baa, bab) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(ty_[], hh)) -> new_esEs0(vyw401, vyw3001, hh) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], gf), ge) -> new_esEs0(vyw400, vyw3000, gf) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Left(vyw400), Left(vyw3000), app(ty_Maybe, bcf), bcb) -> new_esEs2(vyw400, vyw3000, bcf) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw400, vyw3000, bdh) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bh), bc, bd) -> new_esEs2(vyw400, vyw3000, bh) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_Maybe, dc), bd) -> new_esEs2(vyw401, vyw3001, dc) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_Maybe, ed)) -> new_esEs2(vyw402, vyw3002, ed) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(vyw400, vyw3000, bcg, bch) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw400, vyw3000, bea, beb) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(vyw400, vyw3000, bbg, bbh, bca) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(vyw400, vyw3000, bdb, bdc, bdd) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_@2, bcd), bce), bcb) -> new_esEs1(vyw400, vyw3000, bcd, bce) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw400, vyw3000, bdf, bdg) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_[], bde)) -> new_esEs0(vyw400, vyw3000, bde) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs3(Left(vyw400), Left(vyw3000), app(ty_[], bcc), bcb) -> new_esEs0(vyw400, vyw3000, bcc) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(vyw400, vyw3000, ca, cb) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(vyw401, vyw3001, dd, de) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(vyw402, vyw3002, ee, ef) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(vyw402, vyw3002, df, dg, dh) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(vyw401, vyw3001, cd, ce, cf) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(vyw400, vyw3000, h, ba, bb) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], fb)) -> new_esEs0(vyw400, vyw3000, fb) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), ga) -> new_esEs0(vyw401, vyw3001, ga) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bf), bg), bc, bd) -> new_esEs1(vyw400, vyw3000, bf, bg) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_@2, eb), ec)) -> new_esEs1(vyw402, vyw3002, eb, ec) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_@2, da), db), bd) -> new_esEs1(vyw401, vyw3001, da, db) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_[], cg), bd) -> new_esEs0(vyw401, vyw3001, cg) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_[], ea)) -> new_esEs0(vyw402, vyw3002, ea) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.86/10.78 24.86/10.78 24.86/10.78 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], be), bc, bd) -> new_esEs0(vyw400, vyw3000, be) 24.86/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.86/10.78 24.86/10.78 24.86/10.78 ---------------------------------------- 24.86/10.78 24.86/10.78 (44) 24.86/10.78 YES 24.86/10.78 24.86/10.78 ---------------------------------------- 24.86/10.78 24.86/10.78 (45) 24.86/10.78 Obligation: 24.86/10.78 Q DP problem: 24.86/10.78 The TRS P consists of the following rules: 24.86/10.78 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(app(ty_@2, fh), ga)), dg)) -> new_lt3(vyw28001, vyw29001, fh, ga) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(ty_[], gb))) -> new_ltEs(vyw28002, vyw29002, gb) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_Either, bce), bcf)), bbh)) -> new_lt2(vyw28000, vyw29000, bce, bcf) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(app(ty_@2, bea), beb))) -> new_ltEs3(vyw28001, vyw29001, bea, beb) 24.86/10.78 new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(ty_Either, da), db)) -> new_ltEs2(vyw28000, vyw29000, da, db) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(ty_Maybe, gc))) -> new_ltEs0(vyw28002, vyw29002, gc) 24.86/10.78 new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(app(ty_@2, bbe), bbf)) -> new_ltEs3(vyw28000, vyw29000, bbe, bbf) 24.86/10.78 new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs1(vyw28000, vyw29000, ce, cf, cg) 24.86/10.78 new_ltEs2(Left(vyw28000), Left(vyw29000), app(ty_[], hc), hd) -> new_ltEs(vyw28000, vyw29000, hc) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(app(app(ty_@3, fb), fc), fd), dg) -> new_lt1(vyw28001, vyw29001, fb, fc, fd) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(app(app(ty_@3, gd), ge), gf))) -> new_ltEs1(vyw28002, vyw29002, gd, ge, gf) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, dh), ea), eb)), df), dg)) -> new_compare21(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.86/10.78 new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(ty_[], baf))) -> new_ltEs(vyw28000, vyw29000, baf) 24.86/10.78 new_compare22(vyw28000, vyw29000, False, ec, ed) -> new_ltEs2(vyw28000, vyw29000, ec, ed) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(app(ty_@2, bea), beb)) -> new_ltEs3(vyw28001, vyw29001, bea, beb) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(ty_[], eh)), dg)) -> new_lt(vyw28001, vyw29001, eh) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(ty_[], eh), dg) -> new_lt(vyw28001, vyw29001, eh) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_Maybe, bca)), bbh)) -> new_lt0(vyw28000, vyw29000, bca) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_@2, bcg), bch), bbh) -> new_lt3(vyw28000, vyw29000, bcg, bch) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(ty_[], bdb))) -> new_ltEs(vyw28001, vyw29001, bdb) 24.86/10.78 new_compare2(vyw28000, vyw29000, dh, ea, eb) -> new_compare21(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.86/10.78 new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_@2, bac), bad)), hd)) -> new_ltEs3(vyw28000, vyw29000, bac, bad) 24.86/10.78 new_lt1(vyw28000, vyw29000, dh, ea, eb) -> new_compare21(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_ltEs1(vyw28001, vyw29001, bdd, bde, bdf) 24.86/10.78 new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(ty_Maybe, bag)) -> new_ltEs0(vyw28000, vyw29000, bag) 24.86/10.78 new_compare23(vyw28000, vyw29000, False, ee, ef) -> new_ltEs3(vyw28000, vyw29000, ee, ef) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(app(ty_@2, ha), hb))) -> new_ltEs3(vyw28002, vyw29002, ha, hb) 24.86/10.78 new_lt2(vyw28000, vyw29000, ec, ed) -> new_compare22(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(app(app(ty_@3, bdd), bde), bdf))) -> new_ltEs1(vyw28001, vyw29001, bdd, bde, bdf) 24.86/10.78 new_ltEs(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_compare(vyw28001, vyw29001, h) 24.86/10.78 new_ltEs0(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cd)) -> new_ltEs0(vyw28000, vyw29000, cd) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_[], bbg), bbh) -> new_lt(vyw28000, vyw29000, bbg) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(ty_Maybe, bdc))) -> new_ltEs0(vyw28001, vyw29001, bdc) 24.86/10.78 new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_Either, baa), bab)), hd)) -> new_ltEs2(vyw28000, vyw29000, baa, bab) 24.86/10.78 new_ltEs2(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, hf), hg), hh), hd) -> new_ltEs1(vyw28000, vyw29000, hf, hg, hh) 24.86/10.78 new_compare4(vyw28000, vyw29000, ee, ef) -> new_compare23(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(app(ty_@3, bcb), bcc), bcd), bbh) -> new_lt1(vyw28000, vyw29000, bcb, bcc, bcd) 24.86/10.78 new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_@2, dc), dd))) -> new_ltEs3(vyw28000, vyw29000, dc, dd) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_[], de)), df), dg)) -> new_compare(vyw28000, vyw29000, de) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_Maybe, cb)), df), dg)) -> new_compare20(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_[], de), df, dg) -> new_compare(vyw28000, vyw29000, de) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(app(ty_Either, gg), gh)) -> new_ltEs2(vyw28002, vyw29002, gg, gh) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_Maybe, cb), df, dg) -> new_compare20(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.78 new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(app(ty_@3, ce), cf), cg))) -> new_ltEs1(vyw28000, vyw29000, ce, cf, cg) 24.86/10.78 new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(app(ty_@3, hf), hg), hh)), hd)) -> new_ltEs1(vyw28000, vyw29000, hf, hg, hh) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(app(ty_Either, bdg), bdh)) -> new_ltEs2(vyw28001, vyw29001, bdg, bdh) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(app(app(ty_@3, fb), fc), fd)), dg)) -> new_lt1(vyw28001, vyw29001, fb, fc, fd) 24.86/10.78 new_ltEs0(Just(vyw28000), Just(vyw29000), app(ty_[], cc)) -> new_ltEs(vyw28000, vyw29000, cc) 24.86/10.78 new_compare3(vyw28000, vyw29000, ec, ed) -> new_compare22(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(ty_[], bdb)) -> new_ltEs(vyw28001, vyw29001, bdb) 24.86/10.78 new_primCompAux(vyw28000, vyw29000, vyw111, app(ty_Maybe, bb)) -> new_compare1(vyw28000, vyw29000, bb) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_[], bbg)), bbh)) -> new_lt(vyw28000, vyw29000, bbg) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(app(ty_@2, fh), ga), dg) -> new_lt3(vyw28001, vyw29001, fh, ga) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(app(ty_@2, ha), hb)) -> new_ltEs3(vyw28002, vyw29002, ha, hb) 24.86/10.78 new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_[], cc))) -> new_ltEs(vyw28000, vyw29000, cc) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(app(ty_Either, bdg), bdh))) -> new_ltEs2(vyw28001, vyw29001, bdg, bdh) 24.86/10.78 new_compare20(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], h)) -> new_compare(vyw28001, vyw29001, h) 24.86/10.78 new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(app(ty_Either, bbc), bbd))) -> new_ltEs2(vyw28000, vyw29000, bbc, bbd) 24.86/10.78 new_compare21(vyw28000, vyw29000, False, dh, ea, eb) -> new_ltEs1(vyw28000, vyw29000, dh, ea, eb) 24.86/10.78 new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_Either, da), db))) -> new_ltEs2(vyw28000, vyw29000, da, db) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(ty_[], gb)) -> new_ltEs(vyw28002, vyw29002, gb) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(app(ty_@3, bcb), bcc), bcd)), bbh)) -> new_lt1(vyw28000, vyw29000, bcb, bcc, bcd) 24.86/10.78 new_lt0(vyw28000, vyw29000, cb) -> new_compare20(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_Maybe, bca), bbh) -> new_lt0(vyw28000, vyw29000, bca) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_Either, bce), bcf), bbh) -> new_lt2(vyw28000, vyw29000, bce, bcf) 24.86/10.78 new_compare1(vyw28000, vyw29000, cb) -> new_compare20(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_@2, ee), ef), df, dg) -> new_compare23(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.86/10.78 new_lt(vyw28000, vyw29000, de) -> new_compare(vyw28000, vyw29000, de) 24.86/10.78 new_primCompAux(vyw28000, vyw29000, vyw111, app(app(app(ty_@3, bc), bd), be)) -> new_compare2(vyw28000, vyw29000, bc, bd, be) 24.86/10.78 new_compare(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, h), h) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(app(ty_@3, dh), ea), eb), df, dg) -> new_compare21(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.86/10.78 new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dc), dd)) -> new_ltEs3(vyw28000, vyw29000, dc, dd) 24.86/10.78 new_compare20(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], h)) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, h), h) 24.86/10.78 new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_Maybe, cd))) -> new_ltEs0(vyw28000, vyw29000, cd) 24.86/10.78 new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(app(ty_Either, bbc), bbd)) -> new_ltEs2(vyw28000, vyw29000, bbc, bbd) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(ty_Maybe, fa)), dg)) -> new_lt0(vyw28001, vyw29001, fa) 24.86/10.78 new_primCompAux(vyw28000, vyw29000, vyw111, app(ty_[], ba)) -> new_compare(vyw28000, vyw29000, ba) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(app(ty_Either, ff), fg)), dg)) -> new_lt2(vyw28001, vyw29001, ff, fg) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(app(ty_Either, gg), gh))) -> new_ltEs2(vyw28002, vyw29002, gg, gh) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_Either, ec), ed), df, dg) -> new_compare22(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.86/10.78 new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(ty_Maybe, bag))) -> new_ltEs0(vyw28000, vyw29000, bag) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_Either, ec), ed)), df), dg)) -> new_compare22(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.86/10.78 new_ltEs2(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bac), bad), hd) -> new_ltEs3(vyw28000, vyw29000, bac, bad) 24.86/10.78 new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs1(vyw28000, vyw29000, bah, bba, bbb) 24.86/10.78 new_ltEs2(Left(vyw28000), Left(vyw29000), app(ty_Maybe, he), hd) -> new_ltEs0(vyw28000, vyw29000, he) 24.86/10.78 new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_[], hc)), hd)) -> new_ltEs(vyw28000, vyw29000, hc) 24.86/10.78 new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_@2, bcg), bch)), bbh)) -> new_lt3(vyw28000, vyw29000, bcg, bch) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs1(vyw28002, vyw29002, gd, ge, gf) 24.86/10.78 new_compare(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_compare(vyw28001, vyw29001, h) 24.86/10.78 new_primCompAux(vyw28000, vyw29000, vyw111, app(app(ty_@2, bh), ca)) -> new_compare4(vyw28000, vyw29000, bh, ca) 24.86/10.78 new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_Maybe, he)), hd)) -> new_ltEs0(vyw28000, vyw29000, he) 24.86/10.78 new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(ty_Maybe, bdc)) -> new_ltEs0(vyw28001, vyw29001, bdc) 24.86/10.78 new_ltEs2(Left(vyw28000), Left(vyw29000), app(app(ty_Either, baa), bab), hd) -> new_ltEs2(vyw28000, vyw29000, baa, bab) 24.86/10.78 new_primCompAux(vyw28000, vyw29000, vyw111, app(app(ty_Either, bf), bg)) -> new_compare3(vyw28000, vyw29000, bf, bg) 24.86/10.78 new_ltEs(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, h), h) 24.86/10.78 new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_@2, ee), ef)), df), dg)) -> new_compare23(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.86/10.78 new_lt3(vyw28000, vyw29000, ee, ef) -> new_compare23(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.86/10.78 new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(app(ty_@2, bbe), bbf))) -> new_ltEs3(vyw28000, vyw29000, bbe, bbf) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(ty_Maybe, fa), dg) -> new_lt0(vyw28001, vyw29001, fa) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(ty_Maybe, gc)) -> new_ltEs0(vyw28002, vyw29002, gc) 24.86/10.78 new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(app(ty_Either, ff), fg), dg) -> new_lt2(vyw28001, vyw29001, ff, fg) 24.86/10.78 new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(ty_[], baf)) -> new_ltEs(vyw28000, vyw29000, baf) 24.86/10.78 new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(app(app(ty_@3, bah), bba), bbb))) -> new_ltEs1(vyw28000, vyw29000, bah, bba, bbb) 24.86/10.78 24.86/10.78 The TRS R consists of the following rules: 24.86/10.78 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs11(vyw28001, vyw29001) 24.86/10.78 new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT 24.86/10.78 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.86/10.78 new_ltEs17(LT, EQ) -> True 24.86/10.78 new_esEs26(vyw400, vyw3000, app(ty_Ratio, dbg)) -> new_esEs19(vyw400, vyw3000, dbg) 24.86/10.78 new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare14(vyw28000, vyw29000) 24.86/10.78 new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt11(vyw28001, vyw29001) 24.86/10.78 new_pePe(True, vyw110) -> True 24.86/10.78 new_compare12(vyw28000, vyw29000, False, ec, ed) -> GT 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.78 new_esEs11(vyw400, vyw3000, app(app(ty_@2, bfd), bfe)) -> new_esEs7(vyw400, vyw3000, bfd, bfe) 24.86/10.78 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.78 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Integer, hd) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.78 new_esEs17(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 24.86/10.78 new_lt6(vyw28000, vyw29000) -> new_esEs9(new_compare14(vyw28000, vyw29000), LT) 24.86/10.78 new_esEs18(True, True) -> True 24.86/10.78 new_esEs11(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.78 new_esEs25(vyw28000, vyw29000, app(ty_[], bbg)) -> new_esEs13(vyw28000, vyw29000, bbg) 24.86/10.78 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.86/10.78 new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT 24.86/10.78 new_lt10(vyw28000, vyw29000, cb) -> new_esEs9(new_compare7(vyw28000, vyw29000, cb), LT) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_[], chd)) -> new_esEs13(vyw400, vyw3000, chd) 24.86/10.78 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.78 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.78 new_esEs11(vyw400, vyw3000, app(ty_Ratio, bfg)) -> new_esEs19(vyw400, vyw3000, bfg) 24.86/10.78 new_esEs23(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Maybe, he), hd) -> new_ltEs7(vyw28000, vyw29000, he) 24.86/10.78 new_esEs14(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 24.86/10.78 new_esEs9(LT, EQ) -> False 24.86/10.78 new_esEs9(EQ, LT) -> False 24.86/10.78 new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) 24.86/10.78 new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_primCompAux1(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, h), h) 24.86/10.78 new_esEs22(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) 24.86/10.78 new_compare7(vyw28000, vyw29000, cb) -> new_compare26(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.86/10.78 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.78 new_esEs26(vyw400, vyw3000, app(app(ty_@2, dbd), dbe)) -> new_esEs7(vyw400, vyw3000, dbd, dbe) 24.86/10.78 new_compare8(vyw28000, vyw29000, ee, ef) -> new_compare24(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs10(vyw28002, vyw29002) 24.86/10.78 new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.78 new_esEs20(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, app(ty_Maybe, bag)) -> new_ltEs7(vyw28000, vyw29000, bag) 24.86/10.78 new_esEs12(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.78 new_lt11(vyw28000, vyw29000) -> new_esEs9(new_compare32(vyw28000, vyw29000), LT) 24.86/10.78 new_primCompAux0(vyw116, GT) -> GT 24.86/10.78 new_esEs23(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.78 new_ltEs5(Left(vyw28000), Right(vyw29000), bae, hd) -> True 24.86/10.78 new_esEs21(vyw401, vyw3001, app(ty_[], ceb)) -> new_esEs13(vyw401, vyw3001, ceb) 24.86/10.78 new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.78 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 24.86/10.78 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.78 new_esEs25(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, ha), hb)) -> new_ltEs4(vyw28002, vyw29002, ha, hb) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), ty_Ordering, bhg) -> new_esEs9(vyw400, vyw3000) 24.86/10.78 new_esEs24(vyw28001, vyw29001, ty_@0) -> new_esEs10(vyw28001, vyw29001) 24.86/10.78 new_lt8(vyw28000, vyw29000) -> new_esEs9(new_compare9(vyw28000, vyw29000), LT) 24.86/10.78 new_esEs20(vyw400, vyw3000, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs5(vyw400, vyw3000, cce, ccf, ccg) 24.86/10.78 new_esEs23(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.78 new_esEs22(vyw402, vyw3002, app(ty_Maybe, cfg)) -> new_esEs4(vyw402, vyw3002, cfg) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), ty_Float, bhg) -> new_esEs15(vyw400, vyw3000) 24.86/10.78 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.78 new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare9(vyw28000, vyw29000) 24.86/10.78 new_primCompAux0(vyw116, LT) -> LT 24.86/10.78 new_esEs25(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.78 new_ltEs17(LT, GT) -> True 24.86/10.78 new_lt17(vyw28000, vyw29000) -> new_esEs9(new_compare15(vyw28000, vyw29000), LT) 24.86/10.78 new_not(True) -> False 24.86/10.78 new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, gc)) -> new_ltEs7(vyw28002, vyw29002, gc) 24.86/10.78 new_esEs11(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.78 new_primCmpNat0(Zero, Zero) -> EQ 24.86/10.78 new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.78 new_esEs12(vyw401, vyw3001, app(ty_Maybe, bgh)) -> new_esEs4(vyw401, vyw3001, bgh) 24.86/10.78 new_esEs23(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.78 new_esEs22(vyw402, vyw3002, ty_Bool) -> new_esEs18(vyw402, vyw3002) 24.86/10.78 new_compare30(vyw28000, vyw29000, app(ty_Maybe, bb)) -> new_compare7(vyw28000, vyw29000, bb) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.78 new_esEs22(vyw402, vyw3002, app(ty_Ratio, cfh)) -> new_esEs19(vyw402, vyw3002, cfh) 24.86/10.78 new_ltEs17(EQ, GT) -> True 24.86/10.78 new_esEs11(vyw400, vyw3000, app(ty_Maybe, bff)) -> new_esEs4(vyw400, vyw3000, bff) 24.86/10.78 new_esEs19(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dcc) -> new_asAs(new_esEs27(vyw400, vyw3000, dcc), new_esEs28(vyw401, vyw3001, dcc)) 24.86/10.78 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs13(vyw28000, vyw29000, ce, cf, cg) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_ltEs13(vyw28001, vyw29001, bdd, bde, bdf) 24.86/10.78 new_esEs12(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.78 new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.78 new_primEqNat0(Succ(vyw4000), Zero) -> False 24.86/10.78 new_primEqNat0(Zero, Succ(vyw30000)) -> False 24.86/10.78 new_lt20(vyw28000, vyw29000, app(ty_[], bbg)) -> new_lt4(vyw28000, vyw29000, bbg) 24.86/10.78 new_esEs13([], [], dag) -> True 24.86/10.78 new_ltEs7(Nothing, Just(vyw29000), bed) -> True 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), ty_Char, bhg) -> new_esEs14(vyw400, vyw3000) 24.86/10.78 new_compare26(Nothing, Nothing, False, dcb) -> LT 24.86/10.78 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare6(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs11(vyw2800, vyw2900) 24.86/10.78 new_ltEs17(LT, LT) -> True 24.86/10.78 new_esEs22(vyw402, vyw3002, app(app(ty_@2, cfe), cff)) -> new_esEs7(vyw402, vyw3002, cfe, cff) 24.86/10.78 new_esEs25(vyw28000, vyw29000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(vyw28000, vyw29000, bcb, bcc, bcd) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_Either, baa), bab), hd) -> new_ltEs5(vyw28000, vyw29000, baa, bab) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.78 new_compare13(vyw95, vyw96, False, bec) -> GT 24.86/10.78 new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.78 new_esEs12(vyw401, vyw3001, app(ty_Ratio, bha)) -> new_esEs19(vyw401, vyw3001, bha) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, app(ty_Ratio, dad)) -> new_ltEs12(vyw28000, vyw29000, dad) 24.86/10.78 new_compare6(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, eg), df), dg)) -> new_ltEs13(vyw2800, vyw2900, eg, df, dg) 24.86/10.78 new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT 24.86/10.78 new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, bda), bbh)) -> new_ltEs4(vyw2800, vyw2900, bda, bbh) 24.86/10.78 new_lt18(vyw28000, vyw29000, ec, ed) -> new_esEs9(new_compare16(vyw28000, vyw29000, ec, ed), LT) 24.86/10.78 new_compare9(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) 24.86/10.78 new_esEs24(vyw28001, vyw29001, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs5(vyw28001, vyw29001, fb, fc, fd) 24.86/10.78 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.78 new_primPlusNat1(Succ(vyw11200), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw11200, vyw3000000))) 24.86/10.78 new_compare28(vyw28000, vyw29000, False, dh, ea, eb) -> new_compare110(vyw28000, vyw29000, new_ltEs13(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.86/10.78 new_esEs11(vyw400, vyw3000, app(ty_[], bfc)) -> new_esEs13(vyw400, vyw3000, bfc) 24.86/10.78 new_primCmpNat0(Zero, Succ(vyw290000)) -> LT 24.86/10.78 new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bhd), bhe), bhf), bhg) -> new_esEs5(vyw400, vyw3000, bhd, bhe, bhf) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_Ratio, dac), hd) -> new_ltEs12(vyw28000, vyw29000, dac) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, bed)) -> new_ltEs7(vyw2800, vyw2900, bed) 24.86/10.78 new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dc), dd)) -> new_ltEs4(vyw28000, vyw29000, dc, dd) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, bea), beb)) -> new_ltEs4(vyw28001, vyw29001, bea, beb) 24.86/10.78 new_esEs24(vyw28001, vyw29001, app(ty_[], eh)) -> new_esEs13(vyw28001, vyw29001, eh) 24.86/10.78 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(vyw401, vyw3001, cdg, cdh, cea) 24.86/10.78 new_esEs22(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 24.86/10.78 new_compare110(vyw28000, vyw29000, False, dh, ea, eb) -> GT 24.86/10.78 new_primCmpNat0(Succ(vyw280000), Zero) -> GT 24.86/10.78 new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs6(vyw28001, vyw29001) 24.86/10.78 new_pePe(False, vyw110) -> vyw110 24.86/10.78 new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.78 new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dag) -> new_asAs(new_esEs26(vyw400, vyw3000, dag), new_esEs13(vyw401, vyw3001, dag)) 24.86/10.78 new_esEs11(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.78 new_esEs20(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.78 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.78 new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt11(vyw28000, vyw29000) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.78 new_compare25(vyw28000, vyw29000, True, ec, ed) -> EQ 24.86/10.78 new_ltEs12(vyw2800, vyw2900, cgc) -> new_not(new_esEs9(new_compare19(vyw2800, vyw2900, cgc), GT)) 24.86/10.78 new_esEs22(vyw402, vyw3002, app(app(ty_Either, cga), cgb)) -> new_esEs6(vyw402, vyw3002, cga, cgb) 24.86/10.78 new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, dh), ea), eb)) -> new_lt16(vyw28000, vyw29000, dh, ea, eb) 24.86/10.78 new_esEs22(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs11(vyw28002, vyw29002) 24.86/10.78 new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.78 new_esEs25(vyw28000, vyw29000, app(ty_Ratio, dae)) -> new_esEs19(vyw28000, vyw29000, dae) 24.86/10.78 new_esEs12(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Char, hd) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, app(app(ty_@2, bbe), bbf)) -> new_ltEs4(vyw28000, vyw29000, bbe, bbf) 24.86/10.78 new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt19(vyw28001, vyw29001) 24.86/10.78 new_compare11(vyw28000, vyw29000, False, ee, ef) -> GT 24.86/10.78 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.78 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 24.86/10.78 new_esEs23(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs4(vyw28000, vyw29000, cb) 24.86/10.78 new_esEs12(vyw401, vyw3001, app(app(ty_@2, bgf), bgg)) -> new_esEs7(vyw401, vyw3001, bgf, bgg) 24.86/10.78 new_esEs7(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bef, beg) -> new_asAs(new_esEs11(vyw400, vyw3000, bef), new_esEs12(vyw401, vyw3001, beg)) 24.86/10.78 new_esEs26(vyw400, vyw3000, app(ty_[], dbc)) -> new_esEs13(vyw400, vyw3000, dbc) 24.86/10.78 new_compare24(vyw28000, vyw29000, False, ee, ef) -> new_compare11(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000, ee, ef), ee, ef) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cha), chb), chc)) -> new_esEs5(vyw400, vyw3000, cha, chb, chc) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs13(vyw28002, vyw29002, gd, ge, gf) 24.86/10.78 new_esEs25(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.78 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.78 new_esEs11(vyw400, vyw3000, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs5(vyw400, vyw3000, beh, bfa, bfb) 24.86/10.78 new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT 24.86/10.78 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.78 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.78 new_compare14(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs9(vyw28000, vyw29000)) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Float, hd) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.78 new_esEs20(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.78 new_esEs24(vyw28001, vyw29001, app(app(ty_Either, ff), fg)) -> new_esEs6(vyw28001, vyw29001, ff, fg) 24.86/10.78 new_esEs13(:(vyw400, vyw401), [], dag) -> False 24.86/10.78 new_esEs13([], :(vyw3000, vyw3001), dag) -> False 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_Either, cae), caf), bhg) -> new_esEs6(vyw400, vyw3000, cae, caf) 24.86/10.78 new_primCompAux1(vyw28000, vyw29000, vyw111, h) -> new_primCompAux0(vyw111, new_compare30(vyw28000, vyw29000, h)) 24.86/10.78 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 24.86/10.78 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 24.86/10.78 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 24.86/10.78 new_ltEs13(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, dg) -> new_pePe(new_lt12(vyw28000, vyw29000, eg), new_asAs(new_esEs23(vyw28000, vyw29000, eg), new_pePe(new_lt13(vyw28001, vyw29001, df), new_asAs(new_esEs24(vyw28001, vyw29001, df), new_ltEs18(vyw28002, vyw29002, dg))))) 24.86/10.78 new_esEs11(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(vyw400, vyw3000, cah, cba, cbb) 24.86/10.78 new_esEs23(vyw28000, vyw29000, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs5(vyw28000, vyw29000, dh, ea, eb) 24.86/10.78 new_compare26(vyw280, vyw290, True, dcb) -> EQ 24.86/10.78 new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt5(vyw28001, vyw29001) 24.86/10.78 new_lt14(vyw28000, vyw29000) -> new_esEs9(new_compare31(vyw28000, vyw29000), LT) 24.86/10.78 new_ltEs9(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare9(vyw2800, vyw2900), GT)) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, app(ty_[], cbc)) -> new_esEs13(vyw400, vyw3000, cbc) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), app(app(ty_@2, caa), cab), bhg) -> new_esEs7(vyw400, vyw3000, caa, cab) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, hf), hg), hh), hd) -> new_ltEs13(vyw28000, vyw29000, hf, hg, hh) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.78 new_lt12(vyw28000, vyw29000, app(ty_[], de)) -> new_lt4(vyw28000, vyw29000, de) 24.86/10.78 new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.78 new_esEs23(vyw28000, vyw29000, ty_Ordering) -> new_esEs9(vyw28000, vyw29000) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.78 new_compare111(vyw28000, vyw29000, True) -> LT 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.78 new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt14(vyw28000, vyw29000) 24.86/10.78 new_esEs20(vyw400, vyw3000, app(ty_Maybe, cdc)) -> new_esEs4(vyw400, vyw3000, cdc) 24.86/10.78 new_compare30(vyw28000, vyw29000, app(ty_Ratio, cgd)) -> new_compare19(vyw28000, vyw29000, cgd) 24.86/10.78 new_primPlusNat1(Succ(vyw11200), Zero) -> Succ(vyw11200) 24.86/10.78 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 24.86/10.78 new_esEs9(LT, LT) -> True 24.86/10.78 new_lt13(vyw28001, vyw29001, app(ty_[], eh)) -> new_lt4(vyw28001, vyw29001, eh) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs14(vyw28001, vyw29001) 24.86/10.78 new_esEs11(vyw400, vyw3000, app(app(ty_Either, bfh), bga)) -> new_esEs6(vyw400, vyw3000, bfh, bga) 24.86/10.78 new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt8(vyw28001, vyw29001) 24.86/10.78 new_esEs5(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), ccb, ccc, ccd) -> new_asAs(new_esEs20(vyw400, vyw3000, ccb), new_asAs(new_esEs21(vyw401, vyw3001, ccc), new_esEs22(vyw402, vyw3002, ccd))) 24.86/10.78 new_compare25(vyw28000, vyw29000, False, ec, ed) -> new_compare12(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000, ec, ed), ec, ed) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.78 new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt6(vyw28001, vyw29001) 24.86/10.78 new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare6(vyw2800, vyw2900), GT)) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs14(vyw2800, vyw2900) 24.86/10.78 new_esEs25(vyw28000, vyw29000, ty_@0) -> new_esEs10(vyw28000, vyw29000) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs17(vyw28001, vyw29001) 24.86/10.78 new_esEs20(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.78 new_esEs21(vyw401, vyw3001, app(ty_Maybe, cee)) -> new_esEs4(vyw401, vyw3001, cee) 24.86/10.78 new_esEs12(vyw401, vyw3001, app(app(ty_Either, bhb), bhc)) -> new_esEs6(vyw401, vyw3001, bhb, bhc) 24.86/10.78 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.78 new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Int, hd) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.78 new_esEs25(vyw28000, vyw29000, app(app(ty_@2, bcg), bch)) -> new_esEs7(vyw28000, vyw29000, bcg, bch) 24.86/10.78 new_ltEs10(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare31(vyw2800, vyw2900), GT)) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs16(vyw2800, vyw2900) 24.86/10.78 new_lt20(vyw28000, vyw29000, app(ty_Maybe, bca)) -> new_lt10(vyw28000, vyw29000, bca) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), ty_@0, bhg) -> new_esEs10(vyw400, vyw3000) 24.86/10.78 new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, fb), fc), fd)) -> new_lt16(vyw28001, vyw29001, fb, fc, fd) 24.86/10.78 new_ltEs4(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, bbh) -> new_pePe(new_lt20(vyw28000, vyw29000, bda), new_asAs(new_esEs25(vyw28000, vyw29000, bda), new_ltEs19(vyw28001, vyw29001, bbh))) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, app(app(ty_@2, cbd), cbe)) -> new_esEs7(vyw400, vyw3000, cbd, cbe) 24.86/10.78 new_compare16(vyw28000, vyw29000, ec, ed) -> new_compare25(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.86/10.78 new_ltEs17(EQ, EQ) -> True 24.86/10.78 new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs17(vyw2800, vyw2900) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Maybe, chg)) -> new_esEs4(vyw400, vyw3000, chg) 24.86/10.78 new_esEs24(vyw28001, vyw29001, ty_Ordering) -> new_esEs9(vyw28001, vyw29001) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.78 new_esEs23(vyw28000, vyw29000, app(app(ty_Either, ec), ed)) -> new_esEs6(vyw28000, vyw29000, ec, ed) 24.86/10.78 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs16(vyw28001, vyw29001) 24.86/10.78 new_esEs20(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.78 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.78 new_esEs21(vyw401, vyw3001, app(app(ty_Either, ceg), ceh)) -> new_esEs6(vyw401, vyw3001, ceg, ceh) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, bdg), bdh)) -> new_ltEs5(vyw28001, vyw29001, bdg, bdh) 24.86/10.78 new_ltEs17(GT, LT) -> False 24.86/10.78 new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt17(vyw28001, vyw29001) 24.86/10.78 new_ltEs17(EQ, LT) -> False 24.86/10.78 new_esEs11(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.78 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.78 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 24.86/10.78 new_compare19(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare9(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) 24.86/10.78 new_esEs24(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_esEs4(vyw28001, vyw29001, fa) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, app(app(ty_Either, cbh), cca)) -> new_esEs6(vyw400, vyw3000, cbh, cca) 24.86/10.78 new_esEs23(vyw28000, vyw29000, app(ty_[], de)) -> new_esEs13(vyw28000, vyw29000, de) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bac), bad), hd) -> new_ltEs4(vyw28000, vyw29000, bac, bad) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs9(vyw28001, vyw29001) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs9(vyw28000, vyw29000) 24.86/10.78 new_esEs25(vyw28000, vyw29000, ty_Bool) -> new_esEs18(vyw28000, vyw29000) 24.86/10.78 new_lt7(vyw28000, vyw29000, ee, ef) -> new_esEs9(new_compare8(vyw28000, vyw29000, ee, ef), LT) 24.86/10.78 new_esEs22(vyw402, vyw3002, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs5(vyw402, vyw3002, cfa, cfb, cfc) 24.86/10.78 new_compare18(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs18(vyw28000, vyw29000)) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, ty_Integer) -> new_ltEs11(vyw28000, vyw29000) 24.86/10.78 new_sr0(Integer(vyw290000), Integer(vyw280010)) -> Integer(new_primMulInt(vyw290000, vyw280010)) 24.86/10.78 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.78 new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt19(vyw28000, vyw29000) 24.86/10.78 new_esEs12(vyw401, vyw3001, ty_Ordering) -> new_esEs9(vyw401, vyw3001) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_Either, daa), dab)) -> new_esEs6(vyw400, vyw3000, daa, dab) 24.86/10.78 new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs6(vyw28002, vyw29002) 24.86/10.78 new_esEs11(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.78 new_esEs23(vyw28000, vyw29000, ty_Float) -> new_esEs15(vyw28000, vyw29000) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), app(app(ty_Either, da), db)) -> new_ltEs5(vyw28000, vyw29000, da, db) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), ty_Bool, bhg) -> new_esEs18(vyw400, vyw3000) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.78 new_esEs24(vyw28001, vyw29001, app(ty_Ratio, cgf)) -> new_esEs19(vyw28001, vyw29001, cgf) 24.86/10.78 new_compare0([], :(vyw29000, vyw29001), h) -> LT 24.86/10.78 new_asAs(True, vyw102) -> vyw102 24.86/10.78 new_ltEs5(Right(vyw28000), Left(vyw29000), bae, hd) -> False 24.86/10.78 new_esEs12(vyw401, vyw3001, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs5(vyw401, vyw3001, bgb, bgc, bgd) 24.86/10.78 new_ltEs8(vyw2800, vyw2900, h) -> new_not(new_esEs9(new_compare0(vyw2800, vyw2900, h), GT)) 24.86/10.78 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) 24.86/10.78 new_compare26(Just(vyw2800), Just(vyw2900), False, dcb) -> new_compare13(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dcb), dcb) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Ratio, cad), bhg) -> new_esEs19(vyw400, vyw3000, cad) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs16(vyw28002, vyw29002) 24.86/10.78 new_lt20(vyw28000, vyw29000, app(app(ty_@2, bcg), bch)) -> new_lt7(vyw28000, vyw29000, bcg, bch) 24.86/10.78 new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare5(vyw28000, vyw29000) 24.86/10.78 new_compare31(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) 24.86/10.78 new_esEs6(Left(vyw400), Right(vyw3000), cag, bhg) -> False 24.86/10.78 new_esEs6(Right(vyw400), Left(vyw3000), cag, bhg) -> False 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.78 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs17(vyw28002, vyw29002) 24.86/10.78 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs17(vyw400, vyw3000) 24.86/10.78 new_ltEs16(True, False) -> False 24.86/10.78 new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt10(vyw28000, vyw29000, cb) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, bae), hd)) -> new_ltEs5(vyw2800, vyw2900, bae, hd) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, ty_Ordering) -> new_esEs9(vyw400, vyw3000) 24.86/10.78 new_esEs18(False, False) -> True 24.86/10.78 new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare15(vyw28000, vyw29000) 24.86/10.78 new_compare15(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.78 new_compare13(vyw95, vyw96, True, bec) -> LT 24.86/10.78 new_esEs20(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.78 new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare5(vyw2800, vyw2900), GT)) 24.86/10.78 new_compare24(vyw28000, vyw29000, True, ee, ef) -> EQ 24.86/10.78 new_esEs24(vyw28001, vyw29001, app(app(ty_@2, fh), ga)) -> new_esEs7(vyw28001, vyw29001, fh, ga) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs14(vyw28002, vyw29002) 24.86/10.78 new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, app(ty_[], gb)) -> new_ltEs8(vyw28002, vyw29002, gb) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, app(app(ty_Either, bbc), bbd)) -> new_ltEs5(vyw28000, vyw29000, bbc, bbd) 24.86/10.78 new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt9(vyw28000, vyw29000) 24.86/10.78 new_esEs24(vyw28001, vyw29001, ty_Int) -> new_esEs8(vyw28001, vyw29001) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, app(ty_Ratio, cbg)) -> new_esEs19(vyw400, vyw3000, cbg) 24.86/10.78 new_compare0([], [], h) -> EQ 24.86/10.78 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 24.86/10.78 new_ltEs7(Nothing, Nothing, bed) -> True 24.86/10.78 new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare32(vyw28000, vyw29000) 24.86/10.78 new_compare5(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare9(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) 24.86/10.78 new_primMulNat0(Zero, Zero) -> Zero 24.86/10.78 new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare32(vyw2800, vyw2900), GT)) 24.86/10.78 new_esEs12(vyw401, vyw3001, app(ty_[], bge)) -> new_esEs13(vyw401, vyw3001, bge) 24.86/10.78 new_lt12(vyw28000, vyw29000, app(app(ty_Either, ec), ed)) -> new_lt18(vyw28000, vyw29000, ec, ed) 24.86/10.78 new_compare10(vyw28000, vyw29000, False) -> GT 24.86/10.78 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs18(vyw401, vyw3001) 24.86/10.78 new_esEs23(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_Maybe, cac), bhg) -> new_esEs4(vyw400, vyw3000, cac) 24.86/10.78 new_lt9(vyw28000, vyw29000) -> new_esEs9(new_compare5(vyw28000, vyw29000), LT) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, app(ty_[], bdb)) -> new_ltEs8(vyw28001, vyw29001, bdb) 24.86/10.78 new_compare111(vyw28000, vyw29000, False) -> GT 24.86/10.78 new_esEs12(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 24.86/10.78 new_esEs26(vyw400, vyw3000, app(app(ty_Either, dbh), dca)) -> new_esEs6(vyw400, vyw3000, dbh, dca) 24.86/10.78 new_ltEs7(Just(vyw28000), Nothing, bed) -> False 24.86/10.78 new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.78 new_esEs23(vyw28000, vyw29000, app(app(ty_@2, ee), ef)) -> new_esEs7(vyw28000, vyw29000, ee, ef) 24.86/10.78 new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt14(vyw28001, vyw29001) 24.86/10.78 new_esEs11(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.78 new_compare28(vyw28000, vyw29000, True, dh, ea, eb) -> EQ 24.86/10.78 new_lt15(vyw28000, vyw29000, cge) -> new_esEs9(new_compare19(vyw28000, vyw29000, cge), LT) 24.86/10.78 new_esEs4(Nothing, Nothing, cgh) -> True 24.86/10.78 new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs6(vyw2800, vyw2900) 24.86/10.78 new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare6(vyw28000, vyw29000) 24.86/10.78 new_esEs4(Nothing, Just(vyw3000), cgh) -> False 24.86/10.78 new_esEs4(Just(vyw400), Nothing, cgh) -> False 24.86/10.78 new_esEs22(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) 24.86/10.78 new_lt20(vyw28000, vyw29000, app(ty_Ratio, dae)) -> new_lt15(vyw28000, vyw29000, dae) 24.86/10.78 new_lt13(vyw28001, vyw29001, app(app(ty_Either, ff), fg)) -> new_lt18(vyw28001, vyw29001, ff, fg) 24.86/10.78 new_compare15(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.78 new_esEs22(vyw402, vyw3002, ty_Ordering) -> new_esEs9(vyw402, vyw3002) 24.86/10.78 new_compare32(@0, @0) -> EQ 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, app(ty_Maybe, cbf)) -> new_esEs4(vyw400, vyw3000, cbf) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.78 new_esEs25(vyw28000, vyw29000, app(app(ty_Either, bce), bcf)) -> new_esEs6(vyw28000, vyw29000, bce, bcf) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), app(ty_[], hc), hd) -> new_ltEs8(vyw28000, vyw29000, hc) 24.86/10.78 new_primCompAux0(vyw116, EQ) -> vyw116 24.86/10.78 new_esEs9(EQ, EQ) -> True 24.86/10.78 new_ltEs20(vyw2800, vyw2900, app(ty_[], h)) -> new_ltEs8(vyw2800, vyw2900, h) 24.86/10.78 new_compare26(Just(vyw2800), Nothing, False, dcb) -> GT 24.86/10.78 new_esEs22(vyw402, vyw3002, ty_Integer) -> new_esEs17(vyw402, vyw3002) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, bdc)) -> new_ltEs7(vyw28001, vyw29001, bdc) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, cgc)) -> new_ltEs12(vyw2800, vyw2900, cgc) 24.86/10.78 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 24.86/10.78 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 24.86/10.78 new_lt5(vyw28000, vyw29000) -> new_esEs9(new_compare6(vyw28000, vyw29000), LT) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_[], cc)) -> new_ltEs8(vyw28000, vyw29000, cc) 24.86/10.78 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 24.86/10.78 new_esEs20(vyw400, vyw3000, app(app(ty_Either, cde), cdf)) -> new_esEs6(vyw400, vyw3000, cde, cdf) 24.86/10.78 new_esEs24(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) 24.86/10.78 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, gg), gh)) -> new_ltEs5(vyw28002, vyw29002, gg, gh) 24.86/10.78 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 24.86/10.78 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 24.86/10.78 new_compare30(vyw28000, vyw29000, app(ty_[], ba)) -> new_compare0(vyw28000, vyw29000, ba) 24.86/10.78 new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) 24.86/10.78 new_esEs23(vyw28000, vyw29000, app(ty_Ratio, cge)) -> new_esEs19(vyw28000, vyw29000, cge) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bee)) -> new_ltEs12(vyw28000, vyw29000, bee) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, daf)) -> new_ltEs12(vyw28001, vyw29001, daf) 24.86/10.78 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.86/10.78 new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.78 new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 24.86/10.78 new_lt4(vyw28000, vyw29000, de) -> new_esEs9(new_compare0(vyw28000, vyw29000, de), LT) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.78 new_compare110(vyw28000, vyw29000, True, dh, ea, eb) -> LT 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cd)) -> new_ltEs7(vyw28000, vyw29000, cd) 24.86/10.78 new_esEs23(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.78 new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt17(vyw28000, vyw29000) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, ty_Float) -> new_ltEs15(vyw28000, vyw29000) 24.86/10.78 new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs9(new_compare15(vyw2800, vyw2900), GT)) 24.86/10.78 new_esEs24(vyw28001, vyw29001, ty_Float) -> new_esEs15(vyw28001, vyw29001) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Double, hd) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.78 new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt16(vyw28000, vyw29000, bcb, bcc, bcd) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs15(vyw2800, vyw2900) 24.86/10.78 new_not(False) -> True 24.86/10.78 new_esEs11(vyw400, vyw3000, ty_Bool) -> new_esEs18(vyw400, vyw3000) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), ty_Int, bhg) -> new_esEs8(vyw400, vyw3000) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, app(ty_[], baf)) -> new_ltEs8(vyw28000, vyw29000, baf) 24.86/10.78 new_lt16(vyw28000, vyw29000, dh, ea, eb) -> new_esEs9(new_compare17(vyw28000, vyw29000, dh, ea, eb), LT) 24.86/10.78 new_esEs12(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.78 new_esEs9(GT, GT) -> True 24.86/10.78 new_compare0(:(vyw28000, vyw28001), [], h) -> GT 24.86/10.78 new_esEs18(False, True) -> False 24.86/10.78 new_esEs18(True, False) -> False 24.86/10.78 new_compare29(vyw28000, vyw29000, True) -> EQ 24.86/10.78 new_esEs22(vyw402, vyw3002, app(ty_[], cfd)) -> new_esEs13(vyw402, vyw3002, cfd) 24.86/10.78 new_esEs10(@0, @0) -> True 24.86/10.78 new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs9(vyw28002, vyw29002) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cgg)) -> new_ltEs12(vyw28002, vyw29002, cgg) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs6(vyw28000, vyw29000) 24.86/10.78 new_compare30(vyw28000, vyw29000, app(app(ty_Either, bf), bg)) -> new_compare16(vyw28000, vyw29000, bf, bg) 24.86/10.78 new_lt13(vyw28001, vyw29001, app(app(ty_@2, fh), ga)) -> new_lt7(vyw28001, vyw29001, fh, ga) 24.86/10.78 new_esEs24(vyw28001, vyw29001, ty_Double) -> new_esEs16(vyw28001, vyw29001) 24.86/10.78 new_esEs9(EQ, GT) -> False 24.86/10.78 new_esEs9(GT, EQ) -> False 24.86/10.78 new_primPlusNat0(Succ(vyw1120), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1120, vyw300000))) 24.86/10.78 new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt8(vyw28000, vyw29000) 24.86/10.78 new_ltEs16(False, False) -> True 24.86/10.78 new_compare11(vyw28000, vyw29000, True, ee, ef) -> LT 24.86/10.78 new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs15(vyw28001, vyw29001) 24.86/10.78 new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare18(vyw28000, vyw29000) 24.86/10.78 new_compare29(vyw28000, vyw29000, False) -> new_compare111(vyw28000, vyw29000, new_ltEs16(vyw28000, vyw29000)) 24.86/10.78 new_compare27(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs17(vyw28000, vyw29000)) 24.86/10.78 new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs10(vyw28001, vyw29001) 24.86/10.78 new_lt20(vyw28000, vyw29000, app(app(ty_Either, bce), bcf)) -> new_lt18(vyw28000, vyw29000, bce, bcf) 24.86/10.78 new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare31(vyw28000, vyw29000) 24.86/10.78 new_esEs12(vyw401, vyw3001, ty_Integer) -> new_esEs17(vyw401, vyw3001) 24.86/10.78 new_compare10(vyw28000, vyw29000, True) -> LT 24.86/10.78 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.86/10.78 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.86/10.78 new_esEs20(vyw400, vyw3000, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.78 new_primPlusNat1(Zero, Zero) -> Zero 24.86/10.78 new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, bc), bd), be)) -> new_compare17(vyw28000, vyw29000, bc, bd, be) 24.86/10.78 new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 24.86/10.78 new_esEs12(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 24.86/10.78 new_ltEs17(GT, EQ) -> False 24.86/10.78 new_esEs25(vyw28000, vyw29000, app(ty_Maybe, bca)) -> new_esEs4(vyw28000, vyw29000, bca) 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.78 new_lt19(vyw28000, vyw29000) -> new_esEs9(new_compare18(vyw28000, vyw29000), LT) 24.86/10.78 new_compare30(vyw28000, vyw29000, app(app(ty_@2, bh), ca)) -> new_compare8(vyw28000, vyw29000, bh, ca) 24.86/10.78 new_ltEs16(True, True) -> True 24.86/10.78 new_lt12(vyw28000, vyw29000, app(ty_Ratio, cge)) -> new_lt15(vyw28000, vyw29000, cge) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs13(vyw28000, vyw29000, bah, bba, bbb) 24.86/10.78 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.86/10.78 new_esEs25(vyw28000, vyw29000, ty_Integer) -> new_esEs17(vyw28000, vyw29000) 24.86/10.78 new_esEs21(vyw401, vyw3001, app(ty_Ratio, cef)) -> new_esEs19(vyw401, vyw3001, cef) 24.86/10.78 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), ty_Integer, bhg) -> new_esEs17(vyw400, vyw3000) 24.86/10.78 new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.78 new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt5(vyw28000, vyw29000) 24.86/10.78 new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs5(vyw400, vyw3000, dah, dba, dbb) 24.86/10.78 new_esEs21(vyw401, vyw3001, app(app(ty_@2, cec), ced)) -> new_esEs7(vyw401, vyw3001, cec, ced) 24.86/10.78 new_compare26(Nothing, Just(vyw2900), False, dcb) -> LT 24.86/10.78 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) 24.86/10.78 new_esEs24(vyw28001, vyw29001, ty_Integer) -> new_esEs17(vyw28001, vyw29001) 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.78 new_lt13(vyw28001, vyw29001, app(ty_Ratio, cgf)) -> new_lt15(vyw28001, vyw29001, cgf) 24.86/10.78 new_esEs22(vyw402, vyw3002, ty_Char) -> new_esEs14(vyw402, vyw3002) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), app(app(ty_@2, che), chf)) -> new_esEs7(vyw400, vyw3000, che, chf) 24.86/10.78 new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs15(vyw28002, vyw29002) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs10(vyw2800, vyw2900) 24.86/10.78 new_compare17(vyw28000, vyw29000, dh, ea, eb) -> new_compare28(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.86/10.78 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.86/10.78 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), app(ty_[], bhh), bhg) -> new_esEs13(vyw400, vyw3000, bhh) 24.86/10.78 new_ltEs17(GT, GT) -> True 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs14(vyw400, vyw3000) 24.86/10.78 new_esEs4(Just(vyw400), Just(vyw3000), app(ty_Ratio, chh)) -> new_esEs19(vyw400, vyw3000, chh) 24.86/10.78 new_esEs24(vyw28001, vyw29001, ty_Bool) -> new_esEs18(vyw28001, vyw29001) 24.86/10.78 new_esEs26(vyw400, vyw3000, app(ty_Maybe, dbf)) -> new_esEs4(vyw400, vyw3000, dbf) 24.86/10.78 new_primEqNat0(Zero, Zero) -> True 24.86/10.78 new_lt13(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_lt10(vyw28001, vyw29001, fa) 24.86/10.78 new_esEs25(vyw28000, vyw29000, ty_Int) -> new_esEs8(vyw28000, vyw29000) 24.86/10.78 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs14(vyw401, vyw3001) 24.86/10.78 new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs9(vyw2800, vyw2900) 24.86/10.78 new_esEs20(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.78 new_esEs9(LT, GT) -> False 24.86/10.78 new_esEs9(GT, LT) -> False 24.86/10.78 new_esEs6(Right(vyw400), Right(vyw3000), cag, ty_@0) -> new_esEs10(vyw400, vyw3000) 24.86/10.78 new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 24.86/10.78 new_compare5(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare9(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Ordering, hd) -> new_ltEs17(vyw28000, vyw29000) 24.86/10.78 new_asAs(False, vyw102) -> False 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_@0, hd) -> new_ltEs14(vyw28000, vyw29000) 24.86/10.78 new_ltEs5(Right(vyw28000), Right(vyw29000), bae, ty_Char) -> new_ltEs10(vyw28000, vyw29000) 24.86/10.78 new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt6(vyw28000, vyw29000) 24.86/10.78 new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt9(vyw28001, vyw29001) 24.86/10.78 new_ltEs5(Left(vyw28000), Left(vyw29000), ty_Bool, hd) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.78 new_esEs20(vyw400, vyw3000, app(ty_Ratio, cdd)) -> new_esEs19(vyw400, vyw3000, cdd) 24.86/10.78 new_lt12(vyw28000, vyw29000, app(app(ty_@2, ee), ef)) -> new_lt7(vyw28000, vyw29000, ee, ef) 24.86/10.78 new_esEs25(vyw28000, vyw29000, ty_Double) -> new_esEs16(vyw28000, vyw29000) 24.86/10.78 new_compare27(vyw28000, vyw29000, True) -> EQ 24.86/10.78 new_ltEs7(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs16(vyw28000, vyw29000) 24.86/10.78 new_esEs6(Left(vyw400), Left(vyw3000), ty_Double, bhg) -> new_esEs16(vyw400, vyw3000) 24.86/10.78 new_ltEs16(False, True) -> True 24.86/10.78 new_compare12(vyw28000, vyw29000, True, ec, ed) -> LT 24.86/10.78 new_esEs20(vyw400, vyw3000, app(ty_[], cch)) -> new_esEs13(vyw400, vyw3000, cch) 24.86/10.78 new_esEs20(vyw400, vyw3000, app(app(ty_@2, cda), cdb)) -> new_esEs7(vyw400, vyw3000, cda, cdb) 24.86/10.78 24.86/10.78 The set Q consists of the following terms: 24.86/10.78 24.86/10.78 new_compare8(x0, x1, x2, x3) 24.86/10.78 new_ltEs20(x0, x1, ty_Float) 24.86/10.78 new_esEs22(x0, x1, ty_Int) 24.86/10.78 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.78 new_ltEs19(x0, x1, ty_Char) 24.86/10.78 new_esEs27(x0, x1, ty_Integer) 24.86/10.78 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.86/10.78 new_esEs4(Just(x0), Just(x1), ty_Ordering) 24.86/10.78 new_compare26(Just(x0), Just(x1), False, x2) 24.86/10.78 new_lt20(x0, x1, ty_Char) 24.86/10.78 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.78 new_ltEs17(EQ, EQ) 24.86/10.78 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.78 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 24.86/10.78 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 24.86/10.78 new_lt13(x0, x1, ty_Int) 24.86/10.78 new_primPlusNat1(Succ(x0), Zero) 24.86/10.78 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 24.86/10.78 new_esEs24(x0, x1, ty_Bool) 24.86/10.78 new_primPlusNat1(Zero, Zero) 24.86/10.78 new_esEs22(x0, x1, app(ty_Maybe, x2)) 24.86/10.78 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.86/10.78 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.86/10.78 new_ltEs19(x0, x1, ty_Int) 24.86/10.78 new_lt13(x0, x1, ty_Ordering) 24.86/10.78 new_esEs22(x0, x1, ty_Ordering) 24.86/10.78 new_ltEs7(Just(x0), Just(x1), ty_Bool) 24.86/10.78 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.78 new_lt10(x0, x1, x2) 24.86/10.78 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.78 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.78 new_esEs23(x0, x1, ty_@0) 24.86/10.78 new_esEs21(x0, x1, ty_Ordering) 24.86/10.78 new_compare10(x0, x1, True) 24.86/10.78 new_lt12(x0, x1, ty_Ordering) 24.86/10.78 new_esEs18(True, True) 24.86/10.78 new_ltEs7(Just(x0), Just(x1), ty_Integer) 24.86/10.78 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 24.86/10.78 new_primCompAux0(x0, GT) 24.86/10.78 new_compare28(x0, x1, False, x2, x3, x4) 24.86/10.78 new_lt20(x0, x1, ty_Int) 24.86/10.78 new_primEqInt(Pos(Zero), Pos(Zero)) 24.86/10.78 new_esEs13([], :(x0, x1), x2) 24.86/10.78 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.78 new_esEs24(x0, x1, ty_@0) 24.86/10.78 new_esEs11(x0, x1, ty_Integer) 24.86/10.78 new_esEs8(x0, x1) 24.86/10.78 new_esEs23(x0, x1, ty_Bool) 24.86/10.78 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 24.86/10.78 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.78 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 24.86/10.78 new_lt18(x0, x1, x2, x3) 24.86/10.78 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.86/10.78 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 24.86/10.78 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.78 new_ltEs18(x0, x1, ty_@0) 24.86/10.78 new_esEs11(x0, x1, app(ty_Maybe, x2)) 24.86/10.78 new_esEs11(x0, x1, ty_@0) 24.86/10.78 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.78 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.78 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.86/10.78 new_primEqInt(Neg(Zero), Neg(Zero)) 24.86/10.78 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.86/10.78 new_esEs12(x0, x1, ty_Integer) 24.86/10.78 new_compare110(x0, x1, True, x2, x3, x4) 24.86/10.78 new_ltEs9(x0, x1) 24.86/10.78 new_esEs23(x0, x1, ty_Char) 24.86/10.78 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 24.86/10.78 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.78 new_lt13(x0, x1, app(ty_Ratio, x2)) 24.86/10.78 new_ltEs19(x0, x1, ty_@0) 24.86/10.78 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.78 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.78 new_esEs9(LT, LT) 24.86/10.78 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.86/10.78 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.86/10.78 new_ltEs16(False, False) 24.86/10.78 new_primCmpNat0(Succ(x0), Zero) 24.86/10.78 new_esEs23(x0, x1, ty_Int) 24.86/10.78 new_esEs12(x0, x1, ty_@0) 24.86/10.78 new_compare31(Char(x0), Char(x1)) 24.86/10.78 new_ltEs19(x0, x1, ty_Double) 24.86/10.78 new_lt20(x0, x1, ty_Ordering) 24.86/10.78 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.86/10.78 new_esEs24(x0, x1, app(ty_[], x2)) 24.86/10.78 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.86/10.78 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 24.86/10.78 new_ltEs11(x0, x1) 24.86/10.78 new_esEs9(EQ, GT) 24.86/10.78 new_esEs9(GT, EQ) 24.86/10.78 new_primPlusNat0(Succ(x0), x1) 24.86/10.78 new_compare26(Nothing, Just(x0), False, x1) 24.86/10.78 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.86/10.78 new_esEs22(x0, x1, ty_@0) 24.86/10.78 new_esEs20(x0, x1, ty_Int) 24.86/10.78 new_esEs14(Char(x0), Char(x1)) 24.86/10.78 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.86/10.78 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.86/10.78 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.86/10.78 new_compare111(x0, x1, True) 24.86/10.78 new_esEs26(x0, x1, ty_Double) 24.86/10.78 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.86/10.78 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.78 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.78 new_esEs25(x0, x1, ty_Integer) 24.86/10.78 new_esEs22(x0, x1, ty_Bool) 24.86/10.78 new_esEs4(Nothing, Nothing, x0) 24.86/10.78 new_primEqInt(Pos(Zero), Neg(Zero)) 24.86/10.78 new_primEqInt(Neg(Zero), Pos(Zero)) 24.86/10.78 new_esEs12(x0, x1, app(ty_Maybe, x2)) 24.86/10.78 new_esEs20(x0, x1, ty_Char) 24.86/10.78 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.78 new_compare0([], :(x0, x1), x2) 24.86/10.78 new_ltEs7(Just(x0), Just(x1), ty_@0) 24.86/10.78 new_compare24(x0, x1, True, x2, x3) 24.86/10.78 new_esEs24(x0, x1, ty_Integer) 24.86/10.78 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.86/10.78 new_esEs4(Just(x0), Just(x1), ty_Int) 24.86/10.78 new_ltEs7(Just(x0), Just(x1), ty_Char) 24.86/10.78 new_esEs25(x0, x1, ty_Ordering) 24.86/10.78 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.86/10.78 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.86/10.78 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.86/10.78 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.78 new_esEs4(Just(x0), Just(x1), ty_Double) 24.86/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 24.86/10.78 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.78 new_esEs6(Left(x0), Right(x1), x2, x3) 24.86/10.78 new_esEs6(Right(x0), Left(x1), x2, x3) 24.86/10.78 new_lt12(x0, x1, app(ty_Maybe, x2)) 24.86/10.78 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.86/10.78 new_esEs22(x0, x1, ty_Char) 24.86/10.78 new_esEs22(x0, x1, ty_Double) 24.86/10.78 new_esEs20(x0, x1, ty_Double) 24.86/10.78 new_ltEs7(Just(x0), Just(x1), ty_Int) 24.86/10.78 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.86/10.78 new_esEs12(x0, x1, ty_Bool) 24.86/10.78 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.86/10.78 new_lt13(x0, x1, ty_Double) 24.86/10.78 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.86/10.78 new_lt4(x0, x1, x2) 24.86/10.78 new_esEs4(Just(x0), Just(x1), ty_Char) 24.86/10.78 new_compare0([], [], x0) 24.86/10.78 new_lt13(x0, x1, ty_Char) 24.86/10.78 new_compare29(x0, x1, False) 24.86/10.78 new_lt12(x0, x1, app(ty_[], x2)) 24.86/10.78 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 24.86/10.78 new_esEs25(x0, x1, app(ty_[], x2)) 24.86/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 24.86/10.78 new_compare12(x0, x1, True, x2, x3) 24.86/10.78 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 24.86/10.78 new_ltEs8(x0, x1, x2) 24.86/10.78 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.86/10.78 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.86/10.78 new_esEs22(x0, x1, ty_Integer) 24.86/10.78 new_ltEs20(x0, x1, ty_Bool) 24.86/10.78 new_esEs26(x0, x1, ty_Int) 24.86/10.78 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.86/10.78 new_esEs24(x0, x1, ty_Float) 24.86/10.78 new_compare0(:(x0, x1), [], x2) 24.86/10.78 new_ltEs7(Just(x0), Just(x1), ty_Double) 24.86/10.78 new_compare10(x0, x1, False) 24.86/10.78 new_lt15(x0, x1, x2) 24.86/10.78 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.86/10.78 new_esEs21(x0, x1, app(ty_[], x2)) 24.86/10.78 new_lt13(x0, x1, ty_Bool) 24.86/10.78 new_esEs11(x0, x1, ty_Double) 24.86/10.78 new_lt9(x0, x1) 24.86/10.78 new_esEs26(x0, x1, ty_Char) 24.86/10.78 new_lt13(x0, x1, ty_@0) 24.86/10.78 new_compare26(x0, x1, True, x2) 24.98/10.78 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.98/10.78 new_esEs21(x0, x1, ty_@0) 24.98/10.78 new_lt12(x0, x1, ty_@0) 24.98/10.78 new_ltEs7(Just(x0), Just(x1), ty_Float) 24.98/10.78 new_ltEs18(x0, x1, ty_Ordering) 24.98/10.78 new_ltEs7(Just(x0), Nothing, x1) 24.98/10.78 new_esEs23(x0, x1, ty_Ordering) 24.98/10.78 new_lt14(x0, x1) 24.98/10.78 new_esEs18(False, True) 24.98/10.78 new_esEs18(True, False) 24.98/10.78 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 24.98/10.78 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 24.98/10.78 new_compare11(x0, x1, False, x2, x3) 24.98/10.78 new_compare24(x0, x1, False, x2, x3) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 24.98/10.78 new_lt13(x0, x1, ty_Integer) 24.98/10.78 new_ltEs20(x0, x1, ty_Integer) 24.98/10.78 new_ltEs18(x0, x1, ty_Float) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.98/10.78 new_esEs11(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_esEs12(x0, x1, ty_Ordering) 24.98/10.78 new_primCompAux0(x0, LT) 24.98/10.78 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.98/10.78 new_esEs24(x0, x1, ty_Int) 24.98/10.78 new_ltEs20(x0, x1, app(ty_[], x2)) 24.98/10.78 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_esEs26(x0, x1, ty_Float) 24.98/10.78 new_lt8(x0, x1) 24.98/10.78 new_esEs11(x0, x1, app(ty_[], x2)) 24.98/10.78 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_primEqNat0(Zero, Succ(x0)) 24.98/10.78 new_esEs4(Just(x0), Nothing, x1) 24.98/10.78 new_primCompAux1(x0, x1, x2, x3) 24.98/10.78 new_ltEs16(True, False) 24.98/10.78 new_esEs24(x0, x1, ty_Char) 24.98/10.78 new_ltEs16(False, True) 24.98/10.78 new_lt20(x0, x1, app(ty_[], x2)) 24.98/10.78 new_pePe(True, x0) 24.98/10.78 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_ltEs17(LT, LT) 24.98/10.78 new_esEs20(x0, x1, app(ty_[], x2)) 24.98/10.78 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.98/10.78 new_ltEs18(x0, x1, ty_Integer) 24.98/10.78 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.98/10.78 new_compare25(x0, x1, False, x2, x3) 24.98/10.78 new_compare30(x0, x1, app(ty_[], x2)) 24.98/10.78 new_lt12(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 24.98/10.78 new_lt20(x0, x1, ty_Double) 24.98/10.78 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.98/10.78 new_lt20(x0, x1, ty_@0) 24.98/10.78 new_compare30(x0, x1, ty_@0) 24.98/10.78 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.98/10.78 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.98/10.78 new_compare30(x0, x1, ty_Double) 24.98/10.78 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.98/10.78 new_ltEs18(x0, x1, ty_Int) 24.98/10.78 new_esEs23(x0, x1, ty_Integer) 24.98/10.78 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.98/10.78 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.98/10.78 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 24.98/10.78 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_esEs4(Nothing, Just(x0), x1) 24.98/10.78 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.98/10.78 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.98/10.78 new_asAs(False, x0) 24.98/10.78 new_ltEs18(x0, x1, ty_Char) 24.98/10.78 new_compare17(x0, x1, x2, x3, x4) 24.98/10.78 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.98/10.78 new_ltEs17(GT, GT) 24.98/10.78 new_sr0(Integer(x0), Integer(x1)) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 24.98/10.78 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_ltEs20(x0, x1, ty_Int) 24.98/10.78 new_ltEs18(x0, x1, ty_Bool) 24.98/10.78 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_primCmpNat0(Zero, Succ(x0)) 24.98/10.78 new_esEs10(@0, @0) 24.98/10.78 new_primPlusNat0(Zero, x0) 24.98/10.78 new_esEs25(x0, x1, ty_Double) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 24.98/10.78 new_esEs25(x0, x1, ty_@0) 24.98/10.78 new_lt12(x0, x1, ty_Double) 24.98/10.78 new_esEs27(x0, x1, ty_Int) 24.98/10.78 new_esEs16(Double(x0, x1), Double(x2, x3)) 24.98/10.78 new_ltEs20(x0, x1, ty_Char) 24.98/10.78 new_compare18(x0, x1) 24.98/10.78 new_ltEs17(LT, EQ) 24.98/10.78 new_ltEs17(EQ, LT) 24.98/10.78 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_esEs21(x0, x1, ty_Double) 24.98/10.78 new_primMulNat0(Succ(x0), Zero) 24.98/10.78 new_primPlusNat1(Succ(x0), Succ(x1)) 24.98/10.78 new_esEs23(x0, x1, app(ty_[], x2)) 24.98/10.78 new_primPlusNat1(Zero, Succ(x0)) 24.98/10.78 new_compare29(x0, x1, True) 24.98/10.78 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.98/10.78 new_ltEs20(x0, x1, ty_Double) 24.98/10.78 new_esEs9(EQ, EQ) 24.98/10.78 new_esEs26(x0, x1, ty_Integer) 24.98/10.78 new_compare30(x0, x1, ty_Char) 24.98/10.78 new_compare27(x0, x1, True) 24.98/10.78 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_compare12(x0, x1, False, x2, x3) 24.98/10.78 new_esEs21(x0, x1, ty_Float) 24.98/10.78 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.98/10.78 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_lt13(x0, x1, ty_Float) 24.98/10.78 new_primEqNat0(Succ(x0), Succ(x1)) 24.98/10.78 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 24.98/10.78 new_esEs4(Just(x0), Just(x1), ty_Float) 24.98/10.78 new_lt16(x0, x1, x2, x3, x4) 24.98/10.78 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.98/10.78 new_primMulNat0(Zero, Zero) 24.98/10.78 new_compare6(Integer(x0), Integer(x1)) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 24.98/10.78 new_primCompAux0(x0, EQ) 24.98/10.78 new_esEs17(Integer(x0), Integer(x1)) 24.98/10.78 new_ltEs12(x0, x1, x2) 24.98/10.78 new_ltEs20(x0, x1, ty_Ordering) 24.98/10.78 new_compare30(x0, x1, app(ty_Maybe, x2)) 24.98/10.78 new_compare14(x0, x1) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.98/10.78 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_compare11(x0, x1, True, x2, x3) 24.98/10.78 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.98/10.78 new_esEs22(x0, x1, ty_Float) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 24.98/10.78 new_esEs20(x0, x1, ty_Float) 24.98/10.78 new_lt12(x0, x1, ty_Float) 24.98/10.78 new_esEs26(x0, x1, app(ty_[], x2)) 24.98/10.78 new_primMulNat0(Succ(x0), Succ(x1)) 24.98/10.78 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_esEs20(x0, x1, ty_Integer) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 24.98/10.78 new_esEs12(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.98/10.78 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 24.98/10.78 new_compare30(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_lt12(x0, x1, ty_Integer) 24.98/10.78 new_ltEs7(Nothing, Nothing, x0) 24.98/10.78 new_not(True) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 24.98/10.78 new_compare25(x0, x1, True, x2, x3) 24.98/10.78 new_esEs26(x0, x1, ty_@0) 24.98/10.78 new_compare30(x0, x1, ty_Bool) 24.98/10.78 new_lt19(x0, x1) 24.98/10.78 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_lt20(x0, x1, ty_Float) 24.98/10.78 new_primEqNat0(Succ(x0), Zero) 24.98/10.78 new_primMulNat0(Zero, Succ(x0)) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 24.98/10.78 new_lt13(x0, x1, app(ty_[], x2)) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 24.98/10.78 new_ltEs6(x0, x1) 24.98/10.78 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.98/10.78 new_compare30(x0, x1, ty_Ordering) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.98/10.78 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.98/10.78 new_esEs12(x0, x1, ty_Double) 24.98/10.78 new_compare7(x0, x1, x2) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.98/10.78 new_esEs18(False, False) 24.98/10.78 new_asAs(True, x0) 24.98/10.78 new_ltEs14(x0, x1) 24.98/10.78 new_compare26(Just(x0), Nothing, False, x1) 24.98/10.78 new_esEs9(LT, EQ) 24.98/10.78 new_esEs9(EQ, LT) 24.98/10.78 new_ltEs7(Nothing, Just(x0), x1) 24.98/10.78 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.98/10.78 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.98/10.78 new_esEs9(GT, GT) 24.98/10.78 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_esEs20(x0, x1, ty_Bool) 24.98/10.78 new_sr(x0, x1) 24.98/10.78 new_esEs23(x0, x1, ty_Float) 24.98/10.78 new_esEs28(x0, x1, ty_Int) 24.98/10.78 new_ltEs5(Left(x0), Right(x1), x2, x3) 24.98/10.78 new_ltEs5(Right(x0), Left(x1), x2, x3) 24.98/10.78 new_esEs26(x0, x1, ty_Bool) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 24.98/10.78 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 24.98/10.78 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_primMulInt(Pos(x0), Pos(x1)) 24.98/10.78 new_ltEs19(x0, x1, ty_Float) 24.98/10.78 new_esEs9(LT, GT) 24.98/10.78 new_esEs9(GT, LT) 24.98/10.78 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.98/10.78 new_compare13(x0, x1, True, x2) 24.98/10.78 new_compare30(x0, x1, ty_Integer) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.98/10.78 new_esEs22(x0, x1, app(ty_[], x2)) 24.98/10.78 new_lt5(x0, x1) 24.98/10.78 new_esEs11(x0, x1, ty_Ordering) 24.98/10.78 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_esEs24(x0, x1, ty_Ordering) 24.98/10.78 new_esEs21(x0, x1, ty_Bool) 24.98/10.78 new_esEs11(x0, x1, ty_Float) 24.98/10.78 new_esEs12(x0, x1, ty_Char) 24.98/10.78 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.98/10.78 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_esEs13([], [], x0) 24.98/10.78 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 24.98/10.78 new_lt6(x0, x1) 24.98/10.78 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.98/10.78 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.98/10.78 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_ltEs17(LT, GT) 24.98/10.78 new_ltEs17(GT, LT) 24.98/10.78 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.98/10.78 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 24.98/10.78 new_compare9(x0, x1) 24.98/10.78 new_ltEs18(x0, x1, ty_Double) 24.98/10.78 new_lt13(x0, x1, app(ty_Maybe, x2)) 24.98/10.78 new_esEs12(x0, x1, ty_Int) 24.98/10.78 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 24.98/10.78 new_esEs4(Just(x0), Just(x1), ty_Bool) 24.98/10.78 new_lt7(x0, x1, x2, x3) 24.98/10.78 new_esEs4(Just(x0), Just(x1), ty_@0) 24.98/10.78 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.98/10.78 new_compare0(:(x0, x1), :(x2, x3), x4) 24.98/10.78 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.98/10.78 new_ltEs20(x0, x1, ty_@0) 24.98/10.78 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 24.98/10.78 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 24.98/10.78 new_lt11(x0, x1) 24.98/10.78 new_primMulInt(Neg(x0), Neg(x1)) 24.98/10.78 new_compare28(x0, x1, True, x2, x3, x4) 24.98/10.78 new_compare13(x0, x1, False, x2) 24.98/10.78 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 24.98/10.78 new_esEs20(x0, x1, ty_@0) 24.98/10.78 new_esEs25(x0, x1, ty_Float) 24.98/10.78 new_primMulInt(Pos(x0), Neg(x1)) 24.98/10.78 new_primMulInt(Neg(x0), Pos(x1)) 24.98/10.78 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 24.98/10.78 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 24.98/10.78 new_esEs12(x0, x1, app(ty_[], x2)) 24.98/10.78 new_primCmpNat0(Succ(x0), Succ(x1)) 24.98/10.78 new_esEs11(x0, x1, ty_Int) 24.98/10.78 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.98/10.78 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.98/10.78 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.98/10.78 new_esEs4(Just(x0), Just(x1), ty_Integer) 24.98/10.78 new_ltEs19(x0, x1, app(ty_[], x2)) 24.98/10.78 new_esEs21(x0, x1, ty_Integer) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 24.98/10.78 new_esEs12(x0, x1, ty_Float) 24.98/10.78 new_compare27(x0, x1, False) 24.98/10.78 new_lt20(x0, x1, ty_Integer) 24.98/10.78 new_esEs24(x0, x1, ty_Double) 24.98/10.78 new_esEs26(x0, x1, ty_Ordering) 24.98/10.78 new_lt17(x0, x1) 24.98/10.78 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.98/10.78 new_esEs22(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 24.98/10.78 new_esEs23(x0, x1, app(ty_Maybe, x2)) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.98/10.78 new_ltEs19(x0, x1, ty_Bool) 24.98/10.78 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.98/10.78 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 24.98/10.78 new_esEs23(x0, x1, ty_Double) 24.98/10.78 new_compare30(x0, x1, ty_Float) 24.98/10.78 new_primEqNat0(Zero, Zero) 24.98/10.78 new_esEs25(x0, x1, ty_Int) 24.98/10.78 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.98/10.78 new_compare111(x0, x1, False) 24.98/10.78 new_ltEs10(x0, x1) 24.98/10.78 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.98/10.78 new_not(False) 24.98/10.78 new_lt12(x0, x1, ty_Int) 24.98/10.78 new_ltEs18(x0, x1, app(ty_[], x2)) 24.98/10.78 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.98/10.78 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.98/10.78 new_esEs23(x0, x1, app(ty_Ratio, x2)) 24.98/10.78 new_ltEs16(True, True) 24.98/10.78 new_esEs11(x0, x1, ty_Char) 24.98/10.78 new_ltEs17(EQ, GT) 24.98/10.78 new_ltEs17(GT, EQ) 24.98/10.78 new_esEs28(x0, x1, ty_Integer) 24.98/10.78 new_esEs25(x0, x1, ty_Bool) 24.98/10.78 new_esEs20(x0, x1, ty_Ordering) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.98/10.78 new_esEs13(:(x0, x1), [], x2) 24.98/10.78 new_compare110(x0, x1, False, x2, x3, x4) 24.98/10.78 new_compare30(x0, x1, ty_Int) 24.98/10.78 new_ltEs15(x0, x1) 24.98/10.78 new_lt12(x0, x1, ty_Bool) 24.98/10.78 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.98/10.78 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 24.98/10.78 new_esEs25(x0, x1, ty_Char) 24.98/10.78 new_esEs21(x0, x1, ty_Int) 24.98/10.78 new_ltEs19(x0, x1, ty_Ordering) 24.98/10.78 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.98/10.78 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.98/10.78 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 24.98/10.78 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_ltEs19(x0, x1, ty_Integer) 24.98/10.78 new_pePe(False, x0) 24.98/10.78 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.98/10.78 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.98/10.78 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_lt12(x0, x1, ty_Char) 24.98/10.78 new_compare16(x0, x1, x2, x3) 24.98/10.78 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 24.98/10.78 new_compare32(@0, @0) 24.98/10.78 new_primCmpNat0(Zero, Zero) 24.98/10.78 new_compare26(Nothing, Nothing, False, x0) 24.98/10.78 new_esEs21(x0, x1, ty_Char) 24.98/10.78 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.98/10.78 new_esEs11(x0, x1, ty_Bool) 24.98/10.78 new_lt20(x0, x1, ty_Bool) 24.98/10.78 24.98/10.78 We have to consider all minimal (P,Q,R)-chains. 24.98/10.78 ---------------------------------------- 24.98/10.78 24.98/10.78 (46) QDPSizeChangeProof (EQUIVALENT) 24.98/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. 24.98/10.78 24.98/10.78 From the DPs we obtained the following set of size-change graphs: 24.98/10.78 *new_lt3(vyw28000, vyw29000, ee, ef) -> new_compare23(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_lt2(vyw28000, vyw29000, ec, ed) -> new_compare22(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(ty_Maybe, bdc)) -> new_ltEs0(vyw28001, vyw29001, bdc) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(ty_Maybe, cd)) -> new_ltEs0(vyw28000, vyw29000, cd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(app(ty_Either, bdg), bdh)) -> new_ltEs2(vyw28001, vyw29001, bdg, bdh) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(ty_Either, da), db)) -> new_ltEs2(vyw28000, vyw29000, da, db) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_Maybe, cb), df, dg) -> new_compare20(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(ty_Maybe, gc)) -> new_ltEs0(vyw28002, vyw29002, gc) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(app(ty_Either, gg), gh)) -> new_ltEs2(vyw28002, vyw29002, gg, gh) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_ltEs1(vyw28001, vyw29001, bdd, bde, bdf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs1(vyw28000, vyw29000, ce, cf, cg) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs1(vyw28002, vyw29002, gd, ge, gf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_lt1(vyw28000, vyw29000, dh, ea, eb) -> new_compare21(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare21(vyw28000, vyw29000, False, dh, ea, eb) -> new_ltEs1(vyw28000, vyw29000, dh, ea, eb) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_Either, ec), ed), df, dg) -> new_compare22(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(app(ty_@2, bea), beb)) -> new_ltEs3(vyw28001, vyw29001, bea, beb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dc), dd)) -> new_ltEs3(vyw28000, vyw29000, dc, dd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(ty_[], cc)) -> new_ltEs(vyw28000, vyw29000, cc) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(app(ty_@2, ha), hb)) -> new_ltEs3(vyw28002, vyw29002, ha, hb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_lt(vyw28000, vyw29000, de) -> new_compare(vyw28000, vyw29000, de) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_lt0(vyw28000, vyw29000, cb) -> new_compare20(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_primCompAux(vyw28000, vyw29000, vyw111, app(app(app(ty_@3, bc), bd), be)) -> new_compare2(vyw28000, vyw29000, bc, bd, be) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(app(ty_@3, bcb), bcc), bcd), bbh) -> new_lt1(vyw28000, vyw29000, bcb, bcc, bcd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(app(app(ty_@3, fb), fc), fd), dg) -> new_lt1(vyw28001, vyw29001, fb, fc, fd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_@2, ee), ef), df, dg) -> new_compare23(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_Either, bce), bcf), bbh) -> new_lt2(vyw28000, vyw29000, bce, bcf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare22(vyw28000, vyw29000, False, ec, ed) -> new_ltEs2(vyw28000, vyw29000, ec, ed) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(app(ty_Either, ff), fg), dg) -> new_lt2(vyw28001, vyw29001, ff, fg) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bda, app(ty_[], bdb)) -> new_ltEs(vyw28001, vyw29001, bdb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, df, app(ty_[], gb)) -> new_ltEs(vyw28002, vyw29002, gb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare23(vyw28000, vyw29000, False, ee, ef) -> new_ltEs3(vyw28000, vyw29000, ee, ef) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_primCompAux(vyw28000, vyw29000, vyw111, app(app(ty_@2, bh), ca)) -> new_compare4(vyw28000, vyw29000, bh, ca) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_Maybe, cb)), df), dg)) -> new_compare20(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare1(vyw28000, vyw29000, cb) -> new_compare20(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, cb), cb) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_Either, ec), ed)), df), dg)) -> new_compare22(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare3(vyw28000, vyw29000, ec, ed) -> new_compare22(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ec, ed), ec, ed) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_@2, ee), ef)), df), dg)) -> new_compare23(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare4(vyw28000, vyw29000, ee, ef) -> new_compare23(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ee, ef), ee, ef) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_primCompAux(vyw28000, vyw29000, vyw111, app(app(ty_Either, bf), bg)) -> new_compare3(vyw28000, vyw29000, bf, bg) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, h), h) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_compare(vyw28001, vyw29001, h) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, h), h) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare(:(vyw28000, vyw28001), :(vyw29000, vyw29001), h) -> new_compare(vyw28001, vyw29001, h) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], h)) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, h), h) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(app(ty_@3, dh), ea), eb), df, dg) -> new_compare21(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, dh), ea), eb)), df), dg)) -> new_compare21(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare2(vyw28000, vyw29000, dh, ea, eb) -> new_compare21(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, dh, ea, eb), dh, ea, eb) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_Maybe, bca), bbh) -> new_lt0(vyw28000, vyw29000, bca) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(ty_Maybe, fa), dg) -> new_lt0(vyw28001, vyw29001, fa) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_primCompAux(vyw28000, vyw29000, vyw111, app(ty_Maybe, bb)) -> new_compare1(vyw28000, vyw29000, bb) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_primCompAux(vyw28000, vyw29000, vyw111, app(ty_[], ba)) -> new_compare(vyw28000, vyw29000, ba) 24.98/10.78 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_[], bbg), bbh) -> new_lt(vyw28000, vyw29000, bbg) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs3(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_@2, bcg), bch), bbh) -> new_lt3(vyw28000, vyw29000, bcg, bch) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(ty_[], eh), dg) -> new_lt(vyw28001, vyw29001, eh) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_[], de), df, dg) -> new_compare(vyw28000, vyw29000, de) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs1(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), eg, app(app(ty_@2, fh), ga), dg) -> new_lt3(vyw28001, vyw29001, fh, ga) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(ty_Maybe, bag)) -> new_ltEs0(vyw28000, vyw29000, bag) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Left(vyw28000), Left(vyw29000), app(ty_Maybe, he), hd) -> new_ltEs0(vyw28000, vyw29000, he) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(app(ty_Either, bbc), bbd)) -> new_ltEs2(vyw28000, vyw29000, bbc, bbd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Left(vyw28000), Left(vyw29000), app(app(ty_Either, baa), bab), hd) -> new_ltEs2(vyw28000, vyw29000, baa, bab) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, hf), hg), hh), hd) -> new_ltEs1(vyw28000, vyw29000, hf, hg, hh) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs1(vyw28000, vyw29000, bah, bba, bbb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(app(ty_@2, bbe), bbf)) -> new_ltEs3(vyw28000, vyw29000, bbe, bbf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bac), bad), hd) -> new_ltEs3(vyw28000, vyw29000, bac, bad) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Left(vyw28000), Left(vyw29000), app(ty_[], hc), hd) -> new_ltEs(vyw28000, vyw29000, hc) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_ltEs2(Right(vyw28000), Right(vyw29000), bae, app(ty_[], baf)) -> new_ltEs(vyw28000, vyw29000, baf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(ty_Maybe, gc))) -> new_ltEs0(vyw28002, vyw29002, gc) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(ty_Maybe, bdc))) -> new_ltEs0(vyw28001, vyw29001, bdc) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_Maybe, cd))) -> new_ltEs0(vyw28000, vyw29000, cd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(ty_Maybe, bag))) -> new_ltEs0(vyw28000, vyw29000, bag) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_Maybe, he)), hd)) -> new_ltEs0(vyw28000, vyw29000, he) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_Either, baa), bab)), hd)) -> new_ltEs2(vyw28000, vyw29000, baa, bab) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(app(ty_Either, bdg), bdh))) -> new_ltEs2(vyw28001, vyw29001, bdg, bdh) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(app(ty_Either, bbc), bbd))) -> new_ltEs2(vyw28000, vyw29000, bbc, bbd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_Either, da), db))) -> new_ltEs2(vyw28000, vyw29000, da, db) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(app(ty_Either, gg), gh))) -> new_ltEs2(vyw28002, vyw29002, gg, gh) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(app(app(ty_@3, gd), ge), gf))) -> new_ltEs1(vyw28002, vyw29002, gd, ge, gf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(app(app(ty_@3, bdd), bde), bdf))) -> new_ltEs1(vyw28001, vyw29001, bdd, bde, bdf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(app(ty_@3, ce), cf), cg))) -> new_ltEs1(vyw28000, vyw29000, ce, cf, cg) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(app(ty_@3, hf), hg), hh)), hd)) -> new_ltEs1(vyw28000, vyw29000, hf, hg, hh) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(app(app(ty_@3, bah), bba), bbb))) -> new_ltEs1(vyw28000, vyw29000, bah, bba, bbb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(app(ty_@2, bea), beb))) -> new_ltEs3(vyw28001, vyw29001, bea, beb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_@2, bac), bad)), hd)) -> new_ltEs3(vyw28000, vyw29000, bac, bad) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(app(ty_@2, ha), hb))) -> new_ltEs3(vyw28002, vyw29002, ha, hb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_@2, dc), dd))) -> new_ltEs3(vyw28000, vyw29000, dc, dd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(app(ty_@2, bbe), bbf))) -> new_ltEs3(vyw28000, vyw29000, bbe, bbf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(app(app(ty_@3, fb), fc), fd)), dg)) -> new_lt1(vyw28001, vyw29001, fb, fc, fd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(app(ty_@3, bcb), bcc), bcd)), bbh)) -> new_lt1(vyw28000, vyw29000, bcb, bcc, bcd) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_Either, bce), bcf)), bbh)) -> new_lt2(vyw28000, vyw29000, bce, bcf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(app(ty_Either, ff), fg)), dg)) -> new_lt2(vyw28001, vyw29001, ff, fg) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), df), app(ty_[], gb))) -> new_ltEs(vyw28002, vyw29002, gb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, bae), app(ty_[], baf))) -> new_ltEs(vyw28000, vyw29000, baf) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bda), app(ty_[], bdb))) -> new_ltEs(vyw28001, vyw29001, bdb) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_[], cc))) -> new_ltEs(vyw28000, vyw29000, cc) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_[], hc)), hd)) -> new_ltEs(vyw28000, vyw29000, hc) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_Maybe, bca)), bbh)) -> new_lt0(vyw28000, vyw29000, bca) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(ty_Maybe, fa)), dg)) -> new_lt0(vyw28001, vyw29001, fa) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(ty_[], eh)), dg)) -> new_lt(vyw28001, vyw29001, eh) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_[], bbg)), bbh)) -> new_lt(vyw28000, vyw29000, bbg) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_[], de)), df), dg)) -> new_compare(vyw28000, vyw29000, de) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], h)) -> new_compare(vyw28001, vyw29001, h) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, eg), app(app(ty_@2, fh), ga)), dg)) -> new_lt3(vyw28001, vyw29001, fh, ga) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_@2, bcg), bch)), bbh)) -> new_lt3(vyw28000, vyw29000, bcg, bch) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.98/10.78 24.98/10.78 24.98/10.78 ---------------------------------------- 24.98/10.78 24.98/10.78 (47) 24.98/10.78 YES 24.98/10.78 24.98/10.78 ---------------------------------------- 24.98/10.78 24.98/10.78 (48) 24.98/10.78 Obligation: 24.98/10.78 Q DP problem: 24.98/10.78 The TRS P consists of the following rules: 24.98/10.78 24.98/10.78 new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) 24.98/10.78 24.98/10.78 R is empty. 24.98/10.78 Q is empty. 24.98/10.78 We have to consider all minimal (P,Q,R)-chains. 24.98/10.78 ---------------------------------------- 24.98/10.78 24.98/10.78 (49) QDPSizeChangeProof (EQUIVALENT) 24.98/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. 24.98/10.78 24.98/10.78 From the DPs we obtained the following set of size-change graphs: 24.98/10.78 *new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2 24.98/10.78 24.98/10.78 24.98/10.78 ---------------------------------------- 24.98/10.78 24.98/10.78 (50) 24.98/10.78 YES 24.98/10.78 24.98/10.78 ---------------------------------------- 24.98/10.78 24.98/10.78 (51) 24.98/10.78 Obligation: 24.98/10.78 Q DP problem: 24.98/10.78 The TRS P consists of the following rules: 24.98/10.78 24.98/10.78 new_primPlusNat(Succ(vyw11200), Succ(vyw3000000)) -> new_primPlusNat(vyw11200, vyw3000000) 24.98/10.78 24.98/10.78 R is empty. 24.98/10.78 Q is empty. 24.98/10.78 We have to consider all minimal (P,Q,R)-chains. 24.98/10.78 ---------------------------------------- 24.98/10.78 24.98/10.78 (52) QDPSizeChangeProof (EQUIVALENT) 24.98/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. 24.98/10.78 24.98/10.78 From the DPs we obtained the following set of size-change graphs: 24.98/10.78 *new_primPlusNat(Succ(vyw11200), Succ(vyw3000000)) -> new_primPlusNat(vyw11200, vyw3000000) 24.98/10.78 The graph contains the following edges 1 > 1, 2 > 2 24.98/10.78 24.98/10.78 24.98/10.78 ---------------------------------------- 24.98/10.78 24.98/10.78 (53) 24.98/10.78 YES 24.98/10.82 EOF