/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 4 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPOrderProof [EQUIVALENT, 163 ms] (22) QDP (23) DependencyGraphProof [EQUIVALENT, 0 ms] (24) TRUE (25) QDP (26) QDPSizeChangeProof [EQUIVALENT, 27 ms] (27) YES (28) QDP (29) QDPSizeChangeProof [EQUIVALENT, 0 ms] (30) YES (31) QDP (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] (33) YES (34) QDP (35) DependencyGraphProof [EQUIVALENT, 0 ms] (36) AND (37) QDP (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] (39) YES (40) QDP (41) TransformationProof [EQUIVALENT, 2993 ms] (42) QDP (43) TransformationProof [EQUIVALENT, 0 ms] (44) QDP (45) TransformationProof [EQUIVALENT, 0 ms] (46) QDP (47) TransformationProof [EQUIVALENT, 0 ms] (48) QDP (49) TransformationProof [EQUIVALENT, 0 ms] (50) QDP (51) TransformationProof [EQUIVALENT, 0 ms] (52) QDP (53) QDPSizeChangeProof [EQUIVALENT, 0 ms] (54) YES (55) QDP (56) DependencyGraphProof [EQUIVALENT, 0 ms] (57) AND (58) QDP (59) TransformationProof [EQUIVALENT, 3562 ms] (60) QDP (61) TransformationProof [EQUIVALENT, 0 ms] (62) QDP (63) TransformationProof [EQUIVALENT, 0 ms] (64) QDP (65) TransformationProof [EQUIVALENT, 0 ms] (66) QDP (67) TransformationProof [EQUIVALENT, 0 ms] (68) QDP (69) QDPSizeChangeProof [EQUIVALENT, 0 ms] (70) YES (71) QDP (72) QDPSizeChangeProof [EQUIVALENT, 0 ms] (73) YES (74) QDP (75) QDPSizeChangeProof [EQUIVALENT, 0 ms] (76) YES (77) QDP (78) DependencyGraphProof [EQUIVALENT, 0 ms] (79) AND (80) QDP (81) TransformationProof [EQUIVALENT, 3058 ms] (82) QDP (83) TransformationProof [EQUIVALENT, 0 ms] (84) QDP (85) TransformationProof [EQUIVALENT, 0 ms] (86) QDP (87) TransformationProof [EQUIVALENT, 0 ms] (88) QDP (89) TransformationProof [EQUIVALENT, 0 ms] (90) QDP (91) TransformationProof [EQUIVALENT, 0 ms] (92) QDP (93) QDPSizeChangeProof [EQUIVALENT, 0 ms] (94) YES (95) QDP (96) QDPSizeChangeProof [EQUIVALENT, 0 ms] (97) YES (98) QDP (99) QDPSizeChangeProof [EQUIVALENT, 0 ms] (100) YES (101) QDP (102) QDPSizeChangeProof [EQUIVALENT, 0 ms] (103) YES (104) QDP (105) QDPSizeChangeProof [EQUIVALENT, 0 ms] (106) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C (\old new ->new) fm key elt; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\oldnew->new" is transformed to "addToFM0 old new = new; " The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. Binding Reductions: The bind variable of the following binding Pattern "fm_l@(Branch vuv vuw vux vuy vuz)" is replaced by the following term "Branch vuv vuw vux vuy vuz" The bind variable of the following binding Pattern "fm_r@(Branch vvv vvw vvx vvy vvz)" is replaced by the following term "Branch vvv vvw vvx vvy vvz" ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) | sIZE_RATIO * size_l < size_r = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz | sIZE_RATIO * size_r < size_l = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)) | otherwise = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; " "gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wwz wxu = gcd3 wwz wxu; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; ; gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; } ; " "gcd1 True wwz wxu = error []; gcd1 wxv wxw wxx = gcd0 wxw wxx; " "gcd2 True wwz wxu = gcd1 (wxu == 0) wwz wxu; gcd2 wxy wxz wyu = gcd0 wxz wyu; " "gcd3 wwz wxu = gcd2 (wwz == 0) wwz wxu; gcd3 wyv wyw = gcd0 wyv wyw; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; " The following Function with conditions "mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz)|sIZE_RATIO * size_l < size_rmkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz|sIZE_RATIO * size_r < size_lmkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz))|otherwisemkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } ; " is transformed to "mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); " "mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } ; " "mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; " "mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; " The following Function with conditions "splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key|split_key > keysplitGT fm_r split_key|split_key < keymkVBalBranch key elt (splitGT fm_l split_key) fm_r|otherwisefm_r; " is transformed to "splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; " "splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; " "splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; " "splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); " "splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); " "splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; " The following Function with conditions "splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key|split_key < keysplitLT fm_l split_key|split_key > keymkVBalBranch key elt fm_l (splitLT fm_r split_key)|otherwisefm_l; " is transformed to "splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; " "splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; " "splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); " "splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; " "splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); " "splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; ; gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; } " are unpacked to the following functions on top level "gcd0Gcd'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x wvz = x; gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; " "gcd0Gcd' x wvz = gcd0Gcd'2 x wvz; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); " "reduce2D xxv xxw = gcd xxv xxw; " "reduce2Reduce1 xxv xxw x y True = error []; reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; " "mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); " "mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); " "mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; " "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; " "mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; " "mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); " "mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; " "mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; " "mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; " "mkBranchBalance_ok xyv xyw xyx = True; " "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; " "mkBranchRight_size xyv xyw xyx = sizeFM xyv; " "mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchUnbox xyv xyw xyx x = x; " "mkBranchLeft_size xyv xyw xyx = sizeFM xyx; " "mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; " The bindings of the following Let/Where expression "mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; ; lts = splitLT fm1 split_key; } " are unpacked to the following functions on top level "plusFMGts xzw xzx = splitGT xzw xzx; " "plusFMLts xzw xzx = splitLT xzw xzx; " The bindings of the following Let/Where expression "mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } " are unpacked to the following functions on top level "mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); " "mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); " "mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; " "mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); " "mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); mkBranchLeft_size xyv xyw xyx = sizeFM xyx; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); mkBranchRight_size xyv xyw xyx = sizeFM xyv; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM (plusFMLts fm1 split_key) left) (plusFM (plusFMGts fm1 split_key) right); plusFMGts xzw xzx = splitGT xzw xzx; plusFMLts xzw xzx = splitLT xzw xzx; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xxx xxy fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xxx xxy fm_lrr fm_r); mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xxx xxy fm_l fm_rl) fm_rr; mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xxx xxy fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); mkBranchLeft_size xyv xyw xyx = sizeFM xyx; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (Pos (Succ Zero) + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); mkBranchRight_size xyv xyw xyx = sizeFM xyv; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM (plusFMLts fm1 split_key) left) (plusFM (plusFMGts fm1 split_key) right); plusFMGts xzw xzx = splitGT xzw xzx; plusFMLts xzw xzx = splitLT xzw xzx; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.plusFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.plusFM yvy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.plusFM yvy3 yvy4",fontsize=16,color="burlywood",shape="triangle"];4075[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 4075[label="",style="solid", color="burlywood", weight=9]; 4075 -> 5[label="",style="solid", color="burlywood", weight=3]; 4076[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 4076[label="",style="solid", color="burlywood", weight=9]; 4076 -> 6[label="",style="solid", color="burlywood", weight=3]; 5[label="FiniteMap.plusFM FiniteMap.EmptyFM yvy4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 6[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy4",fontsize=16,color="burlywood",shape="box"];4077[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 4077[label="",style="solid", color="burlywood", weight=9]; 4077 -> 8[label="",style="solid", color="burlywood", weight=3]; 4078[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 4078[label="",style="solid", color="burlywood", weight=9]; 4078 -> 9[label="",style="solid", color="burlywood", weight=3]; 7[label="yvy4",fontsize=16,color="green",shape="box"];8[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) (FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=16,color="green",shape="box"];11 -> 12[label="",style="dashed", color="red", weight=0]; 11[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43) (FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44)",fontsize=16,color="magenta"];11 -> 13[label="",style="dashed", color="magenta", weight=3]; 11 -> 14[label="",style="dashed", color="magenta", weight=3]; 13 -> 4[label="",style="dashed", color="red", weight=0]; 13[label="FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44",fontsize=16,color="magenta"];13 -> 15[label="",style="dashed", color="magenta", weight=3]; 13 -> 16[label="",style="dashed", color="magenta", weight=3]; 14 -> 4[label="",style="dashed", color="red", weight=0]; 14[label="FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43",fontsize=16,color="magenta"];14 -> 17[label="",style="dashed", color="magenta", weight=3]; 14 -> 18[label="",style="dashed", color="magenta", weight=3]; 12[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy6 yvy5",fontsize=16,color="burlywood",shape="triangle"];4079[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 4079[label="",style="solid", color="burlywood", weight=9]; 4079 -> 19[label="",style="solid", color="burlywood", weight=3]; 4080[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 4080[label="",style="solid", color="burlywood", weight=9]; 4080 -> 20[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];15 -> 21[label="",style="solid", color="black", weight=3]; 16[label="yvy44",fontsize=16,color="green",shape="box"];17[label="FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];17 -> 22[label="",style="solid", color="black", weight=3]; 18[label="yvy43",fontsize=16,color="green",shape="box"];19[label="FiniteMap.mkVBalBranch yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy5",fontsize=16,color="burlywood",shape="box"];4081[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 4081[label="",style="solid", color="burlywood", weight=9]; 4081 -> 24[label="",style="solid", color="burlywood", weight=3]; 4082[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 4082[label="",style="solid", color="burlywood", weight=9]; 4082 -> 25[label="",style="solid", color="burlywood", weight=3]; 21[label="FiniteMap.splitGT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];21 -> 26[label="",style="solid", color="black", weight=3]; 22[label="FiniteMap.splitLT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];22 -> 27[label="",style="solid", color="black", weight=3]; 23[label="FiniteMap.mkVBalBranch5 yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];23 -> 28[label="",style="solid", color="black", weight=3]; 24[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];24 -> 29[label="",style="solid", color="black", weight=3]; 25[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];25 -> 30[label="",style="solid", color="black", weight=3]; 26[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];26 -> 31[label="",style="solid", color="black", weight=3]; 27[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];27 -> 32[label="",style="solid", color="black", weight=3]; 28[label="FiniteMap.addToFM yvy5 yvy40 yvy41",fontsize=16,color="black",shape="triangle"];28 -> 33[label="",style="solid", color="black", weight=3]; 29[label="FiniteMap.mkVBalBranch4 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];29 -> 34[label="",style="solid", color="black", weight=3]; 30[label="FiniteMap.mkVBalBranch3 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];30 -> 35[label="",style="solid", color="black", weight=3]; 31[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 > yvy30)",fontsize=16,color="black",shape="box"];31 -> 36[label="",style="solid", color="black", weight=3]; 32[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 < yvy30)",fontsize=16,color="black",shape="box"];32 -> 37[label="",style="solid", color="black", weight=3]; 33[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy5 yvy40 yvy41",fontsize=16,color="burlywood",shape="triangle"];4083[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 4083[label="",style="solid", color="burlywood", weight=9]; 4083 -> 38[label="",style="solid", color="burlywood", weight=3]; 4084[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 4084[label="",style="solid", color="burlywood", weight=9]; 4084 -> 39[label="",style="solid", color="burlywood", weight=3]; 34 -> 28[label="",style="dashed", color="red", weight=0]; 34[label="FiniteMap.addToFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy40 yvy41",fontsize=16,color="magenta"];34 -> 40[label="",style="dashed", color="magenta", weight=3]; 35[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="black",shape="box"];35 -> 41[label="",style="solid", color="black", weight=3]; 36[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == GT)",fontsize=16,color="burlywood",shape="box"];4085[label="yvy40/yvy400 : yvy401",fontsize=10,color="white",style="solid",shape="box"];36 -> 4085[label="",style="solid", color="burlywood", weight=9]; 4085 -> 42[label="",style="solid", color="burlywood", weight=3]; 4086[label="yvy40/[]",fontsize=10,color="white",style="solid",shape="box"];36 -> 4086[label="",style="solid", color="burlywood", weight=9]; 4086 -> 43[label="",style="solid", color="burlywood", weight=3]; 37[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == LT)",fontsize=16,color="burlywood",shape="box"];4087[label="yvy40/yvy400 : yvy401",fontsize=10,color="white",style="solid",shape="box"];37 -> 4087[label="",style="solid", color="burlywood", weight=9]; 4087 -> 44[label="",style="solid", color="burlywood", weight=3]; 4088[label="yvy40/[]",fontsize=10,color="white",style="solid",shape="box"];37 -> 4088[label="",style="solid", color="burlywood", weight=9]; 4088 -> 45[label="",style="solid", color="burlywood", weight=3]; 38[label="FiniteMap.addToFM_C FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];38 -> 46[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];39 -> 47[label="",style="solid", color="black", weight=3]; 40[label="FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="green",shape="box"];41[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (compare (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];41 -> 48[label="",style="solid", color="black", weight=3]; 42[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (compare (yvy400 : yvy401) yvy30 == GT)",fontsize=16,color="burlywood",shape="box"];4089[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];42 -> 4089[label="",style="solid", color="burlywood", weight=9]; 4089 -> 49[label="",style="solid", color="burlywood", weight=3]; 4090[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];42 -> 4090[label="",style="solid", color="burlywood", weight=9]; 4090 -> 50[label="",style="solid", color="burlywood", weight=3]; 43[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 [] (compare [] yvy30 == GT)",fontsize=16,color="burlywood",shape="box"];4091[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];43 -> 4091[label="",style="solid", color="burlywood", weight=9]; 4091 -> 51[label="",style="solid", color="burlywood", weight=3]; 4092[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];43 -> 4092[label="",style="solid", color="burlywood", weight=9]; 4092 -> 52[label="",style="solid", color="burlywood", weight=3]; 44[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (compare (yvy400 : yvy401) yvy30 == LT)",fontsize=16,color="burlywood",shape="box"];4093[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];44 -> 4093[label="",style="solid", color="burlywood", weight=9]; 4093 -> 53[label="",style="solid", color="burlywood", weight=3]; 4094[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];44 -> 4094[label="",style="solid", color="burlywood", weight=9]; 4094 -> 54[label="",style="solid", color="burlywood", weight=3]; 45[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 [] (compare [] yvy30 == LT)",fontsize=16,color="burlywood",shape="box"];4095[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];45 -> 4095[label="",style="solid", color="burlywood", weight=9]; 4095 -> 55[label="",style="solid", color="burlywood", weight=3]; 4096[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];45 -> 4096[label="",style="solid", color="burlywood", weight=9]; 4096 -> 56[label="",style="solid", color="burlywood", weight=3]; 46[label="FiniteMap.addToFM_C4 FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];46 -> 57[label="",style="solid", color="black", weight=3]; 47[label="FiniteMap.addToFM_C3 FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];47 -> 58[label="",style="solid", color="black", weight=3]; 48[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];48 -> 59[label="",style="solid", color="black", weight=3]; 49[label="FiniteMap.splitGT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (compare (yvy400 : yvy401) (yvy300 : yvy301) == GT)",fontsize=16,color="black",shape="box"];49 -> 60[label="",style="solid", color="black", weight=3]; 50[label="FiniteMap.splitGT2 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (compare (yvy400 : yvy401) [] == GT)",fontsize=16,color="black",shape="box"];50 -> 61[label="",style="solid", color="black", weight=3]; 51[label="FiniteMap.splitGT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (compare [] (yvy300 : yvy301) == GT)",fontsize=16,color="black",shape="box"];51 -> 62[label="",style="solid", color="black", weight=3]; 52[label="FiniteMap.splitGT2 [] yvy31 yvy32 yvy33 yvy34 [] (compare [] [] == GT)",fontsize=16,color="black",shape="box"];52 -> 63[label="",style="solid", color="black", weight=3]; 53[label="FiniteMap.splitLT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (compare (yvy400 : yvy401) (yvy300 : yvy301) == LT)",fontsize=16,color="black",shape="box"];53 -> 64[label="",style="solid", color="black", weight=3]; 54[label="FiniteMap.splitLT2 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (compare (yvy400 : yvy401) [] == LT)",fontsize=16,color="black",shape="box"];54 -> 65[label="",style="solid", color="black", weight=3]; 55[label="FiniteMap.splitLT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (compare [] (yvy300 : yvy301) == LT)",fontsize=16,color="black",shape="box"];55 -> 66[label="",style="solid", color="black", weight=3]; 56[label="FiniteMap.splitLT2 [] yvy31 yvy32 yvy33 yvy34 [] (compare [] [] == LT)",fontsize=16,color="black",shape="box"];56 -> 67[label="",style="solid", color="black", weight=3]; 57[label="FiniteMap.unitFM yvy40 yvy41",fontsize=16,color="black",shape="box"];57 -> 68[label="",style="solid", color="black", weight=3]; 58[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (yvy40 < yvy50)",fontsize=16,color="black",shape="box"];58 -> 69[label="",style="solid", color="black", weight=3]; 59[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt FiniteMap.sIZE_RATIO (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];59 -> 70[label="",style="solid", color="black", weight=3]; 60 -> 223[label="",style="dashed", color="red", weight=0]; 60[label="FiniteMap.splitGT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (primCompAux yvy400 yvy300 (compare yvy401 yvy301) == GT)",fontsize=16,color="magenta"];60 -> 224[label="",style="dashed", color="magenta", weight=3]; 60 -> 225[label="",style="dashed", color="magenta", weight=3]; 60 -> 226[label="",style="dashed", color="magenta", weight=3]; 60 -> 227[label="",style="dashed", color="magenta", weight=3]; 60 -> 228[label="",style="dashed", color="magenta", weight=3]; 60 -> 229[label="",style="dashed", color="magenta", weight=3]; 60 -> 230[label="",style="dashed", color="magenta", weight=3]; 60 -> 231[label="",style="dashed", color="magenta", weight=3]; 60 -> 232[label="",style="dashed", color="magenta", weight=3]; 61[label="FiniteMap.splitGT2 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (GT == GT)",fontsize=16,color="black",shape="box"];61 -> 72[label="",style="solid", color="black", weight=3]; 62[label="FiniteMap.splitGT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (LT == GT)",fontsize=16,color="black",shape="box"];62 -> 73[label="",style="solid", color="black", weight=3]; 63[label="FiniteMap.splitGT2 [] yvy31 yvy32 yvy33 yvy34 [] (EQ == GT)",fontsize=16,color="black",shape="box"];63 -> 74[label="",style="solid", color="black", weight=3]; 64 -> 272[label="",style="dashed", color="red", weight=0]; 64[label="FiniteMap.splitLT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (primCompAux yvy400 yvy300 (compare yvy401 yvy301) == LT)",fontsize=16,color="magenta"];64 -> 273[label="",style="dashed", color="magenta", weight=3]; 64 -> 274[label="",style="dashed", color="magenta", weight=3]; 64 -> 275[label="",style="dashed", color="magenta", weight=3]; 64 -> 276[label="",style="dashed", color="magenta", weight=3]; 64 -> 277[label="",style="dashed", color="magenta", weight=3]; 64 -> 278[label="",style="dashed", color="magenta", weight=3]; 64 -> 279[label="",style="dashed", color="magenta", weight=3]; 64 -> 280[label="",style="dashed", color="magenta", weight=3]; 64 -> 281[label="",style="dashed", color="magenta", weight=3]; 65[label="FiniteMap.splitLT2 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (GT == LT)",fontsize=16,color="black",shape="box"];65 -> 76[label="",style="solid", color="black", weight=3]; 66[label="FiniteMap.splitLT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (LT == LT)",fontsize=16,color="black",shape="box"];66 -> 77[label="",style="solid", color="black", weight=3]; 67[label="FiniteMap.splitLT2 [] yvy31 yvy32 yvy33 yvy34 [] (EQ == LT)",fontsize=16,color="black",shape="box"];67 -> 78[label="",style="solid", color="black", weight=3]; 68[label="FiniteMap.Branch yvy40 yvy41 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];68 -> 79[label="",style="dashed", color="green", weight=3]; 68 -> 80[label="",style="dashed", color="green", weight=3]; 69[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare yvy40 yvy50 == LT)",fontsize=16,color="burlywood",shape="box"];4097[label="yvy40/yvy400 : yvy401",fontsize=10,color="white",style="solid",shape="box"];69 -> 4097[label="",style="solid", color="burlywood", weight=9]; 4097 -> 81[label="",style="solid", color="burlywood", weight=3]; 4098[label="yvy40/[]",fontsize=10,color="white",style="solid",shape="box"];69 -> 4098[label="",style="solid", color="burlywood", weight=9]; 4098 -> 82[label="",style="solid", color="burlywood", weight=3]; 70[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];70 -> 83[label="",style="solid", color="black", weight=3]; 224[label="yvy301",fontsize=16,color="green",shape="box"];225[label="yvy33",fontsize=16,color="green",shape="box"];226[label="yvy31",fontsize=16,color="green",shape="box"];227[label="yvy401",fontsize=16,color="green",shape="box"];228[label="yvy400",fontsize=16,color="green",shape="box"];229 -> 246[label="",style="dashed", color="red", weight=0]; 229[label="primCompAux yvy400 yvy300 (compare yvy401 yvy301)",fontsize=16,color="magenta"];229 -> 247[label="",style="dashed", color="magenta", weight=3]; 230[label="yvy300",fontsize=16,color="green",shape="box"];231[label="yvy32",fontsize=16,color="green",shape="box"];232[label="yvy34",fontsize=16,color="green",shape="box"];223[label="FiniteMap.splitGT2 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (yvy50 == GT)",fontsize=16,color="burlywood",shape="triangle"];4099[label="yvy50/LT",fontsize=10,color="white",style="solid",shape="box"];223 -> 4099[label="",style="solid", color="burlywood", weight=9]; 4099 -> 248[label="",style="solid", color="burlywood", weight=3]; 4100[label="yvy50/EQ",fontsize=10,color="white",style="solid",shape="box"];223 -> 4100[label="",style="solid", color="burlywood", weight=9]; 4100 -> 249[label="",style="solid", color="burlywood", weight=3]; 4101[label="yvy50/GT",fontsize=10,color="white",style="solid",shape="box"];223 -> 4101[label="",style="solid", color="burlywood", weight=9]; 4101 -> 250[label="",style="solid", color="burlywood", weight=3]; 72[label="FiniteMap.splitGT2 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) True",fontsize=16,color="black",shape="box"];72 -> 94[label="",style="solid", color="black", weight=3]; 73[label="FiniteMap.splitGT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="black",shape="box"];73 -> 95[label="",style="solid", color="black", weight=3]; 74[label="FiniteMap.splitGT2 [] yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="black",shape="box"];74 -> 96[label="",style="solid", color="black", weight=3]; 273[label="yvy401",fontsize=16,color="green",shape="box"];274[label="yvy32",fontsize=16,color="green",shape="box"];275[label="yvy400",fontsize=16,color="green",shape="box"];276[label="yvy301",fontsize=16,color="green",shape="box"];277[label="yvy34",fontsize=16,color="green",shape="box"];278[label="yvy33",fontsize=16,color="green",shape="box"];279 -> 246[label="",style="dashed", color="red", weight=0]; 279[label="primCompAux yvy400 yvy300 (compare yvy401 yvy301)",fontsize=16,color="magenta"];279 -> 295[label="",style="dashed", color="magenta", weight=3]; 280[label="yvy300",fontsize=16,color="green",shape="box"];281[label="yvy31",fontsize=16,color="green",shape="box"];272[label="FiniteMap.splitLT2 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (yvy52 == LT)",fontsize=16,color="burlywood",shape="triangle"];4102[label="yvy52/LT",fontsize=10,color="white",style="solid",shape="box"];272 -> 4102[label="",style="solid", color="burlywood", weight=9]; 4102 -> 296[label="",style="solid", color="burlywood", weight=3]; 4103[label="yvy52/EQ",fontsize=10,color="white",style="solid",shape="box"];272 -> 4103[label="",style="solid", color="burlywood", weight=9]; 4103 -> 297[label="",style="solid", color="burlywood", weight=3]; 4104[label="yvy52/GT",fontsize=10,color="white",style="solid",shape="box"];272 -> 4104[label="",style="solid", color="burlywood", weight=9]; 4104 -> 298[label="",style="solid", color="burlywood", weight=3]; 76[label="FiniteMap.splitLT2 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) False",fontsize=16,color="black",shape="box"];76 -> 107[label="",style="solid", color="black", weight=3]; 77[label="FiniteMap.splitLT2 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] True",fontsize=16,color="black",shape="box"];77 -> 108[label="",style="solid", color="black", weight=3]; 78[label="FiniteMap.splitLT2 [] yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="black",shape="box"];78 -> 109[label="",style="solid", color="black", weight=3]; 79[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];79 -> 110[label="",style="solid", color="black", weight=3]; 80 -> 79[label="",style="dashed", color="red", weight=0]; 80[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];81[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (compare (yvy400 : yvy401) yvy50 == LT)",fontsize=16,color="burlywood",shape="box"];4105[label="yvy50/yvy500 : yvy501",fontsize=10,color="white",style="solid",shape="box"];81 -> 4105[label="",style="solid", color="burlywood", weight=9]; 4105 -> 111[label="",style="solid", color="burlywood", weight=3]; 4106[label="yvy50/[]",fontsize=10,color="white",style="solid",shape="box"];81 -> 4106[label="",style="solid", color="burlywood", weight=9]; 4106 -> 112[label="",style="solid", color="burlywood", weight=3]; 82[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 [] yvy41 (compare [] yvy50 == LT)",fontsize=16,color="burlywood",shape="box"];4107[label="yvy50/yvy500 : yvy501",fontsize=10,color="white",style="solid",shape="box"];82 -> 4107[label="",style="solid", color="burlywood", weight=9]; 4107 -> 113[label="",style="solid", color="burlywood", weight=3]; 4108[label="yvy50/[]",fontsize=10,color="white",style="solid",shape="box"];82 -> 4108[label="",style="solid", color="burlywood", weight=9]; 4108 -> 114[label="",style="solid", color="burlywood", weight=3]; 83[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];83 -> 115[label="",style="solid", color="black", weight=3]; 247 -> 119[label="",style="dashed", color="red", weight=0]; 247[label="compare yvy401 yvy301",fontsize=16,color="magenta"];247 -> 251[label="",style="dashed", color="magenta", weight=3]; 247 -> 252[label="",style="dashed", color="magenta", weight=3]; 246[label="primCompAux yvy400 yvy300 yvy51",fontsize=16,color="black",shape="triangle"];246 -> 253[label="",style="solid", color="black", weight=3]; 248[label="FiniteMap.splitGT2 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (LT == GT)",fontsize=16,color="black",shape="box"];248 -> 299[label="",style="solid", color="black", weight=3]; 249[label="FiniteMap.splitGT2 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (EQ == GT)",fontsize=16,color="black",shape="box"];249 -> 300[label="",style="solid", color="black", weight=3]; 250[label="FiniteMap.splitGT2 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (GT == GT)",fontsize=16,color="black",shape="box"];250 -> 301[label="",style="solid", color="black", weight=3]; 94[label="FiniteMap.splitGT yvy34 (yvy400 : yvy401)",fontsize=16,color="burlywood",shape="triangle"];4109[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];94 -> 4109[label="",style="solid", color="burlywood", weight=9]; 4109 -> 133[label="",style="solid", color="burlywood", weight=3]; 4110[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];94 -> 4110[label="",style="solid", color="burlywood", weight=9]; 4110 -> 134[label="",style="solid", color="burlywood", weight=3]; 95[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] ([] < yvy300 : yvy301)",fontsize=16,color="black",shape="box"];95 -> 135[label="",style="solid", color="black", weight=3]; 96[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] ([] < [])",fontsize=16,color="black",shape="box"];96 -> 136[label="",style="solid", color="black", weight=3]; 295 -> 119[label="",style="dashed", color="red", weight=0]; 295[label="compare yvy401 yvy301",fontsize=16,color="magenta"];295 -> 305[label="",style="dashed", color="magenta", weight=3]; 295 -> 306[label="",style="dashed", color="magenta", weight=3]; 296[label="FiniteMap.splitLT2 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (LT == LT)",fontsize=16,color="black",shape="box"];296 -> 307[label="",style="solid", color="black", weight=3]; 297[label="FiniteMap.splitLT2 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (EQ == LT)",fontsize=16,color="black",shape="box"];297 -> 308[label="",style="solid", color="black", weight=3]; 298[label="FiniteMap.splitLT2 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (GT == LT)",fontsize=16,color="black",shape="box"];298 -> 309[label="",style="solid", color="black", weight=3]; 107[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (yvy400 : yvy401 > [])",fontsize=16,color="black",shape="box"];107 -> 154[label="",style="solid", color="black", weight=3]; 108[label="FiniteMap.splitLT yvy33 []",fontsize=16,color="burlywood",shape="triangle"];4111[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];108 -> 4111[label="",style="solid", color="burlywood", weight=9]; 4111 -> 155[label="",style="solid", color="burlywood", weight=3]; 4112[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];108 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 156[label="",style="solid", color="burlywood", weight=3]; 109[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] ([] > [])",fontsize=16,color="black",shape="box"];109 -> 157[label="",style="solid", color="black", weight=3]; 110[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];111[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (compare (yvy400 : yvy401) (yvy500 : yvy501) == LT)",fontsize=16,color="black",shape="box"];111 -> 158[label="",style="solid", color="black", weight=3]; 112[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (compare (yvy400 : yvy401) [] == LT)",fontsize=16,color="black",shape="box"];112 -> 159[label="",style="solid", color="black", weight=3]; 113[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 [] yvy41 (compare [] (yvy500 : yvy501) == LT)",fontsize=16,color="black",shape="box"];113 -> 160[label="",style="solid", color="black", weight=3]; 114[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 (compare [] [] == LT)",fontsize=16,color="black",shape="box"];114 -> 161[label="",style="solid", color="black", weight=3]; 115[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy62) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="burlywood",shape="box"];4113[label="yvy62/Pos yvy620",fontsize=10,color="white",style="solid",shape="box"];115 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 162[label="",style="solid", color="burlywood", weight=3]; 4114[label="yvy62/Neg yvy620",fontsize=10,color="white",style="solid",shape="box"];115 -> 4114[label="",style="solid", color="burlywood", weight=9]; 4114 -> 163[label="",style="solid", color="burlywood", weight=3]; 251[label="yvy301",fontsize=16,color="green",shape="box"];252[label="yvy401",fontsize=16,color="green",shape="box"];119[label="compare yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4115[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];119 -> 4115[label="",style="solid", color="burlywood", weight=9]; 4115 -> 167[label="",style="solid", color="burlywood", weight=3]; 4116[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];119 -> 4116[label="",style="solid", color="burlywood", weight=9]; 4116 -> 168[label="",style="solid", color="burlywood", weight=3]; 253 -> 302[label="",style="dashed", color="red", weight=0]; 253[label="primCompAux0 yvy51 (compare yvy400 yvy300)",fontsize=16,color="magenta"];253 -> 303[label="",style="dashed", color="magenta", weight=3]; 253 -> 304[label="",style="dashed", color="magenta", weight=3]; 299[label="FiniteMap.splitGT2 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) False",fontsize=16,color="black",shape="triangle"];299 -> 310[label="",style="solid", color="black", weight=3]; 300 -> 299[label="",style="dashed", color="red", weight=0]; 300[label="FiniteMap.splitGT2 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) False",fontsize=16,color="magenta"];301[label="FiniteMap.splitGT2 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) True",fontsize=16,color="black",shape="box"];301 -> 311[label="",style="solid", color="black", weight=3]; 133[label="FiniteMap.splitGT FiniteMap.EmptyFM (yvy400 : yvy401)",fontsize=16,color="black",shape="box"];133 -> 182[label="",style="solid", color="black", weight=3]; 134[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (yvy400 : yvy401)",fontsize=16,color="black",shape="box"];134 -> 183[label="",style="solid", color="black", weight=3]; 135 -> 184[label="",style="dashed", color="red", weight=0]; 135[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (compare [] (yvy300 : yvy301) == LT)",fontsize=16,color="magenta"];135 -> 185[label="",style="dashed", color="magenta", weight=3]; 136 -> 186[label="",style="dashed", color="red", weight=0]; 136[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] (compare [] [] == LT)",fontsize=16,color="magenta"];136 -> 187[label="",style="dashed", color="magenta", weight=3]; 305[label="yvy301",fontsize=16,color="green",shape="box"];306[label="yvy401",fontsize=16,color="green",shape="box"];307[label="FiniteMap.splitLT2 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) True",fontsize=16,color="black",shape="box"];307 -> 351[label="",style="solid", color="black", weight=3]; 308[label="FiniteMap.splitLT2 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) False",fontsize=16,color="black",shape="triangle"];308 -> 352[label="",style="solid", color="black", weight=3]; 309 -> 308[label="",style="dashed", color="red", weight=0]; 309[label="FiniteMap.splitLT2 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) False",fontsize=16,color="magenta"];154 -> 191[label="",style="dashed", color="red", weight=0]; 154[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (compare (yvy400 : yvy401) [] == GT)",fontsize=16,color="magenta"];154 -> 192[label="",style="dashed", color="magenta", weight=3]; 155[label="FiniteMap.splitLT FiniteMap.EmptyFM []",fontsize=16,color="black",shape="box"];155 -> 193[label="",style="solid", color="black", weight=3]; 156[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) []",fontsize=16,color="black",shape="box"];156 -> 194[label="",style="solid", color="black", weight=3]; 157 -> 195[label="",style="dashed", color="red", weight=0]; 157[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] (compare [] [] == GT)",fontsize=16,color="magenta"];157 -> 196[label="",style="dashed", color="magenta", weight=3]; 158 -> 348[label="",style="dashed", color="red", weight=0]; 158[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (primCompAux yvy400 yvy500 (compare yvy401 yvy501) == LT)",fontsize=16,color="magenta"];158 -> 349[label="",style="dashed", color="magenta", weight=3]; 159[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (GT == LT)",fontsize=16,color="black",shape="box"];159 -> 199[label="",style="solid", color="black", weight=3]; 160[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 [] yvy41 (LT == LT)",fontsize=16,color="black",shape="box"];160 -> 200[label="",style="solid", color="black", weight=3]; 161[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 (EQ == LT)",fontsize=16,color="black",shape="box"];161 -> 201[label="",style="solid", color="black", weight=3]; 162[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Pos yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];162 -> 202[label="",style="solid", color="black", weight=3]; 163[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Neg yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];163 -> 203[label="",style="solid", color="black", weight=3]; 167[label="compare (yvy4000 : yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4117[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];167 -> 4117[label="",style="solid", color="burlywood", weight=9]; 4117 -> 208[label="",style="solid", color="burlywood", weight=3]; 4118[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];167 -> 4118[label="",style="solid", color="burlywood", weight=9]; 4118 -> 209[label="",style="solid", color="burlywood", weight=3]; 168[label="compare [] yvy300",fontsize=16,color="burlywood",shape="box"];4119[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];168 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 210[label="",style="solid", color="burlywood", weight=3]; 4120[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];168 -> 4120[label="",style="solid", color="burlywood", weight=9]; 4120 -> 211[label="",style="solid", color="burlywood", weight=3]; 303[label="yvy51",fontsize=16,color="green",shape="box"];304[label="compare yvy400 yvy300",fontsize=16,color="blue",shape="box"];4121[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4121[label="",style="solid", color="blue", weight=9]; 4121 -> 312[label="",style="solid", color="blue", weight=3]; 4122[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 313[label="",style="solid", color="blue", weight=3]; 4123[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 314[label="",style="solid", color="blue", weight=3]; 4124[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 315[label="",style="solid", color="blue", weight=3]; 4125[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 316[label="",style="solid", color="blue", weight=3]; 4126[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 317[label="",style="solid", color="blue", weight=3]; 4127[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 318[label="",style="solid", color="blue", weight=3]; 4128[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 319[label="",style="solid", color="blue", weight=3]; 4129[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 320[label="",style="solid", color="blue", weight=3]; 4130[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4130[label="",style="solid", color="blue", weight=9]; 4130 -> 321[label="",style="solid", color="blue", weight=3]; 4131[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4131[label="",style="solid", color="blue", weight=9]; 4131 -> 322[label="",style="solid", color="blue", weight=3]; 4132[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 323[label="",style="solid", color="blue", weight=3]; 4133[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 324[label="",style="solid", color="blue", weight=3]; 4134[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 325[label="",style="solid", color="blue", weight=3]; 302[label="primCompAux0 yvy56 yvy57",fontsize=16,color="burlywood",shape="triangle"];4135[label="yvy57/LT",fontsize=10,color="white",style="solid",shape="box"];302 -> 4135[label="",style="solid", color="burlywood", weight=9]; 4135 -> 326[label="",style="solid", color="burlywood", weight=3]; 4136[label="yvy57/EQ",fontsize=10,color="white",style="solid",shape="box"];302 -> 4136[label="",style="solid", color="burlywood", weight=9]; 4136 -> 327[label="",style="solid", color="burlywood", weight=3]; 4137[label="yvy57/GT",fontsize=10,color="white",style="solid",shape="box"];302 -> 4137[label="",style="solid", color="burlywood", weight=9]; 4137 -> 328[label="",style="solid", color="burlywood", weight=3]; 310[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (yvy23 : yvy24 < yvy17 : yvy18)",fontsize=16,color="black",shape="box"];310 -> 353[label="",style="solid", color="black", weight=3]; 311 -> 94[label="",style="dashed", color="red", weight=0]; 311[label="FiniteMap.splitGT yvy22 (yvy23 : yvy24)",fontsize=16,color="magenta"];311 -> 354[label="",style="dashed", color="magenta", weight=3]; 311 -> 355[label="",style="dashed", color="magenta", weight=3]; 311 -> 356[label="",style="dashed", color="magenta", weight=3]; 182[label="FiniteMap.splitGT4 FiniteMap.EmptyFM (yvy400 : yvy401)",fontsize=16,color="black",shape="box"];182 -> 254[label="",style="solid", color="black", weight=3]; 183 -> 26[label="",style="dashed", color="red", weight=0]; 183[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (yvy400 : yvy401)",fontsize=16,color="magenta"];183 -> 255[label="",style="dashed", color="magenta", weight=3]; 183 -> 256[label="",style="dashed", color="magenta", weight=3]; 183 -> 257[label="",style="dashed", color="magenta", weight=3]; 183 -> 258[label="",style="dashed", color="magenta", weight=3]; 183 -> 259[label="",style="dashed", color="magenta", weight=3]; 183 -> 260[label="",style="dashed", color="magenta", weight=3]; 185 -> 119[label="",style="dashed", color="red", weight=0]; 185[label="compare [] (yvy300 : yvy301)",fontsize=16,color="magenta"];185 -> 261[label="",style="dashed", color="magenta", weight=3]; 185 -> 262[label="",style="dashed", color="magenta", weight=3]; 184[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (yvy45 == LT)",fontsize=16,color="burlywood",shape="triangle"];4138[label="yvy45/LT",fontsize=10,color="white",style="solid",shape="box"];184 -> 4138[label="",style="solid", color="burlywood", weight=9]; 4138 -> 263[label="",style="solid", color="burlywood", weight=3]; 4139[label="yvy45/EQ",fontsize=10,color="white",style="solid",shape="box"];184 -> 4139[label="",style="solid", color="burlywood", weight=9]; 4139 -> 264[label="",style="solid", color="burlywood", weight=3]; 4140[label="yvy45/GT",fontsize=10,color="white",style="solid",shape="box"];184 -> 4140[label="",style="solid", color="burlywood", weight=9]; 4140 -> 265[label="",style="solid", color="burlywood", weight=3]; 187 -> 119[label="",style="dashed", color="red", weight=0]; 187[label="compare [] []",fontsize=16,color="magenta"];187 -> 266[label="",style="dashed", color="magenta", weight=3]; 187 -> 267[label="",style="dashed", color="magenta", weight=3]; 186[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] (yvy46 == LT)",fontsize=16,color="burlywood",shape="triangle"];4141[label="yvy46/LT",fontsize=10,color="white",style="solid",shape="box"];186 -> 4141[label="",style="solid", color="burlywood", weight=9]; 4141 -> 268[label="",style="solid", color="burlywood", weight=3]; 4142[label="yvy46/EQ",fontsize=10,color="white",style="solid",shape="box"];186 -> 4142[label="",style="solid", color="burlywood", weight=9]; 4142 -> 269[label="",style="solid", color="burlywood", weight=3]; 4143[label="yvy46/GT",fontsize=10,color="white",style="solid",shape="box"];186 -> 4143[label="",style="solid", color="burlywood", weight=9]; 4143 -> 270[label="",style="solid", color="burlywood", weight=3]; 351[label="FiniteMap.splitLT yvy40 (yvy42 : yvy43)",fontsize=16,color="burlywood",shape="triangle"];4144[label="yvy40/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];351 -> 4144[label="",style="solid", color="burlywood", weight=9]; 4144 -> 401[label="",style="solid", color="burlywood", weight=3]; 4145[label="yvy40/FiniteMap.Branch yvy400 yvy401 yvy402 yvy403 yvy404",fontsize=10,color="white",style="solid",shape="box"];351 -> 4145[label="",style="solid", color="burlywood", weight=9]; 4145 -> 402[label="",style="solid", color="burlywood", weight=3]; 352[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (yvy42 : yvy43 > yvy36 : yvy37)",fontsize=16,color="black",shape="box"];352 -> 403[label="",style="solid", color="black", weight=3]; 192 -> 119[label="",style="dashed", color="red", weight=0]; 192[label="compare (yvy400 : yvy401) []",fontsize=16,color="magenta"];192 -> 329[label="",style="dashed", color="magenta", weight=3]; 192 -> 330[label="",style="dashed", color="magenta", weight=3]; 191[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (yvy47 == GT)",fontsize=16,color="burlywood",shape="triangle"];4146[label="yvy47/LT",fontsize=10,color="white",style="solid",shape="box"];191 -> 4146[label="",style="solid", color="burlywood", weight=9]; 4146 -> 331[label="",style="solid", color="burlywood", weight=3]; 4147[label="yvy47/EQ",fontsize=10,color="white",style="solid",shape="box"];191 -> 4147[label="",style="solid", color="burlywood", weight=9]; 4147 -> 332[label="",style="solid", color="burlywood", weight=3]; 4148[label="yvy47/GT",fontsize=10,color="white",style="solid",shape="box"];191 -> 4148[label="",style="solid", color="burlywood", weight=9]; 4148 -> 333[label="",style="solid", color="burlywood", weight=3]; 193[label="FiniteMap.splitLT4 FiniteMap.EmptyFM []",fontsize=16,color="black",shape="box"];193 -> 334[label="",style="solid", color="black", weight=3]; 194 -> 27[label="",style="dashed", color="red", weight=0]; 194[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) []",fontsize=16,color="magenta"];194 -> 335[label="",style="dashed", color="magenta", weight=3]; 194 -> 336[label="",style="dashed", color="magenta", weight=3]; 194 -> 337[label="",style="dashed", color="magenta", weight=3]; 194 -> 338[label="",style="dashed", color="magenta", weight=3]; 194 -> 339[label="",style="dashed", color="magenta", weight=3]; 194 -> 340[label="",style="dashed", color="magenta", weight=3]; 196 -> 119[label="",style="dashed", color="red", weight=0]; 196[label="compare [] []",fontsize=16,color="magenta"];196 -> 341[label="",style="dashed", color="magenta", weight=3]; 196 -> 342[label="",style="dashed", color="magenta", weight=3]; 195[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] (yvy48 == GT)",fontsize=16,color="burlywood",shape="triangle"];4149[label="yvy48/LT",fontsize=10,color="white",style="solid",shape="box"];195 -> 4149[label="",style="solid", color="burlywood", weight=9]; 4149 -> 343[label="",style="solid", color="burlywood", weight=3]; 4150[label="yvy48/EQ",fontsize=10,color="white",style="solid",shape="box"];195 -> 4150[label="",style="solid", color="burlywood", weight=9]; 4150 -> 344[label="",style="solid", color="burlywood", weight=3]; 4151[label="yvy48/GT",fontsize=10,color="white",style="solid",shape="box"];195 -> 4151[label="",style="solid", color="burlywood", weight=9]; 4151 -> 345[label="",style="solid", color="burlywood", weight=3]; 349 -> 246[label="",style="dashed", color="red", weight=0]; 349[label="primCompAux yvy400 yvy500 (compare yvy401 yvy501)",fontsize=16,color="magenta"];349 -> 357[label="",style="dashed", color="magenta", weight=3]; 349 -> 358[label="",style="dashed", color="magenta", weight=3]; 348[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (yvy58 == LT)",fontsize=16,color="burlywood",shape="triangle"];4152[label="yvy58/LT",fontsize=10,color="white",style="solid",shape="box"];348 -> 4152[label="",style="solid", color="burlywood", weight=9]; 4152 -> 359[label="",style="solid", color="burlywood", weight=3]; 4153[label="yvy58/EQ",fontsize=10,color="white",style="solid",shape="box"];348 -> 4153[label="",style="solid", color="burlywood", weight=9]; 4153 -> 360[label="",style="solid", color="burlywood", weight=3]; 4154[label="yvy58/GT",fontsize=10,color="white",style="solid",shape="box"];348 -> 4154[label="",style="solid", color="burlywood", weight=9]; 4154 -> 361[label="",style="solid", color="burlywood", weight=3]; 199[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 False",fontsize=16,color="black",shape="box"];199 -> 362[label="",style="solid", color="black", weight=3]; 200[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 [] yvy41 True",fontsize=16,color="black",shape="box"];200 -> 363[label="",style="solid", color="black", weight=3]; 201[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 False",fontsize=16,color="black",shape="box"];201 -> 364[label="",style="solid", color="black", weight=3]; 202[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT)",fontsize=16,color="burlywood",shape="box"];4155[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];202 -> 4155[label="",style="solid", color="burlywood", weight=9]; 4155 -> 365[label="",style="solid", color="burlywood", weight=3]; 4156[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];202 -> 4156[label="",style="solid", color="burlywood", weight=9]; 4156 -> 366[label="",style="solid", color="burlywood", weight=3]; 203[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT)",fontsize=16,color="burlywood",shape="box"];4157[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];203 -> 4157[label="",style="solid", color="burlywood", weight=9]; 4157 -> 367[label="",style="solid", color="burlywood", weight=3]; 4158[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];203 -> 4158[label="",style="solid", color="burlywood", weight=9]; 4158 -> 368[label="",style="solid", color="burlywood", weight=3]; 208[label="compare (yvy4000 : yvy4001) (yvy3000 : yvy3001)",fontsize=16,color="black",shape="box"];208 -> 369[label="",style="solid", color="black", weight=3]; 209[label="compare (yvy4000 : yvy4001) []",fontsize=16,color="black",shape="box"];209 -> 370[label="",style="solid", color="black", weight=3]; 210[label="compare [] (yvy3000 : yvy3001)",fontsize=16,color="black",shape="box"];210 -> 371[label="",style="solid", color="black", weight=3]; 211[label="compare [] []",fontsize=16,color="black",shape="box"];211 -> 372[label="",style="solid", color="black", weight=3]; 312[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];312 -> 373[label="",style="solid", color="black", weight=3]; 313[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];313 -> 374[label="",style="solid", color="black", weight=3]; 314[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];314 -> 375[label="",style="solid", color="black", weight=3]; 315 -> 119[label="",style="dashed", color="red", weight=0]; 315[label="compare yvy400 yvy300",fontsize=16,color="magenta"];316[label="compare yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4159[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];316 -> 4159[label="",style="solid", color="burlywood", weight=9]; 4159 -> 376[label="",style="solid", color="burlywood", weight=3]; 317[label="compare yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4160[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];317 -> 4160[label="",style="solid", color="burlywood", weight=9]; 4160 -> 377[label="",style="solid", color="burlywood", weight=3]; 318[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];318 -> 378[label="",style="solid", color="black", weight=3]; 319[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];319 -> 379[label="",style="solid", color="black", weight=3]; 320[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];320 -> 380[label="",style="solid", color="black", weight=3]; 321[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];321 -> 381[label="",style="solid", color="black", weight=3]; 322[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];322 -> 382[label="",style="solid", color="black", weight=3]; 323[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];323 -> 383[label="",style="solid", color="black", weight=3]; 324[label="compare yvy400 yvy300",fontsize=16,color="black",shape="triangle"];324 -> 384[label="",style="solid", color="black", weight=3]; 325[label="compare yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4161[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];325 -> 4161[label="",style="solid", color="burlywood", weight=9]; 4161 -> 385[label="",style="solid", color="burlywood", weight=3]; 326[label="primCompAux0 yvy56 LT",fontsize=16,color="black",shape="box"];326 -> 386[label="",style="solid", color="black", weight=3]; 327[label="primCompAux0 yvy56 EQ",fontsize=16,color="black",shape="box"];327 -> 387[label="",style="solid", color="black", weight=3]; 328[label="primCompAux0 yvy56 GT",fontsize=16,color="black",shape="box"];328 -> 388[label="",style="solid", color="black", weight=3]; 353 -> 404[label="",style="dashed", color="red", weight=0]; 353[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (compare (yvy23 : yvy24) (yvy17 : yvy18) == LT)",fontsize=16,color="magenta"];353 -> 405[label="",style="dashed", color="magenta", weight=3]; 354[label="yvy22",fontsize=16,color="green",shape="box"];355[label="yvy23",fontsize=16,color="green",shape="box"];356[label="yvy24",fontsize=16,color="green",shape="box"];254 -> 79[label="",style="dashed", color="red", weight=0]; 254[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];255[label="yvy400 : yvy401",fontsize=16,color="green",shape="box"];256[label="yvy341",fontsize=16,color="green",shape="box"];257[label="yvy344",fontsize=16,color="green",shape="box"];258[label="yvy340",fontsize=16,color="green",shape="box"];259[label="yvy342",fontsize=16,color="green",shape="box"];260[label="yvy343",fontsize=16,color="green",shape="box"];261[label="yvy300 : yvy301",fontsize=16,color="green",shape="box"];262[label="[]",fontsize=16,color="green",shape="box"];263[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (LT == LT)",fontsize=16,color="black",shape="box"];263 -> 389[label="",style="solid", color="black", weight=3]; 264[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (EQ == LT)",fontsize=16,color="black",shape="box"];264 -> 390[label="",style="solid", color="black", weight=3]; 265[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] (GT == LT)",fontsize=16,color="black",shape="box"];265 -> 391[label="",style="solid", color="black", weight=3]; 266[label="[]",fontsize=16,color="green",shape="box"];267[label="[]",fontsize=16,color="green",shape="box"];268[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] (LT == LT)",fontsize=16,color="black",shape="box"];268 -> 392[label="",style="solid", color="black", weight=3]; 269[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] (EQ == LT)",fontsize=16,color="black",shape="box"];269 -> 393[label="",style="solid", color="black", weight=3]; 270[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] (GT == LT)",fontsize=16,color="black",shape="box"];270 -> 394[label="",style="solid", color="black", weight=3]; 401[label="FiniteMap.splitLT FiniteMap.EmptyFM (yvy42 : yvy43)",fontsize=16,color="black",shape="box"];401 -> 406[label="",style="solid", color="black", weight=3]; 402[label="FiniteMap.splitLT (FiniteMap.Branch yvy400 yvy401 yvy402 yvy403 yvy404) (yvy42 : yvy43)",fontsize=16,color="black",shape="box"];402 -> 407[label="",style="solid", color="black", weight=3]; 403 -> 408[label="",style="dashed", color="red", weight=0]; 403[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (compare (yvy42 : yvy43) (yvy36 : yvy37) == GT)",fontsize=16,color="magenta"];403 -> 409[label="",style="dashed", color="magenta", weight=3]; 329[label="[]",fontsize=16,color="green",shape="box"];330[label="yvy400 : yvy401",fontsize=16,color="green",shape="box"];331[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (LT == GT)",fontsize=16,color="black",shape="box"];331 -> 395[label="",style="solid", color="black", weight=3]; 332[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (EQ == GT)",fontsize=16,color="black",shape="box"];332 -> 396[label="",style="solid", color="black", weight=3]; 333[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) (GT == GT)",fontsize=16,color="black",shape="box"];333 -> 397[label="",style="solid", color="black", weight=3]; 334 -> 79[label="",style="dashed", color="red", weight=0]; 334[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];335[label="[]",fontsize=16,color="green",shape="box"];336[label="yvy331",fontsize=16,color="green",shape="box"];337[label="yvy334",fontsize=16,color="green",shape="box"];338[label="yvy330",fontsize=16,color="green",shape="box"];339[label="yvy332",fontsize=16,color="green",shape="box"];340[label="yvy333",fontsize=16,color="green",shape="box"];341[label="[]",fontsize=16,color="green",shape="box"];342[label="[]",fontsize=16,color="green",shape="box"];343[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] (LT == GT)",fontsize=16,color="black",shape="box"];343 -> 398[label="",style="solid", color="black", weight=3]; 344[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] (EQ == GT)",fontsize=16,color="black",shape="box"];344 -> 399[label="",style="solid", color="black", weight=3]; 345[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] (GT == GT)",fontsize=16,color="black",shape="box"];345 -> 400[label="",style="solid", color="black", weight=3]; 357 -> 119[label="",style="dashed", color="red", weight=0]; 357[label="compare yvy401 yvy501",fontsize=16,color="magenta"];357 -> 410[label="",style="dashed", color="magenta", weight=3]; 357 -> 411[label="",style="dashed", color="magenta", weight=3]; 358[label="yvy500",fontsize=16,color="green",shape="box"];359[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (LT == LT)",fontsize=16,color="black",shape="box"];359 -> 412[label="",style="solid", color="black", weight=3]; 360[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (EQ == LT)",fontsize=16,color="black",shape="box"];360 -> 413[label="",style="solid", color="black", weight=3]; 361[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (GT == LT)",fontsize=16,color="black",shape="box"];361 -> 414[label="",style="solid", color="black", weight=3]; 362[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (yvy400 : yvy401 > [])",fontsize=16,color="black",shape="box"];362 -> 415[label="",style="solid", color="black", weight=3]; 363 -> 833[label="",style="dashed", color="red", weight=0]; 363[label="FiniteMap.mkBalBranch (yvy500 : yvy501) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 [] yvy41) yvy54",fontsize=16,color="magenta"];363 -> 834[label="",style="dashed", color="magenta", weight=3]; 363 -> 835[label="",style="dashed", color="magenta", weight=3]; 364[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 ([] > [])",fontsize=16,color="black",shape="box"];364 -> 418[label="",style="solid", color="black", weight=3]; 365[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];365 -> 419[label="",style="solid", color="black", weight=3]; 366[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];366 -> 420[label="",style="solid", color="black", weight=3]; 367[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];367 -> 421[label="",style="solid", color="black", weight=3]; 368[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];368 -> 422[label="",style="solid", color="black", weight=3]; 369 -> 246[label="",style="dashed", color="red", weight=0]; 369[label="primCompAux yvy4000 yvy3000 (compare yvy4001 yvy3001)",fontsize=16,color="magenta"];369 -> 423[label="",style="dashed", color="magenta", weight=3]; 369 -> 424[label="",style="dashed", color="magenta", weight=3]; 369 -> 425[label="",style="dashed", color="magenta", weight=3]; 370[label="GT",fontsize=16,color="green",shape="box"];371[label="LT",fontsize=16,color="green",shape="box"];372[label="EQ",fontsize=16,color="green",shape="box"];373[label="primCmpFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4162[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];373 -> 4162[label="",style="solid", color="burlywood", weight=9]; 4162 -> 426[label="",style="solid", color="burlywood", weight=3]; 374[label="primCmpChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4163[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];374 -> 4163[label="",style="solid", color="burlywood", weight=9]; 4163 -> 427[label="",style="solid", color="burlywood", weight=3]; 375[label="primCmpInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4164[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];375 -> 4164[label="",style="solid", color="burlywood", weight=9]; 4164 -> 428[label="",style="solid", color="burlywood", weight=3]; 4165[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];375 -> 4165[label="",style="solid", color="burlywood", weight=9]; 4165 -> 429[label="",style="solid", color="burlywood", weight=3]; 376[label="compare () yvy300",fontsize=16,color="burlywood",shape="box"];4166[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];376 -> 4166[label="",style="solid", color="burlywood", weight=9]; 4166 -> 430[label="",style="solid", color="burlywood", weight=3]; 377[label="compare (Integer yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4167[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];377 -> 4167[label="",style="solid", color="burlywood", weight=9]; 4167 -> 431[label="",style="solid", color="burlywood", weight=3]; 378[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];378 -> 432[label="",style="solid", color="black", weight=3]; 379[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];379 -> 433[label="",style="solid", color="black", weight=3]; 380[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];380 -> 434[label="",style="solid", color="black", weight=3]; 381[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];381 -> 435[label="",style="solid", color="black", weight=3]; 382[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];382 -> 436[label="",style="solid", color="black", weight=3]; 383[label="compare3 yvy400 yvy300",fontsize=16,color="black",shape="box"];383 -> 437[label="",style="solid", color="black", weight=3]; 384[label="primCmpDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4168[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];384 -> 4168[label="",style="solid", color="burlywood", weight=9]; 4168 -> 438[label="",style="solid", color="burlywood", weight=3]; 385[label="compare (yvy4000 :% yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4169[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];385 -> 4169[label="",style="solid", color="burlywood", weight=9]; 4169 -> 439[label="",style="solid", color="burlywood", weight=3]; 386[label="LT",fontsize=16,color="green",shape="box"];387[label="yvy56",fontsize=16,color="green",shape="box"];388[label="GT",fontsize=16,color="green",shape="box"];405 -> 119[label="",style="dashed", color="red", weight=0]; 405[label="compare (yvy23 : yvy24) (yvy17 : yvy18)",fontsize=16,color="magenta"];405 -> 440[label="",style="dashed", color="magenta", weight=3]; 405 -> 441[label="",style="dashed", color="magenta", weight=3]; 404[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (yvy59 == LT)",fontsize=16,color="burlywood",shape="triangle"];4170[label="yvy59/LT",fontsize=10,color="white",style="solid",shape="box"];404 -> 4170[label="",style="solid", color="burlywood", weight=9]; 4170 -> 442[label="",style="solid", color="burlywood", weight=3]; 4171[label="yvy59/EQ",fontsize=10,color="white",style="solid",shape="box"];404 -> 4171[label="",style="solid", color="burlywood", weight=9]; 4171 -> 443[label="",style="solid", color="burlywood", weight=3]; 4172[label="yvy59/GT",fontsize=10,color="white",style="solid",shape="box"];404 -> 4172[label="",style="solid", color="burlywood", weight=9]; 4172 -> 444[label="",style="solid", color="burlywood", weight=3]; 389[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] True",fontsize=16,color="black",shape="box"];389 -> 445[label="",style="solid", color="black", weight=3]; 390[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="black",shape="triangle"];390 -> 446[label="",style="solid", color="black", weight=3]; 391 -> 390[label="",style="dashed", color="red", weight=0]; 391[label="FiniteMap.splitGT1 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="magenta"];392[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] True",fontsize=16,color="black",shape="box"];392 -> 447[label="",style="solid", color="black", weight=3]; 393[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="black",shape="triangle"];393 -> 448[label="",style="solid", color="black", weight=3]; 394 -> 393[label="",style="dashed", color="red", weight=0]; 394[label="FiniteMap.splitGT1 [] yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="magenta"];406[label="FiniteMap.splitLT4 FiniteMap.EmptyFM (yvy42 : yvy43)",fontsize=16,color="black",shape="box"];406 -> 449[label="",style="solid", color="black", weight=3]; 407 -> 27[label="",style="dashed", color="red", weight=0]; 407[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy400 yvy401 yvy402 yvy403 yvy404) (yvy42 : yvy43)",fontsize=16,color="magenta"];407 -> 450[label="",style="dashed", color="magenta", weight=3]; 407 -> 451[label="",style="dashed", color="magenta", weight=3]; 407 -> 452[label="",style="dashed", color="magenta", weight=3]; 407 -> 453[label="",style="dashed", color="magenta", weight=3]; 407 -> 454[label="",style="dashed", color="magenta", weight=3]; 407 -> 455[label="",style="dashed", color="magenta", weight=3]; 409 -> 119[label="",style="dashed", color="red", weight=0]; 409[label="compare (yvy42 : yvy43) (yvy36 : yvy37)",fontsize=16,color="magenta"];409 -> 456[label="",style="dashed", color="magenta", weight=3]; 409 -> 457[label="",style="dashed", color="magenta", weight=3]; 408[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (yvy60 == GT)",fontsize=16,color="burlywood",shape="triangle"];4173[label="yvy60/LT",fontsize=10,color="white",style="solid",shape="box"];408 -> 4173[label="",style="solid", color="burlywood", weight=9]; 4173 -> 458[label="",style="solid", color="burlywood", weight=3]; 4174[label="yvy60/EQ",fontsize=10,color="white",style="solid",shape="box"];408 -> 4174[label="",style="solid", color="burlywood", weight=9]; 4174 -> 459[label="",style="solid", color="burlywood", weight=3]; 4175[label="yvy60/GT",fontsize=10,color="white",style="solid",shape="box"];408 -> 4175[label="",style="solid", color="burlywood", weight=9]; 4175 -> 460[label="",style="solid", color="burlywood", weight=3]; 395[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) False",fontsize=16,color="black",shape="triangle"];395 -> 461[label="",style="solid", color="black", weight=3]; 396 -> 395[label="",style="dashed", color="red", weight=0]; 396[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) False",fontsize=16,color="magenta"];397[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) True",fontsize=16,color="black",shape="box"];397 -> 462[label="",style="solid", color="black", weight=3]; 398[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="black",shape="triangle"];398 -> 463[label="",style="solid", color="black", weight=3]; 399 -> 398[label="",style="dashed", color="red", weight=0]; 399[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] False",fontsize=16,color="magenta"];400[label="FiniteMap.splitLT1 [] yvy31 yvy32 yvy33 yvy34 [] True",fontsize=16,color="black",shape="box"];400 -> 464[label="",style="solid", color="black", weight=3]; 410[label="yvy501",fontsize=16,color="green",shape="box"];411[label="yvy401",fontsize=16,color="green",shape="box"];412[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 True",fontsize=16,color="black",shape="box"];412 -> 465[label="",style="solid", color="black", weight=3]; 413[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 False",fontsize=16,color="black",shape="triangle"];413 -> 466[label="",style="solid", color="black", weight=3]; 414 -> 413[label="",style="dashed", color="red", weight=0]; 414[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 False",fontsize=16,color="magenta"];415 -> 467[label="",style="dashed", color="red", weight=0]; 415[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (compare (yvy400 : yvy401) [] == GT)",fontsize=16,color="magenta"];415 -> 468[label="",style="dashed", color="magenta", weight=3]; 834[label="yvy500 : yvy501",fontsize=16,color="green",shape="box"];835 -> 33[label="",style="dashed", color="red", weight=0]; 835[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 [] yvy41",fontsize=16,color="magenta"];835 -> 853[label="",style="dashed", color="magenta", weight=3]; 835 -> 854[label="",style="dashed", color="magenta", weight=3]; 833[label="FiniteMap.mkBalBranch yvy50 yvy51 yvy118 yvy54",fontsize=16,color="black",shape="triangle"];833 -> 855[label="",style="solid", color="black", weight=3]; 418 -> 472[label="",style="dashed", color="red", weight=0]; 418[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 (compare [] [] == GT)",fontsize=16,color="magenta"];418 -> 473[label="",style="dashed", color="magenta", weight=3]; 419 -> 474[label="",style="dashed", color="red", weight=0]; 419[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Pos (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64) == LT)",fontsize=16,color="magenta"];419 -> 475[label="",style="dashed", color="magenta", weight=3]; 420 -> 476[label="",style="dashed", color="red", weight=0]; 420[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64) == LT)",fontsize=16,color="magenta"];420 -> 477[label="",style="dashed", color="magenta", weight=3]; 421 -> 478[label="",style="dashed", color="red", weight=0]; 421[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Neg (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64) == LT)",fontsize=16,color="magenta"];421 -> 479[label="",style="dashed", color="magenta", weight=3]; 422 -> 480[label="",style="dashed", color="red", weight=0]; 422[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64) == LT)",fontsize=16,color="magenta"];422 -> 481[label="",style="dashed", color="magenta", weight=3]; 423 -> 119[label="",style="dashed", color="red", weight=0]; 423[label="compare yvy4001 yvy3001",fontsize=16,color="magenta"];423 -> 482[label="",style="dashed", color="magenta", weight=3]; 423 -> 483[label="",style="dashed", color="magenta", weight=3]; 424[label="yvy3000",fontsize=16,color="green",shape="box"];425[label="yvy4000",fontsize=16,color="green",shape="box"];426[label="primCmpFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4176[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];426 -> 4176[label="",style="solid", color="burlywood", weight=9]; 4176 -> 484[label="",style="solid", color="burlywood", weight=3]; 4177[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];426 -> 4177[label="",style="solid", color="burlywood", weight=9]; 4177 -> 485[label="",style="solid", color="burlywood", weight=3]; 427[label="primCmpChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4178[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];427 -> 4178[label="",style="solid", color="burlywood", weight=9]; 4178 -> 486[label="",style="solid", color="burlywood", weight=3]; 428[label="primCmpInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4179[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];428 -> 4179[label="",style="solid", color="burlywood", weight=9]; 4179 -> 487[label="",style="solid", color="burlywood", weight=3]; 4180[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];428 -> 4180[label="",style="solid", color="burlywood", weight=9]; 4180 -> 488[label="",style="solid", color="burlywood", weight=3]; 429[label="primCmpInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4181[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];429 -> 4181[label="",style="solid", color="burlywood", weight=9]; 4181 -> 489[label="",style="solid", color="burlywood", weight=3]; 4182[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];429 -> 4182[label="",style="solid", color="burlywood", weight=9]; 4182 -> 490[label="",style="solid", color="burlywood", weight=3]; 430[label="compare () ()",fontsize=16,color="black",shape="box"];430 -> 491[label="",style="solid", color="black", weight=3]; 431[label="compare (Integer yvy4000) (Integer yvy3000)",fontsize=16,color="black",shape="box"];431 -> 492[label="",style="solid", color="black", weight=3]; 432[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4183[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];432 -> 4183[label="",style="solid", color="burlywood", weight=9]; 4183 -> 493[label="",style="solid", color="burlywood", weight=3]; 433[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4184[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];433 -> 4184[label="",style="solid", color="burlywood", weight=9]; 4184 -> 494[label="",style="solid", color="burlywood", weight=3]; 434[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4185[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];434 -> 4185[label="",style="solid", color="burlywood", weight=9]; 4185 -> 495[label="",style="solid", color="burlywood", weight=3]; 4186[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];434 -> 4186[label="",style="solid", color="burlywood", weight=9]; 4186 -> 496[label="",style="solid", color="burlywood", weight=3]; 435[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4187[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];435 -> 4187[label="",style="solid", color="burlywood", weight=9]; 4187 -> 497[label="",style="solid", color="burlywood", weight=3]; 4188[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];435 -> 4188[label="",style="solid", color="burlywood", weight=9]; 4188 -> 498[label="",style="solid", color="burlywood", weight=3]; 436[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4189[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];436 -> 4189[label="",style="solid", color="burlywood", weight=9]; 4189 -> 499[label="",style="solid", color="burlywood", weight=3]; 4190[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];436 -> 4190[label="",style="solid", color="burlywood", weight=9]; 4190 -> 500[label="",style="solid", color="burlywood", weight=3]; 437[label="compare2 yvy400 yvy300 (yvy400 == yvy300)",fontsize=16,color="burlywood",shape="box"];4191[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];437 -> 4191[label="",style="solid", color="burlywood", weight=9]; 4191 -> 501[label="",style="solid", color="burlywood", weight=3]; 4192[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];437 -> 4192[label="",style="solid", color="burlywood", weight=9]; 4192 -> 502[label="",style="solid", color="burlywood", weight=3]; 4193[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];437 -> 4193[label="",style="solid", color="burlywood", weight=9]; 4193 -> 503[label="",style="solid", color="burlywood", weight=3]; 438[label="primCmpDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4194[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];438 -> 4194[label="",style="solid", color="burlywood", weight=9]; 4194 -> 504[label="",style="solid", color="burlywood", weight=3]; 4195[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];438 -> 4195[label="",style="solid", color="burlywood", weight=9]; 4195 -> 505[label="",style="solid", color="burlywood", weight=3]; 439[label="compare (yvy4000 :% yvy4001) (yvy3000 :% yvy3001)",fontsize=16,color="black",shape="box"];439 -> 506[label="",style="solid", color="black", weight=3]; 440[label="yvy17 : yvy18",fontsize=16,color="green",shape="box"];441[label="yvy23 : yvy24",fontsize=16,color="green",shape="box"];442[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (LT == LT)",fontsize=16,color="black",shape="box"];442 -> 507[label="",style="solid", color="black", weight=3]; 443[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (EQ == LT)",fontsize=16,color="black",shape="box"];443 -> 508[label="",style="solid", color="black", weight=3]; 444[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) (GT == LT)",fontsize=16,color="black",shape="box"];444 -> 509[label="",style="solid", color="black", weight=3]; 445 -> 12[label="",style="dashed", color="red", weight=0]; 445[label="FiniteMap.mkVBalBranch (yvy300 : yvy301) yvy31 (FiniteMap.splitGT yvy33 []) yvy34",fontsize=16,color="magenta"];445 -> 510[label="",style="dashed", color="magenta", weight=3]; 445 -> 511[label="",style="dashed", color="magenta", weight=3]; 445 -> 512[label="",style="dashed", color="magenta", weight=3]; 445 -> 513[label="",style="dashed", color="magenta", weight=3]; 446[label="FiniteMap.splitGT0 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] otherwise",fontsize=16,color="black",shape="box"];446 -> 514[label="",style="solid", color="black", weight=3]; 447 -> 12[label="",style="dashed", color="red", weight=0]; 447[label="FiniteMap.mkVBalBranch [] yvy31 (FiniteMap.splitGT yvy33 []) yvy34",fontsize=16,color="magenta"];447 -> 515[label="",style="dashed", color="magenta", weight=3]; 447 -> 516[label="",style="dashed", color="magenta", weight=3]; 447 -> 517[label="",style="dashed", color="magenta", weight=3]; 447 -> 518[label="",style="dashed", color="magenta", weight=3]; 448[label="FiniteMap.splitGT0 [] yvy31 yvy32 yvy33 yvy34 [] otherwise",fontsize=16,color="black",shape="box"];448 -> 519[label="",style="solid", color="black", weight=3]; 449 -> 79[label="",style="dashed", color="red", weight=0]; 449[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];450[label="yvy42 : yvy43",fontsize=16,color="green",shape="box"];451[label="yvy401",fontsize=16,color="green",shape="box"];452[label="yvy404",fontsize=16,color="green",shape="box"];453[label="yvy400",fontsize=16,color="green",shape="box"];454[label="yvy402",fontsize=16,color="green",shape="box"];455[label="yvy403",fontsize=16,color="green",shape="box"];456[label="yvy36 : yvy37",fontsize=16,color="green",shape="box"];457[label="yvy42 : yvy43",fontsize=16,color="green",shape="box"];458[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (LT == GT)",fontsize=16,color="black",shape="box"];458 -> 520[label="",style="solid", color="black", weight=3]; 459[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (EQ == GT)",fontsize=16,color="black",shape="box"];459 -> 521[label="",style="solid", color="black", weight=3]; 460[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) (GT == GT)",fontsize=16,color="black",shape="box"];460 -> 522[label="",style="solid", color="black", weight=3]; 461[label="FiniteMap.splitLT0 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) otherwise",fontsize=16,color="black",shape="box"];461 -> 523[label="",style="solid", color="black", weight=3]; 462 -> 12[label="",style="dashed", color="red", weight=0]; 462[label="FiniteMap.mkVBalBranch [] yvy31 yvy33 (FiniteMap.splitLT yvy34 (yvy400 : yvy401))",fontsize=16,color="magenta"];462 -> 524[label="",style="dashed", color="magenta", weight=3]; 462 -> 525[label="",style="dashed", color="magenta", weight=3]; 462 -> 526[label="",style="dashed", color="magenta", weight=3]; 462 -> 527[label="",style="dashed", color="magenta", weight=3]; 463[label="FiniteMap.splitLT0 [] yvy31 yvy32 yvy33 yvy34 [] otherwise",fontsize=16,color="black",shape="box"];463 -> 528[label="",style="solid", color="black", weight=3]; 464 -> 12[label="",style="dashed", color="red", weight=0]; 464[label="FiniteMap.mkVBalBranch [] yvy31 yvy33 (FiniteMap.splitLT yvy34 [])",fontsize=16,color="magenta"];464 -> 529[label="",style="dashed", color="magenta", weight=3]; 464 -> 530[label="",style="dashed", color="magenta", weight=3]; 464 -> 531[label="",style="dashed", color="magenta", weight=3]; 464 -> 532[label="",style="dashed", color="magenta", weight=3]; 465 -> 833[label="",style="dashed", color="red", weight=0]; 465[label="FiniteMap.mkBalBranch (yvy500 : yvy501) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (yvy400 : yvy401) yvy41) yvy54",fontsize=16,color="magenta"];465 -> 838[label="",style="dashed", color="magenta", weight=3]; 465 -> 839[label="",style="dashed", color="magenta", weight=3]; 466[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (yvy400 : yvy401 > yvy500 : yvy501)",fontsize=16,color="black",shape="box"];466 -> 534[label="",style="solid", color="black", weight=3]; 468 -> 119[label="",style="dashed", color="red", weight=0]; 468[label="compare (yvy400 : yvy401) []",fontsize=16,color="magenta"];468 -> 535[label="",style="dashed", color="magenta", weight=3]; 468 -> 536[label="",style="dashed", color="magenta", weight=3]; 467[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (yvy62 == GT)",fontsize=16,color="burlywood",shape="triangle"];4196[label="yvy62/LT",fontsize=10,color="white",style="solid",shape="box"];467 -> 4196[label="",style="solid", color="burlywood", weight=9]; 4196 -> 537[label="",style="solid", color="burlywood", weight=3]; 4197[label="yvy62/EQ",fontsize=10,color="white",style="solid",shape="box"];467 -> 4197[label="",style="solid", color="burlywood", weight=9]; 4197 -> 538[label="",style="solid", color="burlywood", weight=3]; 4198[label="yvy62/GT",fontsize=10,color="white",style="solid",shape="box"];467 -> 4198[label="",style="solid", color="burlywood", weight=9]; 4198 -> 539[label="",style="solid", color="burlywood", weight=3]; 853[label="[]",fontsize=16,color="green",shape="box"];854[label="yvy53",fontsize=16,color="green",shape="box"];855[label="FiniteMap.mkBalBranch6 yvy50 yvy51 yvy118 yvy54",fontsize=16,color="black",shape="box"];855 -> 860[label="",style="solid", color="black", weight=3]; 473 -> 119[label="",style="dashed", color="red", weight=0]; 473[label="compare [] []",fontsize=16,color="magenta"];473 -> 541[label="",style="dashed", color="magenta", weight=3]; 473 -> 542[label="",style="dashed", color="magenta", weight=3]; 472[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 (yvy63 == GT)",fontsize=16,color="burlywood",shape="triangle"];4199[label="yvy63/LT",fontsize=10,color="white",style="solid",shape="box"];472 -> 4199[label="",style="solid", color="burlywood", weight=9]; 4199 -> 543[label="",style="solid", color="burlywood", weight=3]; 4200[label="yvy63/EQ",fontsize=10,color="white",style="solid",shape="box"];472 -> 4200[label="",style="solid", color="burlywood", weight=9]; 4200 -> 544[label="",style="solid", color="burlywood", weight=3]; 4201[label="yvy63/GT",fontsize=10,color="white",style="solid",shape="box"];472 -> 4201[label="",style="solid", color="burlywood", weight=9]; 4201 -> 545[label="",style="solid", color="burlywood", weight=3]; 475 -> 375[label="",style="dashed", color="red", weight=0]; 475[label="primCmpInt (Pos (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];475 -> 546[label="",style="dashed", color="magenta", weight=3]; 475 -> 547[label="",style="dashed", color="magenta", weight=3]; 474[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (yvy64 == LT)",fontsize=16,color="burlywood",shape="triangle"];4202[label="yvy64/LT",fontsize=10,color="white",style="solid",shape="box"];474 -> 4202[label="",style="solid", color="burlywood", weight=9]; 4202 -> 548[label="",style="solid", color="burlywood", weight=3]; 4203[label="yvy64/EQ",fontsize=10,color="white",style="solid",shape="box"];474 -> 4203[label="",style="solid", color="burlywood", weight=9]; 4203 -> 549[label="",style="solid", color="burlywood", weight=3]; 4204[label="yvy64/GT",fontsize=10,color="white",style="solid",shape="box"];474 -> 4204[label="",style="solid", color="burlywood", weight=9]; 4204 -> 550[label="",style="solid", color="burlywood", weight=3]; 477 -> 375[label="",style="dashed", color="red", weight=0]; 477[label="primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="magenta"];477 -> 551[label="",style="dashed", color="magenta", weight=3]; 477 -> 552[label="",style="dashed", color="magenta", weight=3]; 476[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (yvy65 == LT)",fontsize=16,color="burlywood",shape="triangle"];4205[label="yvy65/LT",fontsize=10,color="white",style="solid",shape="box"];476 -> 4205[label="",style="solid", color="burlywood", weight=9]; 4205 -> 553[label="",style="solid", color="burlywood", weight=3]; 4206[label="yvy65/EQ",fontsize=10,color="white",style="solid",shape="box"];476 -> 4206[label="",style="solid", color="burlywood", weight=9]; 4206 -> 554[label="",style="solid", color="burlywood", weight=3]; 4207[label="yvy65/GT",fontsize=10,color="white",style="solid",shape="box"];476 -> 4207[label="",style="solid", color="burlywood", weight=9]; 4207 -> 555[label="",style="solid", color="burlywood", weight=3]; 479 -> 375[label="",style="dashed", color="red", weight=0]; 479[label="primCmpInt (Neg (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];479 -> 556[label="",style="dashed", color="magenta", weight=3]; 479 -> 557[label="",style="dashed", color="magenta", weight=3]; 478[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (yvy66 == LT)",fontsize=16,color="burlywood",shape="triangle"];4208[label="yvy66/LT",fontsize=10,color="white",style="solid",shape="box"];478 -> 4208[label="",style="solid", color="burlywood", weight=9]; 4208 -> 558[label="",style="solid", color="burlywood", weight=3]; 4209[label="yvy66/EQ",fontsize=10,color="white",style="solid",shape="box"];478 -> 4209[label="",style="solid", color="burlywood", weight=9]; 4209 -> 559[label="",style="solid", color="burlywood", weight=3]; 4210[label="yvy66/GT",fontsize=10,color="white",style="solid",shape="box"];478 -> 4210[label="",style="solid", color="burlywood", weight=9]; 4210 -> 560[label="",style="solid", color="burlywood", weight=3]; 481 -> 375[label="",style="dashed", color="red", weight=0]; 481[label="primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="magenta"];481 -> 561[label="",style="dashed", color="magenta", weight=3]; 481 -> 562[label="",style="dashed", color="magenta", weight=3]; 480[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (yvy67 == LT)",fontsize=16,color="burlywood",shape="triangle"];4211[label="yvy67/LT",fontsize=10,color="white",style="solid",shape="box"];480 -> 4211[label="",style="solid", color="burlywood", weight=9]; 4211 -> 563[label="",style="solid", color="burlywood", weight=3]; 4212[label="yvy67/EQ",fontsize=10,color="white",style="solid",shape="box"];480 -> 4212[label="",style="solid", color="burlywood", weight=9]; 4212 -> 564[label="",style="solid", color="burlywood", weight=3]; 4213[label="yvy67/GT",fontsize=10,color="white",style="solid",shape="box"];480 -> 4213[label="",style="solid", color="burlywood", weight=9]; 4213 -> 565[label="",style="solid", color="burlywood", weight=3]; 482[label="yvy3001",fontsize=16,color="green",shape="box"];483[label="yvy4001",fontsize=16,color="green",shape="box"];484[label="primCmpFloat (Float yvy4000 (Pos yvy40010)) yvy300",fontsize=16,color="burlywood",shape="box"];4214[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];484 -> 4214[label="",style="solid", color="burlywood", weight=9]; 4214 -> 566[label="",style="solid", color="burlywood", weight=3]; 485[label="primCmpFloat (Float yvy4000 (Neg yvy40010)) yvy300",fontsize=16,color="burlywood",shape="box"];4215[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];485 -> 4215[label="",style="solid", color="burlywood", weight=9]; 4215 -> 567[label="",style="solid", color="burlywood", weight=3]; 486[label="primCmpChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];486 -> 568[label="",style="solid", color="black", weight=3]; 487[label="primCmpInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4216[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];487 -> 4216[label="",style="solid", color="burlywood", weight=9]; 4216 -> 569[label="",style="solid", color="burlywood", weight=3]; 4217[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];487 -> 4217[label="",style="solid", color="burlywood", weight=9]; 4217 -> 570[label="",style="solid", color="burlywood", weight=3]; 488[label="primCmpInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4218[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];488 -> 4218[label="",style="solid", color="burlywood", weight=9]; 4218 -> 571[label="",style="solid", color="burlywood", weight=3]; 4219[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];488 -> 4219[label="",style="solid", color="burlywood", weight=9]; 4219 -> 572[label="",style="solid", color="burlywood", weight=3]; 489[label="primCmpInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4220[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];489 -> 4220[label="",style="solid", color="burlywood", weight=9]; 4220 -> 573[label="",style="solid", color="burlywood", weight=3]; 4221[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];489 -> 4221[label="",style="solid", color="burlywood", weight=9]; 4221 -> 574[label="",style="solid", color="burlywood", weight=3]; 490[label="primCmpInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4222[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];490 -> 4222[label="",style="solid", color="burlywood", weight=9]; 4222 -> 575[label="",style="solid", color="burlywood", weight=3]; 4223[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];490 -> 4223[label="",style="solid", color="burlywood", weight=9]; 4223 -> 576[label="",style="solid", color="burlywood", weight=3]; 491[label="EQ",fontsize=16,color="green",shape="box"];492 -> 375[label="",style="dashed", color="red", weight=0]; 492[label="primCmpInt yvy4000 yvy3000",fontsize=16,color="magenta"];492 -> 577[label="",style="dashed", color="magenta", weight=3]; 492 -> 578[label="",style="dashed", color="magenta", weight=3]; 493[label="compare2 (yvy4000,yvy4001) yvy300 ((yvy4000,yvy4001) == yvy300)",fontsize=16,color="burlywood",shape="box"];4224[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];493 -> 4224[label="",style="solid", color="burlywood", weight=9]; 4224 -> 579[label="",style="solid", color="burlywood", weight=3]; 494[label="compare2 (yvy4000,yvy4001,yvy4002) yvy300 ((yvy4000,yvy4001,yvy4002) == yvy300)",fontsize=16,color="burlywood",shape="box"];4225[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];494 -> 4225[label="",style="solid", color="burlywood", weight=9]; 4225 -> 580[label="",style="solid", color="burlywood", weight=3]; 495[label="compare2 False yvy300 (False == yvy300)",fontsize=16,color="burlywood",shape="box"];4226[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];495 -> 4226[label="",style="solid", color="burlywood", weight=9]; 4226 -> 581[label="",style="solid", color="burlywood", weight=3]; 4227[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];495 -> 4227[label="",style="solid", color="burlywood", weight=9]; 4227 -> 582[label="",style="solid", color="burlywood", weight=3]; 496[label="compare2 True yvy300 (True == yvy300)",fontsize=16,color="burlywood",shape="box"];4228[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];496 -> 4228[label="",style="solid", color="burlywood", weight=9]; 4228 -> 583[label="",style="solid", color="burlywood", weight=3]; 4229[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];496 -> 4229[label="",style="solid", color="burlywood", weight=9]; 4229 -> 584[label="",style="solid", color="burlywood", weight=3]; 497[label="compare2 Nothing yvy300 (Nothing == yvy300)",fontsize=16,color="burlywood",shape="box"];4230[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];497 -> 4230[label="",style="solid", color="burlywood", weight=9]; 4230 -> 585[label="",style="solid", color="burlywood", weight=3]; 4231[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];497 -> 4231[label="",style="solid", color="burlywood", weight=9]; 4231 -> 586[label="",style="solid", color="burlywood", weight=3]; 498[label="compare2 (Just yvy4000) yvy300 (Just yvy4000 == yvy300)",fontsize=16,color="burlywood",shape="box"];4232[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];498 -> 4232[label="",style="solid", color="burlywood", weight=9]; 4232 -> 587[label="",style="solid", color="burlywood", weight=3]; 4233[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];498 -> 4233[label="",style="solid", color="burlywood", weight=9]; 4233 -> 588[label="",style="solid", color="burlywood", weight=3]; 499[label="compare2 (Left yvy4000) yvy300 (Left yvy4000 == yvy300)",fontsize=16,color="burlywood",shape="box"];4234[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];499 -> 4234[label="",style="solid", color="burlywood", weight=9]; 4234 -> 589[label="",style="solid", color="burlywood", weight=3]; 4235[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];499 -> 4235[label="",style="solid", color="burlywood", weight=9]; 4235 -> 590[label="",style="solid", color="burlywood", weight=3]; 500[label="compare2 (Right yvy4000) yvy300 (Right yvy4000 == yvy300)",fontsize=16,color="burlywood",shape="box"];4236[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];500 -> 4236[label="",style="solid", color="burlywood", weight=9]; 4236 -> 591[label="",style="solid", color="burlywood", weight=3]; 4237[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];500 -> 4237[label="",style="solid", color="burlywood", weight=9]; 4237 -> 592[label="",style="solid", color="burlywood", weight=3]; 501[label="compare2 LT yvy300 (LT == yvy300)",fontsize=16,color="burlywood",shape="box"];4238[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];501 -> 4238[label="",style="solid", color="burlywood", weight=9]; 4238 -> 593[label="",style="solid", color="burlywood", weight=3]; 4239[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];501 -> 4239[label="",style="solid", color="burlywood", weight=9]; 4239 -> 594[label="",style="solid", color="burlywood", weight=3]; 4240[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];501 -> 4240[label="",style="solid", color="burlywood", weight=9]; 4240 -> 595[label="",style="solid", color="burlywood", weight=3]; 502[label="compare2 EQ yvy300 (EQ == yvy300)",fontsize=16,color="burlywood",shape="box"];4241[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];502 -> 4241[label="",style="solid", color="burlywood", weight=9]; 4241 -> 596[label="",style="solid", color="burlywood", weight=3]; 4242[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];502 -> 4242[label="",style="solid", color="burlywood", weight=9]; 4242 -> 597[label="",style="solid", color="burlywood", weight=3]; 4243[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];502 -> 4243[label="",style="solid", color="burlywood", weight=9]; 4243 -> 598[label="",style="solid", color="burlywood", weight=3]; 503[label="compare2 GT yvy300 (GT == yvy300)",fontsize=16,color="burlywood",shape="box"];4244[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];503 -> 4244[label="",style="solid", color="burlywood", weight=9]; 4244 -> 599[label="",style="solid", color="burlywood", weight=3]; 4245[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];503 -> 4245[label="",style="solid", color="burlywood", weight=9]; 4245 -> 600[label="",style="solid", color="burlywood", weight=3]; 4246[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];503 -> 4246[label="",style="solid", color="burlywood", weight=9]; 4246 -> 601[label="",style="solid", color="burlywood", weight=3]; 504[label="primCmpDouble (Double yvy4000 (Pos yvy40010)) yvy300",fontsize=16,color="burlywood",shape="box"];4247[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];504 -> 4247[label="",style="solid", color="burlywood", weight=9]; 4247 -> 602[label="",style="solid", color="burlywood", weight=3]; 505[label="primCmpDouble (Double yvy4000 (Neg yvy40010)) yvy300",fontsize=16,color="burlywood",shape="box"];4248[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];505 -> 4248[label="",style="solid", color="burlywood", weight=9]; 4248 -> 603[label="",style="solid", color="burlywood", weight=3]; 506[label="compare (yvy4000 * yvy3001) (yvy3000 * yvy4001)",fontsize=16,color="blue",shape="box"];4249[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];506 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 604[label="",style="solid", color="blue", weight=3]; 4250[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];506 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 605[label="",style="solid", color="blue", weight=3]; 507[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) True",fontsize=16,color="black",shape="box"];507 -> 606[label="",style="solid", color="black", weight=3]; 508[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) False",fontsize=16,color="black",shape="triangle"];508 -> 607[label="",style="solid", color="black", weight=3]; 509 -> 508[label="",style="dashed", color="red", weight=0]; 509[label="FiniteMap.splitGT1 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) False",fontsize=16,color="magenta"];510[label="yvy300 : yvy301",fontsize=16,color="green",shape="box"];511[label="yvy34",fontsize=16,color="green",shape="box"];512[label="FiniteMap.splitGT yvy33 []",fontsize=16,color="burlywood",shape="triangle"];4251[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];512 -> 4251[label="",style="solid", color="burlywood", weight=9]; 4251 -> 608[label="",style="solid", color="burlywood", weight=3]; 4252[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];512 -> 4252[label="",style="solid", color="burlywood", weight=9]; 4252 -> 609[label="",style="solid", color="burlywood", weight=3]; 513[label="yvy31",fontsize=16,color="green",shape="box"];514[label="FiniteMap.splitGT0 (yvy300 : yvy301) yvy31 yvy32 yvy33 yvy34 [] True",fontsize=16,color="black",shape="box"];514 -> 610[label="",style="solid", color="black", weight=3]; 515[label="[]",fontsize=16,color="green",shape="box"];516[label="yvy34",fontsize=16,color="green",shape="box"];517 -> 512[label="",style="dashed", color="red", weight=0]; 517[label="FiniteMap.splitGT yvy33 []",fontsize=16,color="magenta"];518[label="yvy31",fontsize=16,color="green",shape="box"];519[label="FiniteMap.splitGT0 [] yvy31 yvy32 yvy33 yvy34 [] True",fontsize=16,color="black",shape="box"];519 -> 611[label="",style="solid", color="black", weight=3]; 520[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) False",fontsize=16,color="black",shape="triangle"];520 -> 612[label="",style="solid", color="black", weight=3]; 521 -> 520[label="",style="dashed", color="red", weight=0]; 521[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) False",fontsize=16,color="magenta"];522[label="FiniteMap.splitLT1 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) True",fontsize=16,color="black",shape="box"];522 -> 613[label="",style="solid", color="black", weight=3]; 523[label="FiniteMap.splitLT0 [] yvy31 yvy32 yvy33 yvy34 (yvy400 : yvy401) True",fontsize=16,color="black",shape="box"];523 -> 614[label="",style="solid", color="black", weight=3]; 524[label="[]",fontsize=16,color="green",shape="box"];525 -> 351[label="",style="dashed", color="red", weight=0]; 525[label="FiniteMap.splitLT yvy34 (yvy400 : yvy401)",fontsize=16,color="magenta"];525 -> 615[label="",style="dashed", color="magenta", weight=3]; 525 -> 616[label="",style="dashed", color="magenta", weight=3]; 525 -> 617[label="",style="dashed", color="magenta", weight=3]; 526[label="yvy33",fontsize=16,color="green",shape="box"];527[label="yvy31",fontsize=16,color="green",shape="box"];528[label="FiniteMap.splitLT0 [] yvy31 yvy32 yvy33 yvy34 [] True",fontsize=16,color="black",shape="box"];528 -> 618[label="",style="solid", color="black", weight=3]; 529[label="[]",fontsize=16,color="green",shape="box"];530 -> 108[label="",style="dashed", color="red", weight=0]; 530[label="FiniteMap.splitLT yvy34 []",fontsize=16,color="magenta"];530 -> 619[label="",style="dashed", color="magenta", weight=3]; 531[label="yvy33",fontsize=16,color="green",shape="box"];532[label="yvy31",fontsize=16,color="green",shape="box"];838[label="yvy500 : yvy501",fontsize=16,color="green",shape="box"];839 -> 33[label="",style="dashed", color="red", weight=0]; 839[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (yvy400 : yvy401) yvy41",fontsize=16,color="magenta"];839 -> 856[label="",style="dashed", color="magenta", weight=3]; 839 -> 857[label="",style="dashed", color="magenta", weight=3]; 534 -> 622[label="",style="dashed", color="red", weight=0]; 534[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (compare (yvy400 : yvy401) (yvy500 : yvy501) == GT)",fontsize=16,color="magenta"];534 -> 623[label="",style="dashed", color="magenta", weight=3]; 535[label="[]",fontsize=16,color="green",shape="box"];536[label="yvy400 : yvy401",fontsize=16,color="green",shape="box"];537[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (LT == GT)",fontsize=16,color="black",shape="box"];537 -> 624[label="",style="solid", color="black", weight=3]; 538[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (EQ == GT)",fontsize=16,color="black",shape="box"];538 -> 625[label="",style="solid", color="black", weight=3]; 539[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (GT == GT)",fontsize=16,color="black",shape="box"];539 -> 626[label="",style="solid", color="black", weight=3]; 860[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54 < Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];860 -> 863[label="",style="solid", color="black", weight=3]; 541[label="[]",fontsize=16,color="green",shape="box"];542[label="[]",fontsize=16,color="green",shape="box"];543[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 (LT == GT)",fontsize=16,color="black",shape="box"];543 -> 628[label="",style="solid", color="black", weight=3]; 544[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 (EQ == GT)",fontsize=16,color="black",shape="box"];544 -> 629[label="",style="solid", color="black", weight=3]; 545[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 (GT == GT)",fontsize=16,color="black",shape="box"];545 -> 630[label="",style="solid", color="black", weight=3]; 546[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];546 -> 631[label="",style="solid", color="black", weight=3]; 547[label="Pos (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];547 -> 632[label="",style="dashed", color="green", weight=3]; 548[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (LT == LT)",fontsize=16,color="black",shape="box"];548 -> 633[label="",style="solid", color="black", weight=3]; 549[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (EQ == LT)",fontsize=16,color="black",shape="box"];549 -> 634[label="",style="solid", color="black", weight=3]; 550[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (GT == LT)",fontsize=16,color="black",shape="box"];550 -> 635[label="",style="solid", color="black", weight=3]; 551[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];551 -> 636[label="",style="solid", color="black", weight=3]; 552[label="Pos Zero",fontsize=16,color="green",shape="box"];553[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (LT == LT)",fontsize=16,color="black",shape="box"];553 -> 637[label="",style="solid", color="black", weight=3]; 554[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (EQ == LT)",fontsize=16,color="black",shape="box"];554 -> 638[label="",style="solid", color="black", weight=3]; 555[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (GT == LT)",fontsize=16,color="black",shape="box"];555 -> 639[label="",style="solid", color="black", weight=3]; 556[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];556 -> 640[label="",style="solid", color="black", weight=3]; 557[label="Neg (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];557 -> 641[label="",style="dashed", color="green", weight=3]; 558[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (LT == LT)",fontsize=16,color="black",shape="box"];558 -> 642[label="",style="solid", color="black", weight=3]; 559[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (EQ == LT)",fontsize=16,color="black",shape="box"];559 -> 643[label="",style="solid", color="black", weight=3]; 560[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (GT == LT)",fontsize=16,color="black",shape="box"];560 -> 644[label="",style="solid", color="black", weight=3]; 561[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];561 -> 645[label="",style="solid", color="black", weight=3]; 562[label="Neg Zero",fontsize=16,color="green",shape="box"];563[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (LT == LT)",fontsize=16,color="black",shape="box"];563 -> 646[label="",style="solid", color="black", weight=3]; 564[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (EQ == LT)",fontsize=16,color="black",shape="box"];564 -> 647[label="",style="solid", color="black", weight=3]; 565[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (GT == LT)",fontsize=16,color="black",shape="box"];565 -> 648[label="",style="solid", color="black", weight=3]; 566[label="primCmpFloat (Float yvy4000 (Pos yvy40010)) (Float yvy3000 yvy3001)",fontsize=16,color="burlywood",shape="box"];4253[label="yvy3001/Pos yvy30010",fontsize=10,color="white",style="solid",shape="box"];566 -> 4253[label="",style="solid", color="burlywood", weight=9]; 4253 -> 649[label="",style="solid", color="burlywood", weight=3]; 4254[label="yvy3001/Neg yvy30010",fontsize=10,color="white",style="solid",shape="box"];566 -> 4254[label="",style="solid", color="burlywood", weight=9]; 4254 -> 650[label="",style="solid", color="burlywood", weight=3]; 567[label="primCmpFloat (Float yvy4000 (Neg yvy40010)) (Float yvy3000 yvy3001)",fontsize=16,color="burlywood",shape="box"];4255[label="yvy3001/Pos yvy30010",fontsize=10,color="white",style="solid",shape="box"];567 -> 4255[label="",style="solid", color="burlywood", weight=9]; 4255 -> 651[label="",style="solid", color="burlywood", weight=3]; 4256[label="yvy3001/Neg yvy30010",fontsize=10,color="white",style="solid",shape="box"];567 -> 4256[label="",style="solid", color="burlywood", weight=9]; 4256 -> 652[label="",style="solid", color="burlywood", weight=3]; 568[label="primCmpNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4257[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];568 -> 4257[label="",style="solid", color="burlywood", weight=9]; 4257 -> 653[label="",style="solid", color="burlywood", weight=3]; 4258[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];568 -> 4258[label="",style="solid", color="burlywood", weight=9]; 4258 -> 654[label="",style="solid", color="burlywood", weight=3]; 569[label="primCmpInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];569 -> 655[label="",style="solid", color="black", weight=3]; 570[label="primCmpInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];570 -> 656[label="",style="solid", color="black", weight=3]; 571[label="primCmpInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4259[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];571 -> 4259[label="",style="solid", color="burlywood", weight=9]; 4259 -> 657[label="",style="solid", color="burlywood", weight=3]; 4260[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];571 -> 4260[label="",style="solid", color="burlywood", weight=9]; 4260 -> 658[label="",style="solid", color="burlywood", weight=3]; 572[label="primCmpInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4261[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];572 -> 4261[label="",style="solid", color="burlywood", weight=9]; 4261 -> 659[label="",style="solid", color="burlywood", weight=3]; 4262[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];572 -> 4262[label="",style="solid", color="burlywood", weight=9]; 4262 -> 660[label="",style="solid", color="burlywood", weight=3]; 573[label="primCmpInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];573 -> 661[label="",style="solid", color="black", weight=3]; 574[label="primCmpInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];574 -> 662[label="",style="solid", color="black", weight=3]; 575[label="primCmpInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4263[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];575 -> 4263[label="",style="solid", color="burlywood", weight=9]; 4263 -> 663[label="",style="solid", color="burlywood", weight=3]; 4264[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];575 -> 4264[label="",style="solid", color="burlywood", weight=9]; 4264 -> 664[label="",style="solid", color="burlywood", weight=3]; 576[label="primCmpInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4265[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];576 -> 4265[label="",style="solid", color="burlywood", weight=9]; 4265 -> 665[label="",style="solid", color="burlywood", weight=3]; 4266[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];576 -> 4266[label="",style="solid", color="burlywood", weight=9]; 4266 -> 666[label="",style="solid", color="burlywood", weight=3]; 577[label="yvy3000",fontsize=16,color="green",shape="box"];578[label="yvy4000",fontsize=16,color="green",shape="box"];579[label="compare2 (yvy4000,yvy4001) (yvy3000,yvy3001) ((yvy4000,yvy4001) == (yvy3000,yvy3001))",fontsize=16,color="black",shape="box"];579 -> 667[label="",style="solid", color="black", weight=3]; 580[label="compare2 (yvy4000,yvy4001,yvy4002) (yvy3000,yvy3001,yvy3002) ((yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002))",fontsize=16,color="black",shape="box"];580 -> 668[label="",style="solid", color="black", weight=3]; 581[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];581 -> 669[label="",style="solid", color="black", weight=3]; 582[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];582 -> 670[label="",style="solid", color="black", weight=3]; 583[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];583 -> 671[label="",style="solid", color="black", weight=3]; 584[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];584 -> 672[label="",style="solid", color="black", weight=3]; 585[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];585 -> 673[label="",style="solid", color="black", weight=3]; 586[label="compare2 Nothing (Just yvy3000) (Nothing == Just yvy3000)",fontsize=16,color="black",shape="box"];586 -> 674[label="",style="solid", color="black", weight=3]; 587[label="compare2 (Just yvy4000) Nothing (Just yvy4000 == Nothing)",fontsize=16,color="black",shape="box"];587 -> 675[label="",style="solid", color="black", weight=3]; 588[label="compare2 (Just yvy4000) (Just yvy3000) (Just yvy4000 == Just yvy3000)",fontsize=16,color="black",shape="box"];588 -> 676[label="",style="solid", color="black", weight=3]; 589[label="compare2 (Left yvy4000) (Left yvy3000) (Left yvy4000 == Left yvy3000)",fontsize=16,color="black",shape="box"];589 -> 677[label="",style="solid", color="black", weight=3]; 590[label="compare2 (Left yvy4000) (Right yvy3000) (Left yvy4000 == Right yvy3000)",fontsize=16,color="black",shape="box"];590 -> 678[label="",style="solid", color="black", weight=3]; 591[label="compare2 (Right yvy4000) (Left yvy3000) (Right yvy4000 == Left yvy3000)",fontsize=16,color="black",shape="box"];591 -> 679[label="",style="solid", color="black", weight=3]; 592[label="compare2 (Right yvy4000) (Right yvy3000) (Right yvy4000 == Right yvy3000)",fontsize=16,color="black",shape="box"];592 -> 680[label="",style="solid", color="black", weight=3]; 593[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];593 -> 681[label="",style="solid", color="black", weight=3]; 594[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];594 -> 682[label="",style="solid", color="black", weight=3]; 595[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];595 -> 683[label="",style="solid", color="black", weight=3]; 596[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];596 -> 684[label="",style="solid", color="black", weight=3]; 597[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];597 -> 685[label="",style="solid", color="black", weight=3]; 598[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];598 -> 686[label="",style="solid", color="black", weight=3]; 599[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];599 -> 687[label="",style="solid", color="black", weight=3]; 600[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];600 -> 688[label="",style="solid", color="black", weight=3]; 601[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];601 -> 689[label="",style="solid", color="black", weight=3]; 602[label="primCmpDouble (Double yvy4000 (Pos yvy40010)) (Double yvy3000 yvy3001)",fontsize=16,color="burlywood",shape="box"];4267[label="yvy3001/Pos yvy30010",fontsize=10,color="white",style="solid",shape="box"];602 -> 4267[label="",style="solid", color="burlywood", weight=9]; 4267 -> 690[label="",style="solid", color="burlywood", weight=3]; 4268[label="yvy3001/Neg yvy30010",fontsize=10,color="white",style="solid",shape="box"];602 -> 4268[label="",style="solid", color="burlywood", weight=9]; 4268 -> 691[label="",style="solid", color="burlywood", weight=3]; 603[label="primCmpDouble (Double yvy4000 (Neg yvy40010)) (Double yvy3000 yvy3001)",fontsize=16,color="burlywood",shape="box"];4269[label="yvy3001/Pos yvy30010",fontsize=10,color="white",style="solid",shape="box"];603 -> 4269[label="",style="solid", color="burlywood", weight=9]; 4269 -> 692[label="",style="solid", color="burlywood", weight=3]; 4270[label="yvy3001/Neg yvy30010",fontsize=10,color="white",style="solid",shape="box"];603 -> 4270[label="",style="solid", color="burlywood", weight=9]; 4270 -> 693[label="",style="solid", color="burlywood", weight=3]; 604 -> 314[label="",style="dashed", color="red", weight=0]; 604[label="compare (yvy4000 * yvy3001) (yvy3000 * yvy4001)",fontsize=16,color="magenta"];604 -> 694[label="",style="dashed", color="magenta", weight=3]; 604 -> 695[label="",style="dashed", color="magenta", weight=3]; 605 -> 317[label="",style="dashed", color="red", weight=0]; 605[label="compare (yvy4000 * yvy3001) (yvy3000 * yvy4001)",fontsize=16,color="magenta"];605 -> 696[label="",style="dashed", color="magenta", weight=3]; 605 -> 697[label="",style="dashed", color="magenta", weight=3]; 606 -> 12[label="",style="dashed", color="red", weight=0]; 606[label="FiniteMap.mkVBalBranch (yvy17 : yvy18) yvy19 (FiniteMap.splitGT yvy21 (yvy23 : yvy24)) yvy22",fontsize=16,color="magenta"];606 -> 698[label="",style="dashed", color="magenta", weight=3]; 606 -> 699[label="",style="dashed", color="magenta", weight=3]; 606 -> 700[label="",style="dashed", color="magenta", weight=3]; 606 -> 701[label="",style="dashed", color="magenta", weight=3]; 607[label="FiniteMap.splitGT0 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) otherwise",fontsize=16,color="black",shape="box"];607 -> 702[label="",style="solid", color="black", weight=3]; 608[label="FiniteMap.splitGT FiniteMap.EmptyFM []",fontsize=16,color="black",shape="box"];608 -> 703[label="",style="solid", color="black", weight=3]; 609[label="FiniteMap.splitGT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) []",fontsize=16,color="black",shape="box"];609 -> 704[label="",style="solid", color="black", weight=3]; 610[label="yvy34",fontsize=16,color="green",shape="box"];611[label="yvy34",fontsize=16,color="green",shape="box"];612[label="FiniteMap.splitLT0 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) otherwise",fontsize=16,color="black",shape="box"];612 -> 705[label="",style="solid", color="black", weight=3]; 613 -> 12[label="",style="dashed", color="red", weight=0]; 613[label="FiniteMap.mkVBalBranch (yvy36 : yvy37) yvy38 yvy40 (FiniteMap.splitLT yvy41 (yvy42 : yvy43))",fontsize=16,color="magenta"];613 -> 706[label="",style="dashed", color="magenta", weight=3]; 613 -> 707[label="",style="dashed", color="magenta", weight=3]; 613 -> 708[label="",style="dashed", color="magenta", weight=3]; 613 -> 709[label="",style="dashed", color="magenta", weight=3]; 614[label="yvy33",fontsize=16,color="green",shape="box"];615[label="yvy401",fontsize=16,color="green",shape="box"];616[label="yvy400",fontsize=16,color="green",shape="box"];617[label="yvy34",fontsize=16,color="green",shape="box"];618[label="yvy33",fontsize=16,color="green",shape="box"];619[label="yvy34",fontsize=16,color="green",shape="box"];856[label="yvy400 : yvy401",fontsize=16,color="green",shape="box"];857[label="yvy53",fontsize=16,color="green",shape="box"];623 -> 119[label="",style="dashed", color="red", weight=0]; 623[label="compare (yvy400 : yvy401) (yvy500 : yvy501)",fontsize=16,color="magenta"];623 -> 710[label="",style="dashed", color="magenta", weight=3]; 623 -> 711[label="",style="dashed", color="magenta", weight=3]; 622[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (yvy68 == GT)",fontsize=16,color="burlywood",shape="triangle"];4271[label="yvy68/LT",fontsize=10,color="white",style="solid",shape="box"];622 -> 4271[label="",style="solid", color="burlywood", weight=9]; 4271 -> 712[label="",style="solid", color="burlywood", weight=3]; 4272[label="yvy68/EQ",fontsize=10,color="white",style="solid",shape="box"];622 -> 4272[label="",style="solid", color="burlywood", weight=9]; 4272 -> 713[label="",style="solid", color="burlywood", weight=3]; 4273[label="yvy68/GT",fontsize=10,color="white",style="solid",shape="box"];622 -> 4273[label="",style="solid", color="burlywood", weight=9]; 4273 -> 714[label="",style="solid", color="burlywood", weight=3]; 624[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 False",fontsize=16,color="black",shape="triangle"];624 -> 715[label="",style="solid", color="black", weight=3]; 625 -> 624[label="",style="dashed", color="red", weight=0]; 625[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 False",fontsize=16,color="magenta"];626[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 True",fontsize=16,color="black",shape="box"];626 -> 716[label="",style="solid", color="black", weight=3]; 863 -> 866[label="",style="dashed", color="red", weight=0]; 863[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 (compare (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54) (Pos (Succ (Succ Zero))) == LT)",fontsize=16,color="magenta"];863 -> 867[label="",style="dashed", color="magenta", weight=3]; 628[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 False",fontsize=16,color="black",shape="triangle"];628 -> 719[label="",style="solid", color="black", weight=3]; 629 -> 628[label="",style="dashed", color="red", weight=0]; 629[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 False",fontsize=16,color="magenta"];630[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 True",fontsize=16,color="black",shape="box"];630 -> 720[label="",style="solid", color="black", weight=3]; 631[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];631 -> 721[label="",style="solid", color="black", weight=3]; 632 -> 2912[label="",style="dashed", color="red", weight=0]; 632[label="primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];632 -> 2913[label="",style="dashed", color="magenta", weight=3]; 632 -> 2914[label="",style="dashed", color="magenta", weight=3]; 633[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];633 -> 723[label="",style="solid", color="black", weight=3]; 634[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="triangle"];634 -> 724[label="",style="solid", color="black", weight=3]; 635 -> 634[label="",style="dashed", color="red", weight=0]; 635[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="magenta"];636 -> 631[label="",style="dashed", color="red", weight=0]; 636[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];637[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];637 -> 725[label="",style="solid", color="black", weight=3]; 638[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="triangle"];638 -> 726[label="",style="solid", color="black", weight=3]; 639 -> 638[label="",style="dashed", color="red", weight=0]; 639[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="magenta"];640 -> 631[label="",style="dashed", color="red", weight=0]; 640[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];641 -> 2912[label="",style="dashed", color="red", weight=0]; 641[label="primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];641 -> 2915[label="",style="dashed", color="magenta", weight=3]; 641 -> 2916[label="",style="dashed", color="magenta", weight=3]; 642[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];642 -> 728[label="",style="solid", color="black", weight=3]; 643[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="triangle"];643 -> 729[label="",style="solid", color="black", weight=3]; 644 -> 643[label="",style="dashed", color="red", weight=0]; 644[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="magenta"];645 -> 631[label="",style="dashed", color="red", weight=0]; 645[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];646[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];646 -> 730[label="",style="solid", color="black", weight=3]; 647[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="triangle"];647 -> 731[label="",style="solid", color="black", weight=3]; 648 -> 647[label="",style="dashed", color="red", weight=0]; 648[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="magenta"];649[label="primCmpFloat (Float yvy4000 (Pos yvy40010)) (Float yvy3000 (Pos yvy30010))",fontsize=16,color="black",shape="box"];649 -> 732[label="",style="solid", color="black", weight=3]; 650[label="primCmpFloat (Float yvy4000 (Pos yvy40010)) (Float yvy3000 (Neg yvy30010))",fontsize=16,color="black",shape="box"];650 -> 733[label="",style="solid", color="black", weight=3]; 651[label="primCmpFloat (Float yvy4000 (Neg yvy40010)) (Float yvy3000 (Pos yvy30010))",fontsize=16,color="black",shape="box"];651 -> 734[label="",style="solid", color="black", weight=3]; 652[label="primCmpFloat (Float yvy4000 (Neg yvy40010)) (Float yvy3000 (Neg yvy30010))",fontsize=16,color="black",shape="box"];652 -> 735[label="",style="solid", color="black", weight=3]; 653[label="primCmpNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4274[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];653 -> 4274[label="",style="solid", color="burlywood", weight=9]; 4274 -> 736[label="",style="solid", color="burlywood", weight=3]; 4275[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];653 -> 4275[label="",style="solid", color="burlywood", weight=9]; 4275 -> 737[label="",style="solid", color="burlywood", weight=3]; 654[label="primCmpNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];4276[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];654 -> 4276[label="",style="solid", color="burlywood", weight=9]; 4276 -> 738[label="",style="solid", color="burlywood", weight=3]; 4277[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];654 -> 4277[label="",style="solid", color="burlywood", weight=9]; 4277 -> 739[label="",style="solid", color="burlywood", weight=3]; 655 -> 568[label="",style="dashed", color="red", weight=0]; 655[label="primCmpNat (Succ yvy40000) yvy3000",fontsize=16,color="magenta"];655 -> 740[label="",style="dashed", color="magenta", weight=3]; 655 -> 741[label="",style="dashed", color="magenta", weight=3]; 656[label="GT",fontsize=16,color="green",shape="box"];657[label="primCmpInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];657 -> 742[label="",style="solid", color="black", weight=3]; 658[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];658 -> 743[label="",style="solid", color="black", weight=3]; 659[label="primCmpInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];659 -> 744[label="",style="solid", color="black", weight=3]; 660[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];660 -> 745[label="",style="solid", color="black", weight=3]; 661[label="LT",fontsize=16,color="green",shape="box"];662 -> 568[label="",style="dashed", color="red", weight=0]; 662[label="primCmpNat yvy3000 (Succ yvy40000)",fontsize=16,color="magenta"];662 -> 746[label="",style="dashed", color="magenta", weight=3]; 662 -> 747[label="",style="dashed", color="magenta", weight=3]; 663[label="primCmpInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];663 -> 748[label="",style="solid", color="black", weight=3]; 664[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];664 -> 749[label="",style="solid", color="black", weight=3]; 665[label="primCmpInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];665 -> 750[label="",style="solid", color="black", weight=3]; 666[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];666 -> 751[label="",style="solid", color="black", weight=3]; 667 -> 1320[label="",style="dashed", color="red", weight=0]; 667[label="compare2 (yvy4000,yvy4001) (yvy3000,yvy3001) (yvy4000 == yvy3000 && yvy4001 == yvy3001)",fontsize=16,color="magenta"];667 -> 1321[label="",style="dashed", color="magenta", weight=3]; 667 -> 1322[label="",style="dashed", color="magenta", weight=3]; 667 -> 1323[label="",style="dashed", color="magenta", weight=3]; 667 -> 1324[label="",style="dashed", color="magenta", weight=3]; 667 -> 1325[label="",style="dashed", color="magenta", weight=3]; 668 -> 1366[label="",style="dashed", color="red", weight=0]; 668[label="compare2 (yvy4000,yvy4001,yvy4002) (yvy3000,yvy3001,yvy3002) (yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002)",fontsize=16,color="magenta"];668 -> 1367[label="",style="dashed", color="magenta", weight=3]; 668 -> 1368[label="",style="dashed", color="magenta", weight=3]; 668 -> 1369[label="",style="dashed", color="magenta", weight=3]; 668 -> 1370[label="",style="dashed", color="magenta", weight=3]; 668 -> 1371[label="",style="dashed", color="magenta", weight=3]; 668 -> 1372[label="",style="dashed", color="magenta", weight=3]; 668 -> 1373[label="",style="dashed", color="magenta", weight=3]; 669[label="compare2 False False True",fontsize=16,color="black",shape="box"];669 -> 766[label="",style="solid", color="black", weight=3]; 670[label="compare2 False True False",fontsize=16,color="black",shape="box"];670 -> 767[label="",style="solid", color="black", weight=3]; 671[label="compare2 True False False",fontsize=16,color="black",shape="box"];671 -> 768[label="",style="solid", color="black", weight=3]; 672[label="compare2 True True True",fontsize=16,color="black",shape="box"];672 -> 769[label="",style="solid", color="black", weight=3]; 673[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];673 -> 770[label="",style="solid", color="black", weight=3]; 674[label="compare2 Nothing (Just yvy3000) False",fontsize=16,color="black",shape="box"];674 -> 771[label="",style="solid", color="black", weight=3]; 675[label="compare2 (Just yvy4000) Nothing False",fontsize=16,color="black",shape="box"];675 -> 772[label="",style="solid", color="black", weight=3]; 676 -> 773[label="",style="dashed", color="red", weight=0]; 676[label="compare2 (Just yvy4000) (Just yvy3000) (yvy4000 == yvy3000)",fontsize=16,color="magenta"];676 -> 774[label="",style="dashed", color="magenta", weight=3]; 676 -> 775[label="",style="dashed", color="magenta", weight=3]; 676 -> 776[label="",style="dashed", color="magenta", weight=3]; 677 -> 777[label="",style="dashed", color="red", weight=0]; 677[label="compare2 (Left yvy4000) (Left yvy3000) (yvy4000 == yvy3000)",fontsize=16,color="magenta"];677 -> 778[label="",style="dashed", color="magenta", weight=3]; 677 -> 779[label="",style="dashed", color="magenta", weight=3]; 677 -> 780[label="",style="dashed", color="magenta", weight=3]; 678[label="compare2 (Left yvy4000) (Right yvy3000) False",fontsize=16,color="black",shape="box"];678 -> 781[label="",style="solid", color="black", weight=3]; 679[label="compare2 (Right yvy4000) (Left yvy3000) False",fontsize=16,color="black",shape="box"];679 -> 782[label="",style="solid", color="black", weight=3]; 680 -> 783[label="",style="dashed", color="red", weight=0]; 680[label="compare2 (Right yvy4000) (Right yvy3000) (yvy4000 == yvy3000)",fontsize=16,color="magenta"];680 -> 784[label="",style="dashed", color="magenta", weight=3]; 680 -> 785[label="",style="dashed", color="magenta", weight=3]; 680 -> 786[label="",style="dashed", color="magenta", weight=3]; 681[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];681 -> 787[label="",style="solid", color="black", weight=3]; 682[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];682 -> 788[label="",style="solid", color="black", weight=3]; 683[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];683 -> 789[label="",style="solid", color="black", weight=3]; 684[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];684 -> 790[label="",style="solid", color="black", weight=3]; 685[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];685 -> 791[label="",style="solid", color="black", weight=3]; 686[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];686 -> 792[label="",style="solid", color="black", weight=3]; 687[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];687 -> 793[label="",style="solid", color="black", weight=3]; 688[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];688 -> 794[label="",style="solid", color="black", weight=3]; 689[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];689 -> 795[label="",style="solid", color="black", weight=3]; 690[label="primCmpDouble (Double yvy4000 (Pos yvy40010)) (Double yvy3000 (Pos yvy30010))",fontsize=16,color="black",shape="box"];690 -> 796[label="",style="solid", color="black", weight=3]; 691[label="primCmpDouble (Double yvy4000 (Pos yvy40010)) (Double yvy3000 (Neg yvy30010))",fontsize=16,color="black",shape="box"];691 -> 797[label="",style="solid", color="black", weight=3]; 692[label="primCmpDouble (Double yvy4000 (Neg yvy40010)) (Double yvy3000 (Pos yvy30010))",fontsize=16,color="black",shape="box"];692 -> 798[label="",style="solid", color="black", weight=3]; 693[label="primCmpDouble (Double yvy4000 (Neg yvy40010)) (Double yvy3000 (Neg yvy30010))",fontsize=16,color="black",shape="box"];693 -> 799[label="",style="solid", color="black", weight=3]; 694[label="yvy3000 * yvy4001",fontsize=16,color="black",shape="triangle"];694 -> 800[label="",style="solid", color="black", weight=3]; 695 -> 694[label="",style="dashed", color="red", weight=0]; 695[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];695 -> 801[label="",style="dashed", color="magenta", weight=3]; 695 -> 802[label="",style="dashed", color="magenta", weight=3]; 696[label="yvy3000 * yvy4001",fontsize=16,color="burlywood",shape="triangle"];4278[label="yvy3000/Integer yvy30000",fontsize=10,color="white",style="solid",shape="box"];696 -> 4278[label="",style="solid", color="burlywood", weight=9]; 4278 -> 803[label="",style="solid", color="burlywood", weight=3]; 697 -> 696[label="",style="dashed", color="red", weight=0]; 697[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];697 -> 804[label="",style="dashed", color="magenta", weight=3]; 697 -> 805[label="",style="dashed", color="magenta", weight=3]; 698[label="yvy17 : yvy18",fontsize=16,color="green",shape="box"];699[label="yvy22",fontsize=16,color="green",shape="box"];700 -> 94[label="",style="dashed", color="red", weight=0]; 700[label="FiniteMap.splitGT yvy21 (yvy23 : yvy24)",fontsize=16,color="magenta"];700 -> 806[label="",style="dashed", color="magenta", weight=3]; 700 -> 807[label="",style="dashed", color="magenta", weight=3]; 700 -> 808[label="",style="dashed", color="magenta", weight=3]; 701[label="yvy19",fontsize=16,color="green",shape="box"];702[label="FiniteMap.splitGT0 (yvy17 : yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23 : yvy24) True",fontsize=16,color="black",shape="box"];702 -> 809[label="",style="solid", color="black", weight=3]; 703[label="FiniteMap.splitGT4 FiniteMap.EmptyFM []",fontsize=16,color="black",shape="box"];703 -> 810[label="",style="solid", color="black", weight=3]; 704 -> 26[label="",style="dashed", color="red", weight=0]; 704[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) []",fontsize=16,color="magenta"];704 -> 811[label="",style="dashed", color="magenta", weight=3]; 704 -> 812[label="",style="dashed", color="magenta", weight=3]; 704 -> 813[label="",style="dashed", color="magenta", weight=3]; 704 -> 814[label="",style="dashed", color="magenta", weight=3]; 704 -> 815[label="",style="dashed", color="magenta", weight=3]; 704 -> 816[label="",style="dashed", color="magenta", weight=3]; 705[label="FiniteMap.splitLT0 (yvy36 : yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42 : yvy43) True",fontsize=16,color="black",shape="box"];705 -> 817[label="",style="solid", color="black", weight=3]; 706[label="yvy36 : yvy37",fontsize=16,color="green",shape="box"];707 -> 351[label="",style="dashed", color="red", weight=0]; 707[label="FiniteMap.splitLT yvy41 (yvy42 : yvy43)",fontsize=16,color="magenta"];707 -> 818[label="",style="dashed", color="magenta", weight=3]; 708[label="yvy40",fontsize=16,color="green",shape="box"];709[label="yvy38",fontsize=16,color="green",shape="box"];710[label="yvy500 : yvy501",fontsize=16,color="green",shape="box"];711[label="yvy400 : yvy401",fontsize=16,color="green",shape="box"];712[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (LT == GT)",fontsize=16,color="black",shape="box"];712 -> 819[label="",style="solid", color="black", weight=3]; 713[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (EQ == GT)",fontsize=16,color="black",shape="box"];713 -> 820[label="",style="solid", color="black", weight=3]; 714[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 (GT == GT)",fontsize=16,color="black",shape="box"];714 -> 821[label="",style="solid", color="black", weight=3]; 715[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 otherwise",fontsize=16,color="black",shape="box"];715 -> 822[label="",style="solid", color="black", weight=3]; 716 -> 833[label="",style="dashed", color="red", weight=0]; 716[label="FiniteMap.mkBalBranch [] yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (yvy400 : yvy401) yvy41)",fontsize=16,color="magenta"];716 -> 840[label="",style="dashed", color="magenta", weight=3]; 716 -> 841[label="",style="dashed", color="magenta", weight=3]; 716 -> 842[label="",style="dashed", color="magenta", weight=3]; 867 -> 314[label="",style="dashed", color="red", weight=0]; 867[label="compare (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];867 -> 868[label="",style="dashed", color="magenta", weight=3]; 867 -> 869[label="",style="dashed", color="magenta", weight=3]; 866[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 (yvy125 == LT)",fontsize=16,color="burlywood",shape="triangle"];4279[label="yvy125/LT",fontsize=10,color="white",style="solid",shape="box"];866 -> 4279[label="",style="solid", color="burlywood", weight=9]; 4279 -> 870[label="",style="solid", color="burlywood", weight=3]; 4280[label="yvy125/EQ",fontsize=10,color="white",style="solid",shape="box"];866 -> 4280[label="",style="solid", color="burlywood", weight=9]; 4280 -> 871[label="",style="solid", color="burlywood", weight=3]; 4281[label="yvy125/GT",fontsize=10,color="white",style="solid",shape="box"];866 -> 4281[label="",style="solid", color="burlywood", weight=9]; 4281 -> 872[label="",style="solid", color="burlywood", weight=3]; 719[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 otherwise",fontsize=16,color="black",shape="box"];719 -> 831[label="",style="solid", color="black", weight=3]; 720 -> 833[label="",style="dashed", color="red", weight=0]; 720[label="FiniteMap.mkBalBranch [] yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 [] yvy41)",fontsize=16,color="magenta"];720 -> 843[label="",style="dashed", color="magenta", weight=3]; 720 -> 844[label="",style="dashed", color="magenta", weight=3]; 720 -> 845[label="",style="dashed", color="magenta", weight=3]; 721[label="yvy52",fontsize=16,color="green",shape="box"];2913 -> 1694[label="",style="dashed", color="red", weight=0]; 2913[label="primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)",fontsize=16,color="magenta"];2913 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2913 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2914[label="yvy6200",fontsize=16,color="green",shape="box"];2912[label="primPlusNat yvy292 (Succ yvy400100)",fontsize=16,color="burlywood",shape="triangle"];4282[label="yvy292/Succ yvy2920",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4282[label="",style="solid", color="burlywood", weight=9]; 4282 -> 2938[label="",style="solid", color="burlywood", weight=3]; 4283[label="yvy292/Zero",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4283[label="",style="solid", color="burlywood", weight=9]; 4283 -> 2939[label="",style="solid", color="burlywood", weight=3]; 723 -> 833[label="",style="dashed", color="red", weight=0]; 723[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];723 -> 846[label="",style="dashed", color="magenta", weight=3]; 724 -> 1231[label="",style="dashed", color="red", weight=0]; 724[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];724 -> 1232[label="",style="dashed", color="magenta", weight=3]; 725 -> 833[label="",style="dashed", color="red", weight=0]; 725[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos Zero) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];725 -> 847[label="",style="dashed", color="magenta", weight=3]; 726 -> 1243[label="",style="dashed", color="red", weight=0]; 726[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="magenta"];726 -> 1244[label="",style="dashed", color="magenta", weight=3]; 2915 -> 1694[label="",style="dashed", color="red", weight=0]; 2915[label="primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)",fontsize=16,color="magenta"];2915 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2915 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2916[label="yvy6200",fontsize=16,color="green",shape="box"];728 -> 833[label="",style="dashed", color="red", weight=0]; 728[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];728 -> 848[label="",style="dashed", color="magenta", weight=3]; 729 -> 1257[label="",style="dashed", color="red", weight=0]; 729[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];729 -> 1258[label="",style="dashed", color="magenta", weight=3]; 730 -> 833[label="",style="dashed", color="red", weight=0]; 730[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg Zero) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];730 -> 849[label="",style="dashed", color="magenta", weight=3]; 731 -> 1271[label="",style="dashed", color="red", weight=0]; 731[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="magenta"];731 -> 1272[label="",style="dashed", color="magenta", weight=3]; 732 -> 314[label="",style="dashed", color="red", weight=0]; 732[label="compare (yvy4000 * Pos yvy30010) (Pos yvy40010 * yvy3000)",fontsize=16,color="magenta"];732 -> 875[label="",style="dashed", color="magenta", weight=3]; 732 -> 876[label="",style="dashed", color="magenta", weight=3]; 733 -> 314[label="",style="dashed", color="red", weight=0]; 733[label="compare (yvy4000 * Pos yvy30010) (Neg yvy40010 * yvy3000)",fontsize=16,color="magenta"];733 -> 877[label="",style="dashed", color="magenta", weight=3]; 733 -> 878[label="",style="dashed", color="magenta", weight=3]; 734 -> 314[label="",style="dashed", color="red", weight=0]; 734[label="compare (yvy4000 * Neg yvy30010) (Pos yvy40010 * yvy3000)",fontsize=16,color="magenta"];734 -> 879[label="",style="dashed", color="magenta", weight=3]; 734 -> 880[label="",style="dashed", color="magenta", weight=3]; 735 -> 314[label="",style="dashed", color="red", weight=0]; 735[label="compare (yvy4000 * Neg yvy30010) (Neg yvy40010 * yvy3000)",fontsize=16,color="magenta"];735 -> 881[label="",style="dashed", color="magenta", weight=3]; 735 -> 882[label="",style="dashed", color="magenta", weight=3]; 736[label="primCmpNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];736 -> 883[label="",style="solid", color="black", weight=3]; 737[label="primCmpNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];737 -> 884[label="",style="solid", color="black", weight=3]; 738[label="primCmpNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];738 -> 885[label="",style="solid", color="black", weight=3]; 739[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];739 -> 886[label="",style="solid", color="black", weight=3]; 740[label="Succ yvy40000",fontsize=16,color="green",shape="box"];741[label="yvy3000",fontsize=16,color="green",shape="box"];742 -> 568[label="",style="dashed", color="red", weight=0]; 742[label="primCmpNat Zero (Succ yvy30000)",fontsize=16,color="magenta"];742 -> 887[label="",style="dashed", color="magenta", weight=3]; 742 -> 888[label="",style="dashed", color="magenta", weight=3]; 743[label="EQ",fontsize=16,color="green",shape="box"];744[label="GT",fontsize=16,color="green",shape="box"];745[label="EQ",fontsize=16,color="green",shape="box"];746[label="yvy3000",fontsize=16,color="green",shape="box"];747[label="Succ yvy40000",fontsize=16,color="green",shape="box"];748[label="LT",fontsize=16,color="green",shape="box"];749[label="EQ",fontsize=16,color="green",shape="box"];750 -> 568[label="",style="dashed", color="red", weight=0]; 750[label="primCmpNat (Succ yvy30000) Zero",fontsize=16,color="magenta"];750 -> 889[label="",style="dashed", color="magenta", weight=3]; 750 -> 890[label="",style="dashed", color="magenta", weight=3]; 751[label="EQ",fontsize=16,color="green",shape="box"];1321 -> 1398[label="",style="dashed", color="red", weight=0]; 1321[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];1321 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1322[label="yvy4000",fontsize=16,color="green",shape="box"];1323[label="yvy4001",fontsize=16,color="green",shape="box"];1324[label="yvy3001",fontsize=16,color="green",shape="box"];1325[label="yvy3000",fontsize=16,color="green",shape="box"];1320[label="compare2 (yvy150,yvy151) (yvy152,yvy153) yvy154",fontsize=16,color="burlywood",shape="triangle"];4284[label="yvy154/False",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 1345[label="",style="solid", color="burlywood", weight=3]; 4285[label="yvy154/True",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4285[label="",style="solid", color="burlywood", weight=9]; 4285 -> 1346[label="",style="solid", color="burlywood", weight=3]; 1367 -> 1398[label="",style="dashed", color="red", weight=0]; 1367[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];1367 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1368[label="yvy3002",fontsize=16,color="green",shape="box"];1369[label="yvy3001",fontsize=16,color="green",shape="box"];1370[label="yvy4002",fontsize=16,color="green",shape="box"];1371[label="yvy4001",fontsize=16,color="green",shape="box"];1372[label="yvy3000",fontsize=16,color="green",shape="box"];1373[label="yvy4000",fontsize=16,color="green",shape="box"];1366[label="compare2 (yvy89,yvy90,yvy91) (yvy92,yvy93,yvy94) yvy162",fontsize=16,color="burlywood",shape="triangle"];4286[label="yvy162/False",fontsize=10,color="white",style="solid",shape="box"];1366 -> 4286[label="",style="solid", color="burlywood", weight=9]; 4286 -> 1382[label="",style="solid", color="burlywood", weight=3]; 4287[label="yvy162/True",fontsize=10,color="white",style="solid",shape="box"];1366 -> 4287[label="",style="solid", color="burlywood", weight=9]; 4287 -> 1383[label="",style="solid", color="burlywood", weight=3]; 766[label="EQ",fontsize=16,color="green",shape="box"];767[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];767 -> 923[label="",style="solid", color="black", weight=3]; 768[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];768 -> 924[label="",style="solid", color="black", weight=3]; 769[label="EQ",fontsize=16,color="green",shape="box"];770[label="EQ",fontsize=16,color="green",shape="box"];771[label="compare1 Nothing (Just yvy3000) (Nothing <= Just yvy3000)",fontsize=16,color="black",shape="box"];771 -> 925[label="",style="solid", color="black", weight=3]; 772[label="compare1 (Just yvy4000) Nothing (Just yvy4000 <= Nothing)",fontsize=16,color="black",shape="box"];772 -> 926[label="",style="solid", color="black", weight=3]; 774[label="yvy3000",fontsize=16,color="green",shape="box"];775[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4288[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4288[label="",style="solid", color="blue", weight=9]; 4288 -> 927[label="",style="solid", color="blue", weight=3]; 4289[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4289[label="",style="solid", color="blue", weight=9]; 4289 -> 928[label="",style="solid", color="blue", weight=3]; 4290[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4290[label="",style="solid", color="blue", weight=9]; 4290 -> 929[label="",style="solid", color="blue", weight=3]; 4291[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4291[label="",style="solid", color="blue", weight=9]; 4291 -> 930[label="",style="solid", color="blue", weight=3]; 4292[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4292[label="",style="solid", color="blue", weight=9]; 4292 -> 931[label="",style="solid", color="blue", weight=3]; 4293[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4293[label="",style="solid", color="blue", weight=9]; 4293 -> 932[label="",style="solid", color="blue", weight=3]; 4294[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 933[label="",style="solid", color="blue", weight=3]; 4295[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 934[label="",style="solid", color="blue", weight=3]; 4296[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4296[label="",style="solid", color="blue", weight=9]; 4296 -> 935[label="",style="solid", color="blue", weight=3]; 4297[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 936[label="",style="solid", color="blue", weight=3]; 4298[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 937[label="",style="solid", color="blue", weight=3]; 4299[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 938[label="",style="solid", color="blue", weight=3]; 4300[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 939[label="",style="solid", color="blue", weight=3]; 4301[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 940[label="",style="solid", color="blue", weight=3]; 776[label="yvy4000",fontsize=16,color="green",shape="box"];773[label="compare2 (Just yvy100) (Just yvy101) yvy102",fontsize=16,color="burlywood",shape="triangle"];4302[label="yvy102/False",fontsize=10,color="white",style="solid",shape="box"];773 -> 4302[label="",style="solid", color="burlywood", weight=9]; 4302 -> 941[label="",style="solid", color="burlywood", weight=3]; 4303[label="yvy102/True",fontsize=10,color="white",style="solid",shape="box"];773 -> 4303[label="",style="solid", color="burlywood", weight=9]; 4303 -> 942[label="",style="solid", color="burlywood", weight=3]; 778[label="yvy3000",fontsize=16,color="green",shape="box"];779[label="yvy4000",fontsize=16,color="green",shape="box"];780[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4304[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4304[label="",style="solid", color="blue", weight=9]; 4304 -> 943[label="",style="solid", color="blue", weight=3]; 4305[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4305[label="",style="solid", color="blue", weight=9]; 4305 -> 944[label="",style="solid", color="blue", weight=3]; 4306[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4306[label="",style="solid", color="blue", weight=9]; 4306 -> 945[label="",style="solid", color="blue", weight=3]; 4307[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 946[label="",style="solid", color="blue", weight=3]; 4308[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 947[label="",style="solid", color="blue", weight=3]; 4309[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 948[label="",style="solid", color="blue", weight=3]; 4310[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 949[label="",style="solid", color="blue", weight=3]; 4311[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 950[label="",style="solid", color="blue", weight=3]; 4312[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 951[label="",style="solid", color="blue", weight=3]; 4313[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 952[label="",style="solid", color="blue", weight=3]; 4314[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 953[label="",style="solid", color="blue", weight=3]; 4315[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 954[label="",style="solid", color="blue", weight=3]; 4316[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 955[label="",style="solid", color="blue", weight=3]; 4317[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];780 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 956[label="",style="solid", color="blue", weight=3]; 777[label="compare2 (Left yvy107) (Left yvy108) yvy109",fontsize=16,color="burlywood",shape="triangle"];4318[label="yvy109/False",fontsize=10,color="white",style="solid",shape="box"];777 -> 4318[label="",style="solid", color="burlywood", weight=9]; 4318 -> 957[label="",style="solid", color="burlywood", weight=3]; 4319[label="yvy109/True",fontsize=10,color="white",style="solid",shape="box"];777 -> 4319[label="",style="solid", color="burlywood", weight=9]; 4319 -> 958[label="",style="solid", color="burlywood", weight=3]; 781[label="compare1 (Left yvy4000) (Right yvy3000) (Left yvy4000 <= Right yvy3000)",fontsize=16,color="black",shape="box"];781 -> 959[label="",style="solid", color="black", weight=3]; 782[label="compare1 (Right yvy4000) (Left yvy3000) (Right yvy4000 <= Left yvy3000)",fontsize=16,color="black",shape="box"];782 -> 960[label="",style="solid", color="black", weight=3]; 784[label="yvy4000",fontsize=16,color="green",shape="box"];785[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4320[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 961[label="",style="solid", color="blue", weight=3]; 4321[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 962[label="",style="solid", color="blue", weight=3]; 4322[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 963[label="",style="solid", color="blue", weight=3]; 4323[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4323[label="",style="solid", color="blue", weight=9]; 4323 -> 964[label="",style="solid", color="blue", weight=3]; 4324[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4324[label="",style="solid", color="blue", weight=9]; 4324 -> 965[label="",style="solid", color="blue", weight=3]; 4325[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 966[label="",style="solid", color="blue", weight=3]; 4326[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4326[label="",style="solid", color="blue", weight=9]; 4326 -> 967[label="",style="solid", color="blue", weight=3]; 4327[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4327[label="",style="solid", color="blue", weight=9]; 4327 -> 968[label="",style="solid", color="blue", weight=3]; 4328[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4328[label="",style="solid", color="blue", weight=9]; 4328 -> 969[label="",style="solid", color="blue", weight=3]; 4329[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4329[label="",style="solid", color="blue", weight=9]; 4329 -> 970[label="",style="solid", color="blue", weight=3]; 4330[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4330[label="",style="solid", color="blue", weight=9]; 4330 -> 971[label="",style="solid", color="blue", weight=3]; 4331[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4331[label="",style="solid", color="blue", weight=9]; 4331 -> 972[label="",style="solid", color="blue", weight=3]; 4332[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4332[label="",style="solid", color="blue", weight=9]; 4332 -> 973[label="",style="solid", color="blue", weight=3]; 4333[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];785 -> 4333[label="",style="solid", color="blue", weight=9]; 4333 -> 974[label="",style="solid", color="blue", weight=3]; 786[label="yvy3000",fontsize=16,color="green",shape="box"];783[label="compare2 (Right yvy114) (Right yvy115) yvy116",fontsize=16,color="burlywood",shape="triangle"];4334[label="yvy116/False",fontsize=10,color="white",style="solid",shape="box"];783 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 975[label="",style="solid", color="burlywood", weight=3]; 4335[label="yvy116/True",fontsize=10,color="white",style="solid",shape="box"];783 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 976[label="",style="solid", color="burlywood", weight=3]; 787[label="EQ",fontsize=16,color="green",shape="box"];788[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];788 -> 977[label="",style="solid", color="black", weight=3]; 789[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];789 -> 978[label="",style="solid", color="black", weight=3]; 790[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];790 -> 979[label="",style="solid", color="black", weight=3]; 791[label="EQ",fontsize=16,color="green",shape="box"];792[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];792 -> 980[label="",style="solid", color="black", weight=3]; 793[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];793 -> 981[label="",style="solid", color="black", weight=3]; 794[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];794 -> 982[label="",style="solid", color="black", weight=3]; 795[label="EQ",fontsize=16,color="green",shape="box"];796 -> 314[label="",style="dashed", color="red", weight=0]; 796[label="compare (yvy4000 * Pos yvy30010) (Pos yvy40010 * yvy3000)",fontsize=16,color="magenta"];796 -> 983[label="",style="dashed", color="magenta", weight=3]; 796 -> 984[label="",style="dashed", color="magenta", weight=3]; 797 -> 314[label="",style="dashed", color="red", weight=0]; 797[label="compare (yvy4000 * Pos yvy30010) (Neg yvy40010 * yvy3000)",fontsize=16,color="magenta"];797 -> 985[label="",style="dashed", color="magenta", weight=3]; 797 -> 986[label="",style="dashed", color="magenta", weight=3]; 798 -> 314[label="",style="dashed", color="red", weight=0]; 798[label="compare (yvy4000 * Neg yvy30010) (Pos yvy40010 * yvy3000)",fontsize=16,color="magenta"];798 -> 987[label="",style="dashed", color="magenta", weight=3]; 798 -> 988[label="",style="dashed", color="magenta", weight=3]; 799 -> 314[label="",style="dashed", color="red", weight=0]; 799[label="compare (yvy4000 * Neg yvy30010) (Neg yvy40010 * yvy3000)",fontsize=16,color="magenta"];799 -> 989[label="",style="dashed", color="magenta", weight=3]; 799 -> 990[label="",style="dashed", color="magenta", weight=3]; 800[label="primMulInt yvy3000 yvy4001",fontsize=16,color="burlywood",shape="triangle"];4336[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];800 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 991[label="",style="solid", color="burlywood", weight=3]; 4337[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];800 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 992[label="",style="solid", color="burlywood", weight=3]; 801[label="yvy4000",fontsize=16,color="green",shape="box"];802[label="yvy3001",fontsize=16,color="green",shape="box"];803[label="Integer yvy30000 * yvy4001",fontsize=16,color="burlywood",shape="box"];4338[label="yvy4001/Integer yvy40010",fontsize=10,color="white",style="solid",shape="box"];803 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 993[label="",style="solid", color="burlywood", weight=3]; 804[label="yvy4000",fontsize=16,color="green",shape="box"];805[label="yvy3001",fontsize=16,color="green",shape="box"];806[label="yvy21",fontsize=16,color="green",shape="box"];807[label="yvy23",fontsize=16,color="green",shape="box"];808[label="yvy24",fontsize=16,color="green",shape="box"];809[label="yvy22",fontsize=16,color="green",shape="box"];810 -> 79[label="",style="dashed", color="red", weight=0]; 810[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];811[label="[]",fontsize=16,color="green",shape="box"];812[label="yvy331",fontsize=16,color="green",shape="box"];813[label="yvy334",fontsize=16,color="green",shape="box"];814[label="yvy330",fontsize=16,color="green",shape="box"];815[label="yvy332",fontsize=16,color="green",shape="box"];816[label="yvy333",fontsize=16,color="green",shape="box"];817[label="yvy40",fontsize=16,color="green",shape="box"];818[label="yvy41",fontsize=16,color="green",shape="box"];819[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 False",fontsize=16,color="black",shape="triangle"];819 -> 994[label="",style="solid", color="black", weight=3]; 820 -> 819[label="",style="dashed", color="red", weight=0]; 820[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 False",fontsize=16,color="magenta"];821[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 True",fontsize=16,color="black",shape="box"];821 -> 995[label="",style="solid", color="black", weight=3]; 822[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 True",fontsize=16,color="black",shape="box"];822 -> 996[label="",style="solid", color="black", weight=3]; 840[label="[]",fontsize=16,color="green",shape="box"];841 -> 33[label="",style="dashed", color="red", weight=0]; 841[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (yvy400 : yvy401) yvy41",fontsize=16,color="magenta"];841 -> 997[label="",style="dashed", color="magenta", weight=3]; 841 -> 998[label="",style="dashed", color="magenta", weight=3]; 842[label="yvy53",fontsize=16,color="green",shape="box"];868[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];869[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="black",shape="box"];869 -> 999[label="",style="solid", color="black", weight=3]; 870[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 (LT == LT)",fontsize=16,color="black",shape="box"];870 -> 1000[label="",style="solid", color="black", weight=3]; 871[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 (EQ == LT)",fontsize=16,color="black",shape="box"];871 -> 1001[label="",style="solid", color="black", weight=3]; 872[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 (GT == LT)",fontsize=16,color="black",shape="box"];872 -> 1002[label="",style="solid", color="black", weight=3]; 831[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 [] yvy51 yvy52 yvy53 yvy54 [] yvy41 True",fontsize=16,color="black",shape="box"];831 -> 1003[label="",style="solid", color="black", weight=3]; 843[label="[]",fontsize=16,color="green",shape="box"];844 -> 33[label="",style="dashed", color="red", weight=0]; 844[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 [] yvy41",fontsize=16,color="magenta"];844 -> 1004[label="",style="dashed", color="magenta", weight=3]; 844 -> 1005[label="",style="dashed", color="magenta", weight=3]; 845[label="yvy53",fontsize=16,color="green",shape="box"];2936[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];2937[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1694[label="primMulNat yvy30000 yvy40010",fontsize=16,color="burlywood",shape="triangle"];4339[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];1694 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 1883[label="",style="solid", color="burlywood", weight=3]; 4340[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1694 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 1884[label="",style="solid", color="burlywood", weight=3]; 2938[label="primPlusNat (Succ yvy2920) (Succ yvy400100)",fontsize=16,color="black",shape="box"];2938 -> 2957[label="",style="solid", color="black", weight=3]; 2939[label="primPlusNat Zero (Succ yvy400100)",fontsize=16,color="black",shape="box"];2939 -> 2958[label="",style="solid", color="black", weight=3]; 846 -> 12[label="",style="dashed", color="red", weight=0]; 846[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];846 -> 1007[label="",style="dashed", color="magenta", weight=3]; 846 -> 1008[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1235[label="",style="dashed", color="red", weight=0]; 1232[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1232 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1231[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy128",fontsize=16,color="burlywood",shape="triangle"];4341[label="yvy128/False",fontsize=10,color="white",style="solid",shape="box"];1231 -> 4341[label="",style="solid", color="burlywood", weight=9]; 4341 -> 1237[label="",style="solid", color="burlywood", weight=3]; 4342[label="yvy128/True",fontsize=10,color="white",style="solid",shape="box"];1231 -> 4342[label="",style="solid", color="burlywood", weight=9]; 4342 -> 1238[label="",style="solid", color="burlywood", weight=3]; 847 -> 12[label="",style="dashed", color="red", weight=0]; 847[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos Zero) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];847 -> 1012[label="",style="dashed", color="magenta", weight=3]; 847 -> 1013[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1247[label="",style="dashed", color="red", weight=0]; 1244[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="magenta"];1244 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1243[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy132",fontsize=16,color="burlywood",shape="triangle"];4343[label="yvy132/False",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4343[label="",style="solid", color="burlywood", weight=9]; 4343 -> 1249[label="",style="solid", color="burlywood", weight=3]; 4344[label="yvy132/True",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4344[label="",style="solid", color="burlywood", weight=9]; 4344 -> 1250[label="",style="solid", color="burlywood", weight=3]; 2940[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];2941[label="Succ yvy6200",fontsize=16,color="green",shape="box"];848 -> 12[label="",style="dashed", color="red", weight=0]; 848[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];848 -> 1017[label="",style="dashed", color="magenta", weight=3]; 848 -> 1018[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1261[label="",style="dashed", color="red", weight=0]; 1258[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1258 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1257[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy136",fontsize=16,color="burlywood",shape="triangle"];4345[label="yvy136/False",fontsize=10,color="white",style="solid",shape="box"];1257 -> 4345[label="",style="solid", color="burlywood", weight=9]; 4345 -> 1263[label="",style="solid", color="burlywood", weight=3]; 4346[label="yvy136/True",fontsize=10,color="white",style="solid",shape="box"];1257 -> 4346[label="",style="solid", color="burlywood", weight=9]; 4346 -> 1264[label="",style="solid", color="burlywood", weight=3]; 849 -> 12[label="",style="dashed", color="red", weight=0]; 849[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg Zero) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];849 -> 1022[label="",style="dashed", color="magenta", weight=3]; 849 -> 1023[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1275[label="",style="dashed", color="red", weight=0]; 1272[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="magenta"];1272 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1271[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy140",fontsize=16,color="burlywood",shape="triangle"];4347[label="yvy140/False",fontsize=10,color="white",style="solid",shape="box"];1271 -> 4347[label="",style="solid", color="burlywood", weight=9]; 4347 -> 1277[label="",style="solid", color="burlywood", weight=3]; 4348[label="yvy140/True",fontsize=10,color="white",style="solid",shape="box"];1271 -> 4348[label="",style="solid", color="burlywood", weight=9]; 4348 -> 1278[label="",style="solid", color="burlywood", weight=3]; 875 -> 694[label="",style="dashed", color="red", weight=0]; 875[label="Pos yvy40010 * yvy3000",fontsize=16,color="magenta"];875 -> 1027[label="",style="dashed", color="magenta", weight=3]; 875 -> 1028[label="",style="dashed", color="magenta", weight=3]; 876 -> 694[label="",style="dashed", color="red", weight=0]; 876[label="yvy4000 * Pos yvy30010",fontsize=16,color="magenta"];876 -> 1029[label="",style="dashed", color="magenta", weight=3]; 876 -> 1030[label="",style="dashed", color="magenta", weight=3]; 877 -> 694[label="",style="dashed", color="red", weight=0]; 877[label="Neg yvy40010 * yvy3000",fontsize=16,color="magenta"];877 -> 1031[label="",style="dashed", color="magenta", weight=3]; 877 -> 1032[label="",style="dashed", color="magenta", weight=3]; 878 -> 694[label="",style="dashed", color="red", weight=0]; 878[label="yvy4000 * Pos yvy30010",fontsize=16,color="magenta"];878 -> 1033[label="",style="dashed", color="magenta", weight=3]; 878 -> 1034[label="",style="dashed", color="magenta", weight=3]; 879 -> 694[label="",style="dashed", color="red", weight=0]; 879[label="Pos yvy40010 * yvy3000",fontsize=16,color="magenta"];879 -> 1035[label="",style="dashed", color="magenta", weight=3]; 879 -> 1036[label="",style="dashed", color="magenta", weight=3]; 880 -> 694[label="",style="dashed", color="red", weight=0]; 880[label="yvy4000 * Neg yvy30010",fontsize=16,color="magenta"];880 -> 1037[label="",style="dashed", color="magenta", weight=3]; 880 -> 1038[label="",style="dashed", color="magenta", weight=3]; 881 -> 694[label="",style="dashed", color="red", weight=0]; 881[label="Neg yvy40010 * yvy3000",fontsize=16,color="magenta"];881 -> 1039[label="",style="dashed", color="magenta", weight=3]; 881 -> 1040[label="",style="dashed", color="magenta", weight=3]; 882 -> 694[label="",style="dashed", color="red", weight=0]; 882[label="yvy4000 * Neg yvy30010",fontsize=16,color="magenta"];882 -> 1041[label="",style="dashed", color="magenta", weight=3]; 882 -> 1042[label="",style="dashed", color="magenta", weight=3]; 883 -> 568[label="",style="dashed", color="red", weight=0]; 883[label="primCmpNat yvy40000 yvy30000",fontsize=16,color="magenta"];883 -> 1043[label="",style="dashed", color="magenta", weight=3]; 883 -> 1044[label="",style="dashed", color="magenta", weight=3]; 884[label="GT",fontsize=16,color="green",shape="box"];885[label="LT",fontsize=16,color="green",shape="box"];886[label="EQ",fontsize=16,color="green",shape="box"];887[label="Zero",fontsize=16,color="green",shape="box"];888[label="Succ yvy30000",fontsize=16,color="green",shape="box"];889[label="Succ yvy30000",fontsize=16,color="green",shape="box"];890[label="Zero",fontsize=16,color="green",shape="box"];1399[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4349[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4349[label="",style="solid", color="blue", weight=9]; 4349 -> 1407[label="",style="solid", color="blue", weight=3]; 4350[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4350[label="",style="solid", color="blue", weight=9]; 4350 -> 1408[label="",style="solid", color="blue", weight=3]; 4351[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4351[label="",style="solid", color="blue", weight=9]; 4351 -> 1409[label="",style="solid", color="blue", weight=3]; 4352[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4352[label="",style="solid", color="blue", weight=9]; 4352 -> 1410[label="",style="solid", color="blue", weight=3]; 4353[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4353[label="",style="solid", color="blue", weight=9]; 4353 -> 1411[label="",style="solid", color="blue", weight=3]; 4354[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4354[label="",style="solid", color="blue", weight=9]; 4354 -> 1412[label="",style="solid", color="blue", weight=3]; 4355[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4355[label="",style="solid", color="blue", weight=9]; 4355 -> 1413[label="",style="solid", color="blue", weight=3]; 4356[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4356[label="",style="solid", color="blue", weight=9]; 4356 -> 1414[label="",style="solid", color="blue", weight=3]; 4357[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4357[label="",style="solid", color="blue", weight=9]; 4357 -> 1415[label="",style="solid", color="blue", weight=3]; 4358[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4358[label="",style="solid", color="blue", weight=9]; 4358 -> 1416[label="",style="solid", color="blue", weight=3]; 4359[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4359[label="",style="solid", color="blue", weight=9]; 4359 -> 1417[label="",style="solid", color="blue", weight=3]; 4360[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4360[label="",style="solid", color="blue", weight=9]; 4360 -> 1418[label="",style="solid", color="blue", weight=3]; 4361[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4361[label="",style="solid", color="blue", weight=9]; 4361 -> 1419[label="",style="solid", color="blue", weight=3]; 4362[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4362[label="",style="solid", color="blue", weight=9]; 4362 -> 1420[label="",style="solid", color="blue", weight=3]; 1400[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4363[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4363[label="",style="solid", color="blue", weight=9]; 4363 -> 1421[label="",style="solid", color="blue", weight=3]; 4364[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 1422[label="",style="solid", color="blue", weight=3]; 4365[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 1423[label="",style="solid", color="blue", weight=3]; 4366[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4366[label="",style="solid", color="blue", weight=9]; 4366 -> 1424[label="",style="solid", color="blue", weight=3]; 4367[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4367[label="",style="solid", color="blue", weight=9]; 4367 -> 1425[label="",style="solid", color="blue", weight=3]; 4368[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4368[label="",style="solid", color="blue", weight=9]; 4368 -> 1426[label="",style="solid", color="blue", weight=3]; 4369[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4369[label="",style="solid", color="blue", weight=9]; 4369 -> 1427[label="",style="solid", color="blue", weight=3]; 4370[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4370[label="",style="solid", color="blue", weight=9]; 4370 -> 1428[label="",style="solid", color="blue", weight=3]; 4371[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4371[label="",style="solid", color="blue", weight=9]; 4371 -> 1429[label="",style="solid", color="blue", weight=3]; 4372[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4372[label="",style="solid", color="blue", weight=9]; 4372 -> 1430[label="",style="solid", color="blue", weight=3]; 4373[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4373[label="",style="solid", color="blue", weight=9]; 4373 -> 1431[label="",style="solid", color="blue", weight=3]; 4374[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4374[label="",style="solid", color="blue", weight=9]; 4374 -> 1432[label="",style="solid", color="blue", weight=3]; 4375[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4375[label="",style="solid", color="blue", weight=9]; 4375 -> 1433[label="",style="solid", color="blue", weight=3]; 4376[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4376[label="",style="solid", color="blue", weight=9]; 4376 -> 1434[label="",style="solid", color="blue", weight=3]; 1398[label="yvy167 && yvy168",fontsize=16,color="burlywood",shape="triangle"];4377[label="yvy167/False",fontsize=10,color="white",style="solid",shape="box"];1398 -> 4377[label="",style="solid", color="burlywood", weight=9]; 4377 -> 1435[label="",style="solid", color="burlywood", weight=3]; 4378[label="yvy167/True",fontsize=10,color="white",style="solid",shape="box"];1398 -> 4378[label="",style="solid", color="burlywood", weight=9]; 4378 -> 1436[label="",style="solid", color="burlywood", weight=3]; 1345[label="compare2 (yvy150,yvy151) (yvy152,yvy153) False",fontsize=16,color="black",shape="box"];1345 -> 1437[label="",style="solid", color="black", weight=3]; 1346[label="compare2 (yvy150,yvy151) (yvy152,yvy153) True",fontsize=16,color="black",shape="box"];1346 -> 1438[label="",style="solid", color="black", weight=3]; 1401[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4379[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4379[label="",style="solid", color="blue", weight=9]; 4379 -> 1439[label="",style="solid", color="blue", weight=3]; 4380[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4380[label="",style="solid", color="blue", weight=9]; 4380 -> 1440[label="",style="solid", color="blue", weight=3]; 4381[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4381[label="",style="solid", color="blue", weight=9]; 4381 -> 1441[label="",style="solid", color="blue", weight=3]; 4382[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 1442[label="",style="solid", color="blue", weight=3]; 4383[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 1443[label="",style="solid", color="blue", weight=3]; 4384[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 1444[label="",style="solid", color="blue", weight=3]; 4385[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 1445[label="",style="solid", color="blue", weight=3]; 4386[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 1446[label="",style="solid", color="blue", weight=3]; 4387[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4387[label="",style="solid", color="blue", weight=9]; 4387 -> 1447[label="",style="solid", color="blue", weight=3]; 4388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4388[label="",style="solid", color="blue", weight=9]; 4388 -> 1448[label="",style="solid", color="blue", weight=3]; 4389[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4389[label="",style="solid", color="blue", weight=9]; 4389 -> 1449[label="",style="solid", color="blue", weight=3]; 4390[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4390[label="",style="solid", color="blue", weight=9]; 4390 -> 1450[label="",style="solid", color="blue", weight=3]; 4391[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4391[label="",style="solid", color="blue", weight=9]; 4391 -> 1451[label="",style="solid", color="blue", weight=3]; 4392[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4392[label="",style="solid", color="blue", weight=9]; 4392 -> 1452[label="",style="solid", color="blue", weight=3]; 1402 -> 1398[label="",style="dashed", color="red", weight=0]; 1402[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];1402 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1382[label="compare2 (yvy89,yvy90,yvy91) (yvy92,yvy93,yvy94) False",fontsize=16,color="black",shape="box"];1382 -> 1455[label="",style="solid", color="black", weight=3]; 1383[label="compare2 (yvy89,yvy90,yvy91) (yvy92,yvy93,yvy94) True",fontsize=16,color="black",shape="box"];1383 -> 1456[label="",style="solid", color="black", weight=3]; 923[label="compare1 False True True",fontsize=16,color="black",shape="box"];923 -> 1097[label="",style="solid", color="black", weight=3]; 924[label="compare1 True False False",fontsize=16,color="black",shape="box"];924 -> 1098[label="",style="solid", color="black", weight=3]; 925[label="compare1 Nothing (Just yvy3000) True",fontsize=16,color="black",shape="box"];925 -> 1099[label="",style="solid", color="black", weight=3]; 926[label="compare1 (Just yvy4000) Nothing False",fontsize=16,color="black",shape="box"];926 -> 1100[label="",style="solid", color="black", weight=3]; 927 -> 891[label="",style="dashed", color="red", weight=0]; 927[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];927 -> 1101[label="",style="dashed", color="magenta", weight=3]; 927 -> 1102[label="",style="dashed", color="magenta", weight=3]; 928 -> 892[label="",style="dashed", color="red", weight=0]; 928[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];928 -> 1103[label="",style="dashed", color="magenta", weight=3]; 928 -> 1104[label="",style="dashed", color="magenta", weight=3]; 929 -> 893[label="",style="dashed", color="red", weight=0]; 929[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];929 -> 1105[label="",style="dashed", color="magenta", weight=3]; 929 -> 1106[label="",style="dashed", color="magenta", weight=3]; 930 -> 894[label="",style="dashed", color="red", weight=0]; 930[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];930 -> 1107[label="",style="dashed", color="magenta", weight=3]; 930 -> 1108[label="",style="dashed", color="magenta", weight=3]; 931 -> 895[label="",style="dashed", color="red", weight=0]; 931[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];931 -> 1109[label="",style="dashed", color="magenta", weight=3]; 931 -> 1110[label="",style="dashed", color="magenta", weight=3]; 932 -> 896[label="",style="dashed", color="red", weight=0]; 932[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];932 -> 1111[label="",style="dashed", color="magenta", weight=3]; 932 -> 1112[label="",style="dashed", color="magenta", weight=3]; 933 -> 897[label="",style="dashed", color="red", weight=0]; 933[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];933 -> 1113[label="",style="dashed", color="magenta", weight=3]; 933 -> 1114[label="",style="dashed", color="magenta", weight=3]; 934 -> 898[label="",style="dashed", color="red", weight=0]; 934[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];934 -> 1115[label="",style="dashed", color="magenta", weight=3]; 934 -> 1116[label="",style="dashed", color="magenta", weight=3]; 935 -> 899[label="",style="dashed", color="red", weight=0]; 935[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];935 -> 1117[label="",style="dashed", color="magenta", weight=3]; 935 -> 1118[label="",style="dashed", color="magenta", weight=3]; 936 -> 900[label="",style="dashed", color="red", weight=0]; 936[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];936 -> 1119[label="",style="dashed", color="magenta", weight=3]; 936 -> 1120[label="",style="dashed", color="magenta", weight=3]; 937 -> 901[label="",style="dashed", color="red", weight=0]; 937[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];937 -> 1121[label="",style="dashed", color="magenta", weight=3]; 937 -> 1122[label="",style="dashed", color="magenta", weight=3]; 938 -> 902[label="",style="dashed", color="red", weight=0]; 938[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];938 -> 1123[label="",style="dashed", color="magenta", weight=3]; 938 -> 1124[label="",style="dashed", color="magenta", weight=3]; 939 -> 903[label="",style="dashed", color="red", weight=0]; 939[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];939 -> 1125[label="",style="dashed", color="magenta", weight=3]; 939 -> 1126[label="",style="dashed", color="magenta", weight=3]; 940 -> 904[label="",style="dashed", color="red", weight=0]; 940[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];940 -> 1127[label="",style="dashed", color="magenta", weight=3]; 940 -> 1128[label="",style="dashed", color="magenta", weight=3]; 941[label="compare2 (Just yvy100) (Just yvy101) False",fontsize=16,color="black",shape="box"];941 -> 1129[label="",style="solid", color="black", weight=3]; 942[label="compare2 (Just yvy100) (Just yvy101) True",fontsize=16,color="black",shape="box"];942 -> 1130[label="",style="solid", color="black", weight=3]; 943 -> 891[label="",style="dashed", color="red", weight=0]; 943[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];943 -> 1131[label="",style="dashed", color="magenta", weight=3]; 943 -> 1132[label="",style="dashed", color="magenta", weight=3]; 944 -> 892[label="",style="dashed", color="red", weight=0]; 944[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];944 -> 1133[label="",style="dashed", color="magenta", weight=3]; 944 -> 1134[label="",style="dashed", color="magenta", weight=3]; 945 -> 893[label="",style="dashed", color="red", weight=0]; 945[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];945 -> 1135[label="",style="dashed", color="magenta", weight=3]; 945 -> 1136[label="",style="dashed", color="magenta", weight=3]; 946 -> 894[label="",style="dashed", color="red", weight=0]; 946[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];946 -> 1137[label="",style="dashed", color="magenta", weight=3]; 946 -> 1138[label="",style="dashed", color="magenta", weight=3]; 947 -> 895[label="",style="dashed", color="red", weight=0]; 947[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];947 -> 1139[label="",style="dashed", color="magenta", weight=3]; 947 -> 1140[label="",style="dashed", color="magenta", weight=3]; 948 -> 896[label="",style="dashed", color="red", weight=0]; 948[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];948 -> 1141[label="",style="dashed", color="magenta", weight=3]; 948 -> 1142[label="",style="dashed", color="magenta", weight=3]; 949 -> 897[label="",style="dashed", color="red", weight=0]; 949[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];949 -> 1143[label="",style="dashed", color="magenta", weight=3]; 949 -> 1144[label="",style="dashed", color="magenta", weight=3]; 950 -> 898[label="",style="dashed", color="red", weight=0]; 950[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];950 -> 1145[label="",style="dashed", color="magenta", weight=3]; 950 -> 1146[label="",style="dashed", color="magenta", weight=3]; 951 -> 899[label="",style="dashed", color="red", weight=0]; 951[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];951 -> 1147[label="",style="dashed", color="magenta", weight=3]; 951 -> 1148[label="",style="dashed", color="magenta", weight=3]; 952 -> 900[label="",style="dashed", color="red", weight=0]; 952[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];952 -> 1149[label="",style="dashed", color="magenta", weight=3]; 952 -> 1150[label="",style="dashed", color="magenta", weight=3]; 953 -> 901[label="",style="dashed", color="red", weight=0]; 953[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];953 -> 1151[label="",style="dashed", color="magenta", weight=3]; 953 -> 1152[label="",style="dashed", color="magenta", weight=3]; 954 -> 902[label="",style="dashed", color="red", weight=0]; 954[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];954 -> 1153[label="",style="dashed", color="magenta", weight=3]; 954 -> 1154[label="",style="dashed", color="magenta", weight=3]; 955 -> 903[label="",style="dashed", color="red", weight=0]; 955[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];955 -> 1155[label="",style="dashed", color="magenta", weight=3]; 955 -> 1156[label="",style="dashed", color="magenta", weight=3]; 956 -> 904[label="",style="dashed", color="red", weight=0]; 956[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];956 -> 1157[label="",style="dashed", color="magenta", weight=3]; 956 -> 1158[label="",style="dashed", color="magenta", weight=3]; 957[label="compare2 (Left yvy107) (Left yvy108) False",fontsize=16,color="black",shape="box"];957 -> 1159[label="",style="solid", color="black", weight=3]; 958[label="compare2 (Left yvy107) (Left yvy108) True",fontsize=16,color="black",shape="box"];958 -> 1160[label="",style="solid", color="black", weight=3]; 959[label="compare1 (Left yvy4000) (Right yvy3000) True",fontsize=16,color="black",shape="box"];959 -> 1161[label="",style="solid", color="black", weight=3]; 960[label="compare1 (Right yvy4000) (Left yvy3000) False",fontsize=16,color="black",shape="box"];960 -> 1162[label="",style="solid", color="black", weight=3]; 961 -> 891[label="",style="dashed", color="red", weight=0]; 961[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];961 -> 1163[label="",style="dashed", color="magenta", weight=3]; 961 -> 1164[label="",style="dashed", color="magenta", weight=3]; 962 -> 892[label="",style="dashed", color="red", weight=0]; 962[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];962 -> 1165[label="",style="dashed", color="magenta", weight=3]; 962 -> 1166[label="",style="dashed", color="magenta", weight=3]; 963 -> 893[label="",style="dashed", color="red", weight=0]; 963[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];963 -> 1167[label="",style="dashed", color="magenta", weight=3]; 963 -> 1168[label="",style="dashed", color="magenta", weight=3]; 964 -> 894[label="",style="dashed", color="red", weight=0]; 964[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];964 -> 1169[label="",style="dashed", color="magenta", weight=3]; 964 -> 1170[label="",style="dashed", color="magenta", weight=3]; 965 -> 895[label="",style="dashed", color="red", weight=0]; 965[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];965 -> 1171[label="",style="dashed", color="magenta", weight=3]; 965 -> 1172[label="",style="dashed", color="magenta", weight=3]; 966 -> 896[label="",style="dashed", color="red", weight=0]; 966[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];966 -> 1173[label="",style="dashed", color="magenta", weight=3]; 966 -> 1174[label="",style="dashed", color="magenta", weight=3]; 967 -> 897[label="",style="dashed", color="red", weight=0]; 967[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];967 -> 1175[label="",style="dashed", color="magenta", weight=3]; 967 -> 1176[label="",style="dashed", color="magenta", weight=3]; 968 -> 898[label="",style="dashed", color="red", weight=0]; 968[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];968 -> 1177[label="",style="dashed", color="magenta", weight=3]; 968 -> 1178[label="",style="dashed", color="magenta", weight=3]; 969 -> 899[label="",style="dashed", color="red", weight=0]; 969[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];969 -> 1179[label="",style="dashed", color="magenta", weight=3]; 969 -> 1180[label="",style="dashed", color="magenta", weight=3]; 970 -> 900[label="",style="dashed", color="red", weight=0]; 970[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];970 -> 1181[label="",style="dashed", color="magenta", weight=3]; 970 -> 1182[label="",style="dashed", color="magenta", weight=3]; 971 -> 901[label="",style="dashed", color="red", weight=0]; 971[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];971 -> 1183[label="",style="dashed", color="magenta", weight=3]; 971 -> 1184[label="",style="dashed", color="magenta", weight=3]; 972 -> 902[label="",style="dashed", color="red", weight=0]; 972[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];972 -> 1185[label="",style="dashed", color="magenta", weight=3]; 972 -> 1186[label="",style="dashed", color="magenta", weight=3]; 973 -> 903[label="",style="dashed", color="red", weight=0]; 973[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];973 -> 1187[label="",style="dashed", color="magenta", weight=3]; 973 -> 1188[label="",style="dashed", color="magenta", weight=3]; 974 -> 904[label="",style="dashed", color="red", weight=0]; 974[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];974 -> 1189[label="",style="dashed", color="magenta", weight=3]; 974 -> 1190[label="",style="dashed", color="magenta", weight=3]; 975[label="compare2 (Right yvy114) (Right yvy115) False",fontsize=16,color="black",shape="box"];975 -> 1191[label="",style="solid", color="black", weight=3]; 976[label="compare2 (Right yvy114) (Right yvy115) True",fontsize=16,color="black",shape="box"];976 -> 1192[label="",style="solid", color="black", weight=3]; 977[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];977 -> 1193[label="",style="solid", color="black", weight=3]; 978[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];978 -> 1194[label="",style="solid", color="black", weight=3]; 979[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];979 -> 1195[label="",style="solid", color="black", weight=3]; 980[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];980 -> 1196[label="",style="solid", color="black", weight=3]; 981[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];981 -> 1197[label="",style="solid", color="black", weight=3]; 982[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];982 -> 1198[label="",style="solid", color="black", weight=3]; 983 -> 694[label="",style="dashed", color="red", weight=0]; 983[label="Pos yvy40010 * yvy3000",fontsize=16,color="magenta"];983 -> 1199[label="",style="dashed", color="magenta", weight=3]; 983 -> 1200[label="",style="dashed", color="magenta", weight=3]; 984 -> 694[label="",style="dashed", color="red", weight=0]; 984[label="yvy4000 * Pos yvy30010",fontsize=16,color="magenta"];984 -> 1201[label="",style="dashed", color="magenta", weight=3]; 984 -> 1202[label="",style="dashed", color="magenta", weight=3]; 985 -> 694[label="",style="dashed", color="red", weight=0]; 985[label="Neg yvy40010 * yvy3000",fontsize=16,color="magenta"];985 -> 1203[label="",style="dashed", color="magenta", weight=3]; 985 -> 1204[label="",style="dashed", color="magenta", weight=3]; 986 -> 694[label="",style="dashed", color="red", weight=0]; 986[label="yvy4000 * Pos yvy30010",fontsize=16,color="magenta"];986 -> 1205[label="",style="dashed", color="magenta", weight=3]; 986 -> 1206[label="",style="dashed", color="magenta", weight=3]; 987 -> 694[label="",style="dashed", color="red", weight=0]; 987[label="Pos yvy40010 * yvy3000",fontsize=16,color="magenta"];987 -> 1207[label="",style="dashed", color="magenta", weight=3]; 987 -> 1208[label="",style="dashed", color="magenta", weight=3]; 988 -> 694[label="",style="dashed", color="red", weight=0]; 988[label="yvy4000 * Neg yvy30010",fontsize=16,color="magenta"];988 -> 1209[label="",style="dashed", color="magenta", weight=3]; 988 -> 1210[label="",style="dashed", color="magenta", weight=3]; 989 -> 694[label="",style="dashed", color="red", weight=0]; 989[label="Neg yvy40010 * yvy3000",fontsize=16,color="magenta"];989 -> 1211[label="",style="dashed", color="magenta", weight=3]; 989 -> 1212[label="",style="dashed", color="magenta", weight=3]; 990 -> 694[label="",style="dashed", color="red", weight=0]; 990[label="yvy4000 * Neg yvy30010",fontsize=16,color="magenta"];990 -> 1213[label="",style="dashed", color="magenta", weight=3]; 990 -> 1214[label="",style="dashed", color="magenta", weight=3]; 991[label="primMulInt (Pos yvy30000) yvy4001",fontsize=16,color="burlywood",shape="box"];4393[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];991 -> 4393[label="",style="solid", color="burlywood", weight=9]; 4393 -> 1215[label="",style="solid", color="burlywood", weight=3]; 4394[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];991 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 1216[label="",style="solid", color="burlywood", weight=3]; 992[label="primMulInt (Neg yvy30000) yvy4001",fontsize=16,color="burlywood",shape="box"];4395[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];992 -> 4395[label="",style="solid", color="burlywood", weight=9]; 4395 -> 1217[label="",style="solid", color="burlywood", weight=3]; 4396[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];992 -> 4396[label="",style="solid", color="burlywood", weight=9]; 4396 -> 1218[label="",style="solid", color="burlywood", weight=3]; 993[label="Integer yvy30000 * Integer yvy40010",fontsize=16,color="black",shape="box"];993 -> 1219[label="",style="solid", color="black", weight=3]; 994[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 otherwise",fontsize=16,color="black",shape="box"];994 -> 1220[label="",style="solid", color="black", weight=3]; 995 -> 833[label="",style="dashed", color="red", weight=0]; 995[label="FiniteMap.mkBalBranch (yvy500 : yvy501) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (yvy400 : yvy401) yvy41)",fontsize=16,color="magenta"];995 -> 1221[label="",style="dashed", color="magenta", weight=3]; 995 -> 1222[label="",style="dashed", color="magenta", weight=3]; 995 -> 1223[label="",style="dashed", color="magenta", weight=3]; 996[label="FiniteMap.Branch (yvy400 : yvy401) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];996 -> 1224[label="",style="dashed", color="green", weight=3]; 997[label="yvy400 : yvy401",fontsize=16,color="green",shape="box"];998[label="yvy54",fontsize=16,color="green",shape="box"];999[label="primPlusInt (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54)",fontsize=16,color="black",shape="box"];999 -> 1225[label="",style="solid", color="black", weight=3]; 1000[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 True",fontsize=16,color="black",shape="box"];1000 -> 1226[label="",style="solid", color="black", weight=3]; 1001[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 False",fontsize=16,color="black",shape="triangle"];1001 -> 1227[label="",style="solid", color="black", weight=3]; 1002 -> 1001[label="",style="dashed", color="red", weight=0]; 1002[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 False",fontsize=16,color="magenta"];1003[label="FiniteMap.Branch [] (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1003 -> 1228[label="",style="dashed", color="green", weight=3]; 1004[label="[]",fontsize=16,color="green",shape="box"];1005[label="yvy54",fontsize=16,color="green",shape="box"];1883[label="primMulNat (Succ yvy300000) yvy40010",fontsize=16,color="burlywood",shape="box"];4397[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];1883 -> 4397[label="",style="solid", color="burlywood", weight=9]; 4397 -> 2197[label="",style="solid", color="burlywood", weight=3]; 4398[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1883 -> 4398[label="",style="solid", color="burlywood", weight=9]; 4398 -> 2198[label="",style="solid", color="burlywood", weight=3]; 1884[label="primMulNat Zero yvy40010",fontsize=16,color="burlywood",shape="box"];4399[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];1884 -> 4399[label="",style="solid", color="burlywood", weight=9]; 4399 -> 2199[label="",style="solid", color="burlywood", weight=3]; 4400[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1884 -> 4400[label="",style="solid", color="burlywood", weight=9]; 4400 -> 2200[label="",style="solid", color="burlywood", weight=3]; 2957[label="Succ (Succ (primPlusNat yvy2920 yvy400100))",fontsize=16,color="green",shape="box"];2957 -> 2968[label="",style="dashed", color="green", weight=3]; 2958[label="Succ yvy400100",fontsize=16,color="green",shape="box"];1007[label="yvy53",fontsize=16,color="green",shape="box"];1008[label="FiniteMap.Branch yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="green",shape="box"];1236 -> 694[label="",style="dashed", color="red", weight=0]; 1236[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1236 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1235[label="yvy130 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1235 -> 1241[label="",style="solid", color="black", weight=3]; 1237[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];1237 -> 1251[label="",style="solid", color="black", weight=3]; 1238[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1238 -> 1252[label="",style="solid", color="black", weight=3]; 1012[label="yvy53",fontsize=16,color="green",shape="box"];1013[label="FiniteMap.Branch yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="green",shape="box"];1248 -> 694[label="",style="dashed", color="red", weight=0]; 1248[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="magenta"];1248 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1247[label="yvy134 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1247 -> 1255[label="",style="solid", color="black", weight=3]; 1249[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];1249 -> 1265[label="",style="solid", color="black", weight=3]; 1250[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1250 -> 1266[label="",style="solid", color="black", weight=3]; 1017[label="yvy53",fontsize=16,color="green",shape="box"];1018[label="FiniteMap.Branch yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="green",shape="box"];1262 -> 694[label="",style="dashed", color="red", weight=0]; 1262[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1262 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1261[label="yvy138 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1261 -> 1269[label="",style="solid", color="black", weight=3]; 1263[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];1263 -> 1279[label="",style="solid", color="black", weight=3]; 1264[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1264 -> 1280[label="",style="solid", color="black", weight=3]; 1022[label="yvy53",fontsize=16,color="green",shape="box"];1023[label="FiniteMap.Branch yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="green",shape="box"];1276 -> 694[label="",style="dashed", color="red", weight=0]; 1276[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="magenta"];1276 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1275[label="yvy142 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1275 -> 1283[label="",style="solid", color="black", weight=3]; 1277[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];1277 -> 1363[label="",style="solid", color="black", weight=3]; 1278[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1278 -> 1364[label="",style="solid", color="black", weight=3]; 1027[label="Pos yvy40010",fontsize=16,color="green",shape="box"];1028[label="yvy3000",fontsize=16,color="green",shape="box"];1029[label="yvy4000",fontsize=16,color="green",shape="box"];1030[label="Pos yvy30010",fontsize=16,color="green",shape="box"];1031[label="Neg yvy40010",fontsize=16,color="green",shape="box"];1032[label="yvy3000",fontsize=16,color="green",shape="box"];1033[label="yvy4000",fontsize=16,color="green",shape="box"];1034[label="Pos yvy30010",fontsize=16,color="green",shape="box"];1035[label="Pos yvy40010",fontsize=16,color="green",shape="box"];1036[label="yvy3000",fontsize=16,color="green",shape="box"];1037[label="yvy4000",fontsize=16,color="green",shape="box"];1038[label="Neg yvy30010",fontsize=16,color="green",shape="box"];1039[label="Neg yvy40010",fontsize=16,color="green",shape="box"];1040[label="yvy3000",fontsize=16,color="green",shape="box"];1041[label="yvy4000",fontsize=16,color="green",shape="box"];1042[label="Neg yvy30010",fontsize=16,color="green",shape="box"];1043[label="yvy40000",fontsize=16,color="green",shape="box"];1044[label="yvy30000",fontsize=16,color="green",shape="box"];1407 -> 891[label="",style="dashed", color="red", weight=0]; 1407[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1408 -> 892[label="",style="dashed", color="red", weight=0]; 1408[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1409 -> 893[label="",style="dashed", color="red", weight=0]; 1409[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1410 -> 894[label="",style="dashed", color="red", weight=0]; 1410[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1411 -> 895[label="",style="dashed", color="red", weight=0]; 1411[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1412 -> 896[label="",style="dashed", color="red", weight=0]; 1412[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1413 -> 897[label="",style="dashed", color="red", weight=0]; 1413[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1414 -> 898[label="",style="dashed", color="red", weight=0]; 1414[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1415 -> 899[label="",style="dashed", color="red", weight=0]; 1415[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1416 -> 900[label="",style="dashed", color="red", weight=0]; 1416[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1417 -> 901[label="",style="dashed", color="red", weight=0]; 1417[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1418 -> 902[label="",style="dashed", color="red", weight=0]; 1418[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1419 -> 903[label="",style="dashed", color="red", weight=0]; 1419[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1420 -> 904[label="",style="dashed", color="red", weight=0]; 1420[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1421 -> 891[label="",style="dashed", color="red", weight=0]; 1421[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1421 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1422 -> 892[label="",style="dashed", color="red", weight=0]; 1422[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1422 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1423 -> 893[label="",style="dashed", color="red", weight=0]; 1423[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1423 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1424 -> 894[label="",style="dashed", color="red", weight=0]; 1424[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1424 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1425 -> 895[label="",style="dashed", color="red", weight=0]; 1425[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1425 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1426 -> 896[label="",style="dashed", color="red", weight=0]; 1426[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1426 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1427 -> 897[label="",style="dashed", color="red", weight=0]; 1427[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1427 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1428 -> 898[label="",style="dashed", color="red", weight=0]; 1428[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1428 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1429 -> 899[label="",style="dashed", color="red", weight=0]; 1429[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1429 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1430 -> 900[label="",style="dashed", color="red", weight=0]; 1430[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1430 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1431 -> 901[label="",style="dashed", color="red", weight=0]; 1431[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1431 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1432 -> 902[label="",style="dashed", color="red", weight=0]; 1432[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1432 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1433 -> 903[label="",style="dashed", color="red", weight=0]; 1433[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1433 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1434 -> 904[label="",style="dashed", color="red", weight=0]; 1434[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1434 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1435[label="False && yvy168",fontsize=16,color="black",shape="box"];1435 -> 1508[label="",style="solid", color="black", weight=3]; 1436[label="True && yvy168",fontsize=16,color="black",shape="box"];1436 -> 1509[label="",style="solid", color="black", weight=3]; 1437[label="compare1 (yvy150,yvy151) (yvy152,yvy153) ((yvy150,yvy151) <= (yvy152,yvy153))",fontsize=16,color="black",shape="box"];1437 -> 1510[label="",style="solid", color="black", weight=3]; 1438[label="EQ",fontsize=16,color="green",shape="box"];1439 -> 891[label="",style="dashed", color="red", weight=0]; 1439[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1439 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1440 -> 892[label="",style="dashed", color="red", weight=0]; 1440[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1440 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1441 -> 893[label="",style="dashed", color="red", weight=0]; 1441[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1441 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1442 -> 894[label="",style="dashed", color="red", weight=0]; 1442[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1442 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1443 -> 895[label="",style="dashed", color="red", weight=0]; 1443[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1443 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1444 -> 896[label="",style="dashed", color="red", weight=0]; 1444[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1444 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1445 -> 897[label="",style="dashed", color="red", weight=0]; 1445[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1445 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1446 -> 898[label="",style="dashed", color="red", weight=0]; 1446[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1446 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1447 -> 899[label="",style="dashed", color="red", weight=0]; 1447[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1447 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1448 -> 900[label="",style="dashed", color="red", weight=0]; 1448[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1448 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1449 -> 901[label="",style="dashed", color="red", weight=0]; 1449[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1449 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1450 -> 902[label="",style="dashed", color="red", weight=0]; 1450[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1450 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1451 -> 903[label="",style="dashed", color="red", weight=0]; 1451[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1451 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1452 -> 904[label="",style="dashed", color="red", weight=0]; 1452[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];1452 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1453[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4401[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4401[label="",style="solid", color="blue", weight=9]; 4401 -> 1539[label="",style="solid", color="blue", weight=3]; 4402[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 1540[label="",style="solid", color="blue", weight=3]; 4403[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 1541[label="",style="solid", color="blue", weight=3]; 4404[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 1542[label="",style="solid", color="blue", weight=3]; 4405[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 1543[label="",style="solid", color="blue", weight=3]; 4406[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 1544[label="",style="solid", color="blue", weight=3]; 4407[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 1545[label="",style="solid", color="blue", weight=3]; 4408[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 1546[label="",style="solid", color="blue", weight=3]; 4409[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4409[label="",style="solid", color="blue", weight=9]; 4409 -> 1547[label="",style="solid", color="blue", weight=3]; 4410[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4410[label="",style="solid", color="blue", weight=9]; 4410 -> 1548[label="",style="solid", color="blue", weight=3]; 4411[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4411[label="",style="solid", color="blue", weight=9]; 4411 -> 1549[label="",style="solid", color="blue", weight=3]; 4412[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4412[label="",style="solid", color="blue", weight=9]; 4412 -> 1550[label="",style="solid", color="blue", weight=3]; 4413[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4413[label="",style="solid", color="blue", weight=9]; 4413 -> 1551[label="",style="solid", color="blue", weight=3]; 4414[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4414[label="",style="solid", color="blue", weight=9]; 4414 -> 1552[label="",style="solid", color="blue", weight=3]; 1454[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];4415[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4415[label="",style="solid", color="blue", weight=9]; 4415 -> 1553[label="",style="solid", color="blue", weight=3]; 4416[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4416[label="",style="solid", color="blue", weight=9]; 4416 -> 1554[label="",style="solid", color="blue", weight=3]; 4417[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4417[label="",style="solid", color="blue", weight=9]; 4417 -> 1555[label="",style="solid", color="blue", weight=3]; 4418[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4418[label="",style="solid", color="blue", weight=9]; 4418 -> 1556[label="",style="solid", color="blue", weight=3]; 4419[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4419[label="",style="solid", color="blue", weight=9]; 4419 -> 1557[label="",style="solid", color="blue", weight=3]; 4420[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 1558[label="",style="solid", color="blue", weight=3]; 4421[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 1559[label="",style="solid", color="blue", weight=3]; 4422[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 1560[label="",style="solid", color="blue", weight=3]; 4423[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4423[label="",style="solid", color="blue", weight=9]; 4423 -> 1561[label="",style="solid", color="blue", weight=3]; 4424[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4424[label="",style="solid", color="blue", weight=9]; 4424 -> 1562[label="",style="solid", color="blue", weight=3]; 4425[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 1563[label="",style="solid", color="blue", weight=3]; 4426[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 1564[label="",style="solid", color="blue", weight=3]; 4427[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 1565[label="",style="solid", color="blue", weight=3]; 4428[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 1566[label="",style="solid", color="blue", weight=3]; 1455[label="compare1 (yvy89,yvy90,yvy91) (yvy92,yvy93,yvy94) ((yvy89,yvy90,yvy91) <= (yvy92,yvy93,yvy94))",fontsize=16,color="black",shape="box"];1455 -> 1567[label="",style="solid", color="black", weight=3]; 1456[label="EQ",fontsize=16,color="green",shape="box"];1097[label="LT",fontsize=16,color="green",shape="box"];1098[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];1098 -> 1457[label="",style="solid", color="black", weight=3]; 1099[label="LT",fontsize=16,color="green",shape="box"];1100[label="compare0 (Just yvy4000) Nothing otherwise",fontsize=16,color="black",shape="box"];1100 -> 1458[label="",style="solid", color="black", weight=3]; 1101[label="yvy4000",fontsize=16,color="green",shape="box"];1102[label="yvy3000",fontsize=16,color="green",shape="box"];891[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4429[label="yvy4000/(yvy40000,yvy40001,yvy40002)",fontsize=10,color="white",style="solid",shape="box"];891 -> 4429[label="",style="solid", color="burlywood", weight=9]; 4429 -> 1045[label="",style="solid", color="burlywood", weight=3]; 1103[label="yvy4000",fontsize=16,color="green",shape="box"];1104[label="yvy3000",fontsize=16,color="green",shape="box"];892[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4430[label="yvy4000/Integer yvy40000",fontsize=10,color="white",style="solid",shape="box"];892 -> 4430[label="",style="solid", color="burlywood", weight=9]; 4430 -> 1046[label="",style="solid", color="burlywood", weight=3]; 1105[label="yvy4000",fontsize=16,color="green",shape="box"];1106[label="yvy3000",fontsize=16,color="green",shape="box"];893[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4431[label="yvy4000/False",fontsize=10,color="white",style="solid",shape="box"];893 -> 4431[label="",style="solid", color="burlywood", weight=9]; 4431 -> 1047[label="",style="solid", color="burlywood", weight=3]; 4432[label="yvy4000/True",fontsize=10,color="white",style="solid",shape="box"];893 -> 4432[label="",style="solid", color="burlywood", weight=9]; 4432 -> 1048[label="",style="solid", color="burlywood", weight=3]; 1107[label="yvy4000",fontsize=16,color="green",shape="box"];1108[label="yvy3000",fontsize=16,color="green",shape="box"];894[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4433[label="yvy4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];894 -> 4433[label="",style="solid", color="burlywood", weight=9]; 4433 -> 1049[label="",style="solid", color="burlywood", weight=3]; 4434[label="yvy4000/Just yvy40000",fontsize=10,color="white",style="solid",shape="box"];894 -> 4434[label="",style="solid", color="burlywood", weight=9]; 4434 -> 1050[label="",style="solid", color="burlywood", weight=3]; 1109[label="yvy4000",fontsize=16,color="green",shape="box"];1110[label="yvy3000",fontsize=16,color="green",shape="box"];895[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4435[label="yvy4000/LT",fontsize=10,color="white",style="solid",shape="box"];895 -> 4435[label="",style="solid", color="burlywood", weight=9]; 4435 -> 1051[label="",style="solid", color="burlywood", weight=3]; 4436[label="yvy4000/EQ",fontsize=10,color="white",style="solid",shape="box"];895 -> 4436[label="",style="solid", color="burlywood", weight=9]; 4436 -> 1052[label="",style="solid", color="burlywood", weight=3]; 4437[label="yvy4000/GT",fontsize=10,color="white",style="solid",shape="box"];895 -> 4437[label="",style="solid", color="burlywood", weight=9]; 4437 -> 1053[label="",style="solid", color="burlywood", weight=3]; 1111[label="yvy4000",fontsize=16,color="green",shape="box"];1112[label="yvy3000",fontsize=16,color="green",shape="box"];896[label="yvy4000 == yvy3000",fontsize=16,color="black",shape="triangle"];896 -> 1054[label="",style="solid", color="black", weight=3]; 1113[label="yvy4000",fontsize=16,color="green",shape="box"];1114[label="yvy3000",fontsize=16,color="green",shape="box"];897[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4438[label="yvy4000/(yvy40000,yvy40001)",fontsize=10,color="white",style="solid",shape="box"];897 -> 4438[label="",style="solid", color="burlywood", weight=9]; 4438 -> 1055[label="",style="solid", color="burlywood", weight=3]; 1115[label="yvy4000",fontsize=16,color="green",shape="box"];1116[label="yvy3000",fontsize=16,color="green",shape="box"];898[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4439[label="yvy4000/()",fontsize=10,color="white",style="solid",shape="box"];898 -> 4439[label="",style="solid", color="burlywood", weight=9]; 4439 -> 1056[label="",style="solid", color="burlywood", weight=3]; 1117[label="yvy4000",fontsize=16,color="green",shape="box"];1118[label="yvy3000",fontsize=16,color="green",shape="box"];899[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4440[label="yvy4000/yvy40000 :% yvy40001",fontsize=10,color="white",style="solid",shape="box"];899 -> 4440[label="",style="solid", color="burlywood", weight=9]; 4440 -> 1057[label="",style="solid", color="burlywood", weight=3]; 1119[label="yvy4000",fontsize=16,color="green",shape="box"];1120[label="yvy3000",fontsize=16,color="green",shape="box"];900[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4441[label="yvy4000/Left yvy40000",fontsize=10,color="white",style="solid",shape="box"];900 -> 4441[label="",style="solid", color="burlywood", weight=9]; 4441 -> 1058[label="",style="solid", color="burlywood", weight=3]; 4442[label="yvy4000/Right yvy40000",fontsize=10,color="white",style="solid",shape="box"];900 -> 4442[label="",style="solid", color="burlywood", weight=9]; 4442 -> 1059[label="",style="solid", color="burlywood", weight=3]; 1121[label="yvy4000",fontsize=16,color="green",shape="box"];1122[label="yvy3000",fontsize=16,color="green",shape="box"];901[label="yvy4000 == yvy3000",fontsize=16,color="black",shape="triangle"];901 -> 1060[label="",style="solid", color="black", weight=3]; 1123[label="yvy4000",fontsize=16,color="green",shape="box"];1124[label="yvy3000",fontsize=16,color="green",shape="box"];902[label="yvy4000 == yvy3000",fontsize=16,color="black",shape="triangle"];902 -> 1061[label="",style="solid", color="black", weight=3]; 1125[label="yvy4000",fontsize=16,color="green",shape="box"];1126[label="yvy3000",fontsize=16,color="green",shape="box"];903[label="yvy4000 == yvy3000",fontsize=16,color="burlywood",shape="triangle"];4443[label="yvy4000/yvy40000 : yvy40001",fontsize=10,color="white",style="solid",shape="box"];903 -> 4443[label="",style="solid", color="burlywood", weight=9]; 4443 -> 1062[label="",style="solid", color="burlywood", weight=3]; 4444[label="yvy4000/[]",fontsize=10,color="white",style="solid",shape="box"];903 -> 4444[label="",style="solid", color="burlywood", weight=9]; 4444 -> 1063[label="",style="solid", color="burlywood", weight=3]; 1127[label="yvy4000",fontsize=16,color="green",shape="box"];1128[label="yvy3000",fontsize=16,color="green",shape="box"];904[label="yvy4000 == yvy3000",fontsize=16,color="black",shape="triangle"];904 -> 1064[label="",style="solid", color="black", weight=3]; 1129 -> 1600[label="",style="dashed", color="red", weight=0]; 1129[label="compare1 (Just yvy100) (Just yvy101) (Just yvy100 <= Just yvy101)",fontsize=16,color="magenta"];1129 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1130[label="EQ",fontsize=16,color="green",shape="box"];1131[label="yvy4000",fontsize=16,color="green",shape="box"];1132[label="yvy3000",fontsize=16,color="green",shape="box"];1133[label="yvy4000",fontsize=16,color="green",shape="box"];1134[label="yvy3000",fontsize=16,color="green",shape="box"];1135[label="yvy4000",fontsize=16,color="green",shape="box"];1136[label="yvy3000",fontsize=16,color="green",shape="box"];1137[label="yvy4000",fontsize=16,color="green",shape="box"];1138[label="yvy3000",fontsize=16,color="green",shape="box"];1139[label="yvy4000",fontsize=16,color="green",shape="box"];1140[label="yvy3000",fontsize=16,color="green",shape="box"];1141[label="yvy4000",fontsize=16,color="green",shape="box"];1142[label="yvy3000",fontsize=16,color="green",shape="box"];1143[label="yvy4000",fontsize=16,color="green",shape="box"];1144[label="yvy3000",fontsize=16,color="green",shape="box"];1145[label="yvy4000",fontsize=16,color="green",shape="box"];1146[label="yvy3000",fontsize=16,color="green",shape="box"];1147[label="yvy4000",fontsize=16,color="green",shape="box"];1148[label="yvy3000",fontsize=16,color="green",shape="box"];1149[label="yvy4000",fontsize=16,color="green",shape="box"];1150[label="yvy3000",fontsize=16,color="green",shape="box"];1151[label="yvy4000",fontsize=16,color="green",shape="box"];1152[label="yvy3000",fontsize=16,color="green",shape="box"];1153[label="yvy4000",fontsize=16,color="green",shape="box"];1154[label="yvy3000",fontsize=16,color="green",shape="box"];1155[label="yvy4000",fontsize=16,color="green",shape="box"];1156[label="yvy3000",fontsize=16,color="green",shape="box"];1157[label="yvy4000",fontsize=16,color="green",shape="box"];1158[label="yvy3000",fontsize=16,color="green",shape="box"];1159 -> 1670[label="",style="dashed", color="red", weight=0]; 1159[label="compare1 (Left yvy107) (Left yvy108) (Left yvy107 <= Left yvy108)",fontsize=16,color="magenta"];1159 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1160[label="EQ",fontsize=16,color="green",shape="box"];1161[label="LT",fontsize=16,color="green",shape="box"];1162[label="compare0 (Right yvy4000) (Left yvy3000) otherwise",fontsize=16,color="black",shape="box"];1162 -> 1461[label="",style="solid", color="black", weight=3]; 1163[label="yvy4000",fontsize=16,color="green",shape="box"];1164[label="yvy3000",fontsize=16,color="green",shape="box"];1165[label="yvy4000",fontsize=16,color="green",shape="box"];1166[label="yvy3000",fontsize=16,color="green",shape="box"];1167[label="yvy4000",fontsize=16,color="green",shape="box"];1168[label="yvy3000",fontsize=16,color="green",shape="box"];1169[label="yvy4000",fontsize=16,color="green",shape="box"];1170[label="yvy3000",fontsize=16,color="green",shape="box"];1171[label="yvy4000",fontsize=16,color="green",shape="box"];1172[label="yvy3000",fontsize=16,color="green",shape="box"];1173[label="yvy4000",fontsize=16,color="green",shape="box"];1174[label="yvy3000",fontsize=16,color="green",shape="box"];1175[label="yvy4000",fontsize=16,color="green",shape="box"];1176[label="yvy3000",fontsize=16,color="green",shape="box"];1177[label="yvy4000",fontsize=16,color="green",shape="box"];1178[label="yvy3000",fontsize=16,color="green",shape="box"];1179[label="yvy4000",fontsize=16,color="green",shape="box"];1180[label="yvy3000",fontsize=16,color="green",shape="box"];1181[label="yvy4000",fontsize=16,color="green",shape="box"];1182[label="yvy3000",fontsize=16,color="green",shape="box"];1183[label="yvy4000",fontsize=16,color="green",shape="box"];1184[label="yvy3000",fontsize=16,color="green",shape="box"];1185[label="yvy4000",fontsize=16,color="green",shape="box"];1186[label="yvy3000",fontsize=16,color="green",shape="box"];1187[label="yvy4000",fontsize=16,color="green",shape="box"];1188[label="yvy3000",fontsize=16,color="green",shape="box"];1189[label="yvy4000",fontsize=16,color="green",shape="box"];1190[label="yvy3000",fontsize=16,color="green",shape="box"];1191 -> 1681[label="",style="dashed", color="red", weight=0]; 1191[label="compare1 (Right yvy114) (Right yvy115) (Right yvy114 <= Right yvy115)",fontsize=16,color="magenta"];1191 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1192[label="EQ",fontsize=16,color="green",shape="box"];1193[label="LT",fontsize=16,color="green",shape="box"];1194[label="LT",fontsize=16,color="green",shape="box"];1195[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];1195 -> 1463[label="",style="solid", color="black", weight=3]; 1196[label="LT",fontsize=16,color="green",shape="box"];1197[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];1197 -> 1464[label="",style="solid", color="black", weight=3]; 1198[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];1198 -> 1465[label="",style="solid", color="black", weight=3]; 1199[label="Pos yvy40010",fontsize=16,color="green",shape="box"];1200[label="yvy3000",fontsize=16,color="green",shape="box"];1201[label="yvy4000",fontsize=16,color="green",shape="box"];1202[label="Pos yvy30010",fontsize=16,color="green",shape="box"];1203[label="Neg yvy40010",fontsize=16,color="green",shape="box"];1204[label="yvy3000",fontsize=16,color="green",shape="box"];1205[label="yvy4000",fontsize=16,color="green",shape="box"];1206[label="Pos yvy30010",fontsize=16,color="green",shape="box"];1207[label="Pos yvy40010",fontsize=16,color="green",shape="box"];1208[label="yvy3000",fontsize=16,color="green",shape="box"];1209[label="yvy4000",fontsize=16,color="green",shape="box"];1210[label="Neg yvy30010",fontsize=16,color="green",shape="box"];1211[label="Neg yvy40010",fontsize=16,color="green",shape="box"];1212[label="yvy3000",fontsize=16,color="green",shape="box"];1213[label="yvy4000",fontsize=16,color="green",shape="box"];1214[label="Neg yvy30010",fontsize=16,color="green",shape="box"];1215[label="primMulInt (Pos yvy30000) (Pos yvy40010)",fontsize=16,color="black",shape="box"];1215 -> 1466[label="",style="solid", color="black", weight=3]; 1216[label="primMulInt (Pos yvy30000) (Neg yvy40010)",fontsize=16,color="black",shape="box"];1216 -> 1467[label="",style="solid", color="black", weight=3]; 1217[label="primMulInt (Neg yvy30000) (Pos yvy40010)",fontsize=16,color="black",shape="box"];1217 -> 1468[label="",style="solid", color="black", weight=3]; 1218[label="primMulInt (Neg yvy30000) (Neg yvy40010)",fontsize=16,color="black",shape="box"];1218 -> 1469[label="",style="solid", color="black", weight=3]; 1219[label="Integer (primMulInt yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1219 -> 1470[label="",style="dashed", color="green", weight=3]; 1220[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (yvy500 : yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400 : yvy401) yvy41 True",fontsize=16,color="black",shape="box"];1220 -> 1471[label="",style="solid", color="black", weight=3]; 1221[label="yvy500 : yvy501",fontsize=16,color="green",shape="box"];1222 -> 33[label="",style="dashed", color="red", weight=0]; 1222[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (yvy400 : yvy401) yvy41",fontsize=16,color="magenta"];1222 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1223[label="yvy53",fontsize=16,color="green",shape="box"];1224[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="black",shape="triangle"];1224 -> 1474[label="",style="solid", color="black", weight=3]; 1225[label="primPlusInt (FiniteMap.sizeFM yvy118) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54)",fontsize=16,color="burlywood",shape="box"];4445[label="yvy118/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1225 -> 4445[label="",style="solid", color="burlywood", weight=9]; 4445 -> 1475[label="",style="solid", color="burlywood", weight=3]; 4446[label="yvy118/FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184",fontsize=10,color="white",style="solid",shape="box"];1225 -> 4446[label="",style="solid", color="burlywood", weight=9]; 4446 -> 1476[label="",style="solid", color="burlywood", weight=3]; 1226 -> 3922[label="",style="dashed", color="red", weight=0]; 1226[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];1226 -> 3923[label="",style="dashed", color="magenta", weight=3]; 1226 -> 3924[label="",style="dashed", color="magenta", weight=3]; 1226 -> 3925[label="",style="dashed", color="magenta", weight=3]; 1226 -> 3926[label="",style="dashed", color="magenta", weight=3]; 1226 -> 3927[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1894[label="",style="dashed", color="red", weight=0]; 1227[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54)",fontsize=16,color="magenta"];1227 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1224[label="",style="dashed", color="red", weight=0]; 1228[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];2197[label="primMulNat (Succ yvy300000) (Succ yvy400100)",fontsize=16,color="black",shape="box"];2197 -> 2585[label="",style="solid", color="black", weight=3]; 2198[label="primMulNat (Succ yvy300000) Zero",fontsize=16,color="black",shape="box"];2198 -> 2586[label="",style="solid", color="black", weight=3]; 2199[label="primMulNat Zero (Succ yvy400100)",fontsize=16,color="black",shape="box"];2199 -> 2587[label="",style="solid", color="black", weight=3]; 2200[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2200 -> 2588[label="",style="solid", color="black", weight=3]; 2968[label="primPlusNat yvy2920 yvy400100",fontsize=16,color="burlywood",shape="triangle"];4447[label="yvy2920/Succ yvy29200",fontsize=10,color="white",style="solid",shape="box"];2968 -> 4447[label="",style="solid", color="burlywood", weight=9]; 4447 -> 3107[label="",style="solid", color="burlywood", weight=3]; 4448[label="yvy2920/Zero",fontsize=10,color="white",style="solid",shape="box"];2968 -> 4448[label="",style="solid", color="burlywood", weight=9]; 4448 -> 3108[label="",style="solid", color="burlywood", weight=3]; 1239[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1239 -> 1569[label="",style="solid", color="black", weight=3]; 1240 -> 546[label="",style="dashed", color="red", weight=0]; 1240[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1241 -> 895[label="",style="dashed", color="red", weight=0]; 1241[label="compare yvy130 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64) == LT",fontsize=16,color="magenta"];1241 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1251[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];1251 -> 1572[label="",style="solid", color="black", weight=3]; 1252 -> 833[label="",style="dashed", color="red", weight=0]; 1252[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1252 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1239[label="",style="dashed", color="red", weight=0]; 1253[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1254 -> 551[label="",style="dashed", color="red", weight=0]; 1254[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="magenta"];1255 -> 895[label="",style="dashed", color="red", weight=0]; 1255[label="compare yvy134 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64) == LT",fontsize=16,color="magenta"];1255 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1255 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1265[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];1265 -> 1579[label="",style="solid", color="black", weight=3]; 1266 -> 833[label="",style="dashed", color="red", weight=0]; 1266[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1266 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1239[label="",style="dashed", color="red", weight=0]; 1267[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1268 -> 556[label="",style="dashed", color="red", weight=0]; 1268[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1269 -> 895[label="",style="dashed", color="red", weight=0]; 1269[label="compare yvy138 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64) == LT",fontsize=16,color="magenta"];1269 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1279[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];1279 -> 1586[label="",style="solid", color="black", weight=3]; 1280 -> 833[label="",style="dashed", color="red", weight=0]; 1280[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1280 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1281 -> 1239[label="",style="dashed", color="red", weight=0]; 1281[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1282 -> 561[label="",style="dashed", color="red", weight=0]; 1282[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="magenta"];1283 -> 895[label="",style="dashed", color="red", weight=0]; 1283[label="compare yvy142 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64) == LT",fontsize=16,color="magenta"];1283 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1283 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1363[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];1363 -> 1593[label="",style="solid", color="black", weight=3]; 1364 -> 833[label="",style="dashed", color="red", weight=0]; 1364[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1364 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1480[label="yvy4001",fontsize=16,color="green",shape="box"];1481[label="yvy3001",fontsize=16,color="green",shape="box"];1482[label="yvy4001",fontsize=16,color="green",shape="box"];1483[label="yvy3001",fontsize=16,color="green",shape="box"];1484[label="yvy4001",fontsize=16,color="green",shape="box"];1485[label="yvy3001",fontsize=16,color="green",shape="box"];1486[label="yvy4001",fontsize=16,color="green",shape="box"];1487[label="yvy3001",fontsize=16,color="green",shape="box"];1488[label="yvy4001",fontsize=16,color="green",shape="box"];1489[label="yvy3001",fontsize=16,color="green",shape="box"];1490[label="yvy4001",fontsize=16,color="green",shape="box"];1491[label="yvy3001",fontsize=16,color="green",shape="box"];1492[label="yvy4001",fontsize=16,color="green",shape="box"];1493[label="yvy3001",fontsize=16,color="green",shape="box"];1494[label="yvy4001",fontsize=16,color="green",shape="box"];1495[label="yvy3001",fontsize=16,color="green",shape="box"];1496[label="yvy4001",fontsize=16,color="green",shape="box"];1497[label="yvy3001",fontsize=16,color="green",shape="box"];1498[label="yvy4001",fontsize=16,color="green",shape="box"];1499[label="yvy3001",fontsize=16,color="green",shape="box"];1500[label="yvy4001",fontsize=16,color="green",shape="box"];1501[label="yvy3001",fontsize=16,color="green",shape="box"];1502[label="yvy4001",fontsize=16,color="green",shape="box"];1503[label="yvy3001",fontsize=16,color="green",shape="box"];1504[label="yvy4001",fontsize=16,color="green",shape="box"];1505[label="yvy3001",fontsize=16,color="green",shape="box"];1506[label="yvy4001",fontsize=16,color="green",shape="box"];1507[label="yvy3001",fontsize=16,color="green",shape="box"];1508[label="False",fontsize=16,color="green",shape="box"];1509[label="yvy168",fontsize=16,color="green",shape="box"];1510 -> 1730[label="",style="dashed", color="red", weight=0]; 1510[label="compare1 (yvy150,yvy151) (yvy152,yvy153) (yvy150 < yvy152 || yvy150 == yvy152 && yvy151 <= yvy153)",fontsize=16,color="magenta"];1510 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1511[label="yvy4000",fontsize=16,color="green",shape="box"];1512[label="yvy3000",fontsize=16,color="green",shape="box"];1513[label="yvy4000",fontsize=16,color="green",shape="box"];1514[label="yvy3000",fontsize=16,color="green",shape="box"];1515[label="yvy4000",fontsize=16,color="green",shape="box"];1516[label="yvy3000",fontsize=16,color="green",shape="box"];1517[label="yvy4000",fontsize=16,color="green",shape="box"];1518[label="yvy3000",fontsize=16,color="green",shape="box"];1519[label="yvy4000",fontsize=16,color="green",shape="box"];1520[label="yvy3000",fontsize=16,color="green",shape="box"];1521[label="yvy4000",fontsize=16,color="green",shape="box"];1522[label="yvy3000",fontsize=16,color="green",shape="box"];1523[label="yvy4000",fontsize=16,color="green",shape="box"];1524[label="yvy3000",fontsize=16,color="green",shape="box"];1525[label="yvy4000",fontsize=16,color="green",shape="box"];1526[label="yvy3000",fontsize=16,color="green",shape="box"];1527[label="yvy4000",fontsize=16,color="green",shape="box"];1528[label="yvy3000",fontsize=16,color="green",shape="box"];1529[label="yvy4000",fontsize=16,color="green",shape="box"];1530[label="yvy3000",fontsize=16,color="green",shape="box"];1531[label="yvy4000",fontsize=16,color="green",shape="box"];1532[label="yvy3000",fontsize=16,color="green",shape="box"];1533[label="yvy4000",fontsize=16,color="green",shape="box"];1534[label="yvy3000",fontsize=16,color="green",shape="box"];1535[label="yvy4000",fontsize=16,color="green",shape="box"];1536[label="yvy3000",fontsize=16,color="green",shape="box"];1537[label="yvy4000",fontsize=16,color="green",shape="box"];1538[label="yvy3000",fontsize=16,color="green",shape="box"];1539 -> 891[label="",style="dashed", color="red", weight=0]; 1539[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1539 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1540 -> 892[label="",style="dashed", color="red", weight=0]; 1540[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1540 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1541 -> 893[label="",style="dashed", color="red", weight=0]; 1541[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1541 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1542 -> 894[label="",style="dashed", color="red", weight=0]; 1542[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1542 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1543 -> 895[label="",style="dashed", color="red", weight=0]; 1543[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1543 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1544 -> 896[label="",style="dashed", color="red", weight=0]; 1544[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1544 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1545 -> 897[label="",style="dashed", color="red", weight=0]; 1545[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1545 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1546 -> 898[label="",style="dashed", color="red", weight=0]; 1546[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1546 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1547 -> 899[label="",style="dashed", color="red", weight=0]; 1547[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1547 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1548 -> 900[label="",style="dashed", color="red", weight=0]; 1548[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1548 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1549 -> 901[label="",style="dashed", color="red", weight=0]; 1549[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1549 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1550 -> 902[label="",style="dashed", color="red", weight=0]; 1550[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1550 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1551 -> 903[label="",style="dashed", color="red", weight=0]; 1551[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1551 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1552 -> 904[label="",style="dashed", color="red", weight=0]; 1552[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1552 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1553 -> 891[label="",style="dashed", color="red", weight=0]; 1553[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1553 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1554 -> 892[label="",style="dashed", color="red", weight=0]; 1554[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1554 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1555 -> 893[label="",style="dashed", color="red", weight=0]; 1555[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1555 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1556 -> 894[label="",style="dashed", color="red", weight=0]; 1556[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1556 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1557 -> 895[label="",style="dashed", color="red", weight=0]; 1557[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1557 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1558 -> 896[label="",style="dashed", color="red", weight=0]; 1558[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1558 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1559 -> 897[label="",style="dashed", color="red", weight=0]; 1559[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1559 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1560 -> 898[label="",style="dashed", color="red", weight=0]; 1560[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1560 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1561 -> 899[label="",style="dashed", color="red", weight=0]; 1561[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1561 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1562 -> 900[label="",style="dashed", color="red", weight=0]; 1562[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1562 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1563 -> 901[label="",style="dashed", color="red", weight=0]; 1563[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1563 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1564 -> 902[label="",style="dashed", color="red", weight=0]; 1564[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1564 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1565 -> 903[label="",style="dashed", color="red", weight=0]; 1565[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1565 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1566 -> 904[label="",style="dashed", color="red", weight=0]; 1566[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];1566 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1763[label="",style="dashed", color="red", weight=0]; 1567[label="compare1 (yvy89,yvy90,yvy91) (yvy92,yvy93,yvy94) (yvy89 < yvy92 || yvy89 == yvy92 && (yvy90 < yvy93 || yvy90 == yvy93 && yvy91 <= yvy94))",fontsize=16,color="magenta"];1567 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1457[label="compare0 True False True",fontsize=16,color="black",shape="box"];1457 -> 1598[label="",style="solid", color="black", weight=3]; 1458[label="compare0 (Just yvy4000) Nothing True",fontsize=16,color="black",shape="box"];1458 -> 1599[label="",style="solid", color="black", weight=3]; 1045[label="(yvy40000,yvy40001,yvy40002) == yvy3000",fontsize=16,color="burlywood",shape="box"];4449[label="yvy3000/(yvy30000,yvy30001,yvy30002)",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4449[label="",style="solid", color="burlywood", weight=9]; 4449 -> 1284[label="",style="solid", color="burlywood", weight=3]; 1046[label="Integer yvy40000 == yvy3000",fontsize=16,color="burlywood",shape="box"];4450[label="yvy3000/Integer yvy30000",fontsize=10,color="white",style="solid",shape="box"];1046 -> 4450[label="",style="solid", color="burlywood", weight=9]; 4450 -> 1285[label="",style="solid", color="burlywood", weight=3]; 1047[label="False == yvy3000",fontsize=16,color="burlywood",shape="box"];4451[label="yvy3000/False",fontsize=10,color="white",style="solid",shape="box"];1047 -> 4451[label="",style="solid", color="burlywood", weight=9]; 4451 -> 1286[label="",style="solid", color="burlywood", weight=3]; 4452[label="yvy3000/True",fontsize=10,color="white",style="solid",shape="box"];1047 -> 4452[label="",style="solid", color="burlywood", weight=9]; 4452 -> 1287[label="",style="solid", color="burlywood", weight=3]; 1048[label="True == yvy3000",fontsize=16,color="burlywood",shape="box"];4453[label="yvy3000/False",fontsize=10,color="white",style="solid",shape="box"];1048 -> 4453[label="",style="solid", color="burlywood", weight=9]; 4453 -> 1288[label="",style="solid", color="burlywood", weight=3]; 4454[label="yvy3000/True",fontsize=10,color="white",style="solid",shape="box"];1048 -> 4454[label="",style="solid", color="burlywood", weight=9]; 4454 -> 1289[label="",style="solid", color="burlywood", weight=3]; 1049[label="Nothing == yvy3000",fontsize=16,color="burlywood",shape="box"];4455[label="yvy3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4455[label="",style="solid", color="burlywood", weight=9]; 4455 -> 1290[label="",style="solid", color="burlywood", weight=3]; 4456[label="yvy3000/Just yvy30000",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4456[label="",style="solid", color="burlywood", weight=9]; 4456 -> 1291[label="",style="solid", color="burlywood", weight=3]; 1050[label="Just yvy40000 == yvy3000",fontsize=16,color="burlywood",shape="box"];4457[label="yvy3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4457[label="",style="solid", color="burlywood", weight=9]; 4457 -> 1292[label="",style="solid", color="burlywood", weight=3]; 4458[label="yvy3000/Just yvy30000",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4458[label="",style="solid", color="burlywood", weight=9]; 4458 -> 1293[label="",style="solid", color="burlywood", weight=3]; 1051[label="LT == yvy3000",fontsize=16,color="burlywood",shape="box"];4459[label="yvy3000/LT",fontsize=10,color="white",style="solid",shape="box"];1051 -> 4459[label="",style="solid", color="burlywood", weight=9]; 4459 -> 1294[label="",style="solid", color="burlywood", weight=3]; 4460[label="yvy3000/EQ",fontsize=10,color="white",style="solid",shape="box"];1051 -> 4460[label="",style="solid", color="burlywood", weight=9]; 4460 -> 1295[label="",style="solid", color="burlywood", weight=3]; 4461[label="yvy3000/GT",fontsize=10,color="white",style="solid",shape="box"];1051 -> 4461[label="",style="solid", color="burlywood", weight=9]; 4461 -> 1296[label="",style="solid", color="burlywood", weight=3]; 1052[label="EQ == yvy3000",fontsize=16,color="burlywood",shape="box"];4462[label="yvy3000/LT",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4462[label="",style="solid", color="burlywood", weight=9]; 4462 -> 1297[label="",style="solid", color="burlywood", weight=3]; 4463[label="yvy3000/EQ",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4463[label="",style="solid", color="burlywood", weight=9]; 4463 -> 1298[label="",style="solid", color="burlywood", weight=3]; 4464[label="yvy3000/GT",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4464[label="",style="solid", color="burlywood", weight=9]; 4464 -> 1299[label="",style="solid", color="burlywood", weight=3]; 1053[label="GT == yvy3000",fontsize=16,color="burlywood",shape="box"];4465[label="yvy3000/LT",fontsize=10,color="white",style="solid",shape="box"];1053 -> 4465[label="",style="solid", color="burlywood", weight=9]; 4465 -> 1300[label="",style="solid", color="burlywood", weight=3]; 4466[label="yvy3000/EQ",fontsize=10,color="white",style="solid",shape="box"];1053 -> 4466[label="",style="solid", color="burlywood", weight=9]; 4466 -> 1301[label="",style="solid", color="burlywood", weight=3]; 4467[label="yvy3000/GT",fontsize=10,color="white",style="solid",shape="box"];1053 -> 4467[label="",style="solid", color="burlywood", weight=9]; 4467 -> 1302[label="",style="solid", color="burlywood", weight=3]; 1054[label="primEqFloat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="box"];4468[label="yvy4000/Float yvy40000 yvy40001",fontsize=10,color="white",style="solid",shape="box"];1054 -> 4468[label="",style="solid", color="burlywood", weight=9]; 4468 -> 1303[label="",style="solid", color="burlywood", weight=3]; 1055[label="(yvy40000,yvy40001) == yvy3000",fontsize=16,color="burlywood",shape="box"];4469[label="yvy3000/(yvy30000,yvy30001)",fontsize=10,color="white",style="solid",shape="box"];1055 -> 4469[label="",style="solid", color="burlywood", weight=9]; 4469 -> 1304[label="",style="solid", color="burlywood", weight=3]; 1056[label="() == yvy3000",fontsize=16,color="burlywood",shape="box"];4470[label="yvy3000/()",fontsize=10,color="white",style="solid",shape="box"];1056 -> 4470[label="",style="solid", color="burlywood", weight=9]; 4470 -> 1305[label="",style="solid", color="burlywood", weight=3]; 1057[label="yvy40000 :% yvy40001 == yvy3000",fontsize=16,color="burlywood",shape="box"];4471[label="yvy3000/yvy30000 :% yvy30001",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4471[label="",style="solid", color="burlywood", weight=9]; 4471 -> 1306[label="",style="solid", color="burlywood", weight=3]; 1058[label="Left yvy40000 == yvy3000",fontsize=16,color="burlywood",shape="box"];4472[label="yvy3000/Left yvy30000",fontsize=10,color="white",style="solid",shape="box"];1058 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 1307[label="",style="solid", color="burlywood", weight=3]; 4473[label="yvy3000/Right yvy30000",fontsize=10,color="white",style="solid",shape="box"];1058 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 1308[label="",style="solid", color="burlywood", weight=3]; 1059[label="Right yvy40000 == yvy3000",fontsize=16,color="burlywood",shape="box"];4474[label="yvy3000/Left yvy30000",fontsize=10,color="white",style="solid",shape="box"];1059 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 1309[label="",style="solid", color="burlywood", weight=3]; 4475[label="yvy3000/Right yvy30000",fontsize=10,color="white",style="solid",shape="box"];1059 -> 4475[label="",style="solid", color="burlywood", weight=9]; 4475 -> 1310[label="",style="solid", color="burlywood", weight=3]; 1060[label="primEqInt yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4476[label="yvy4000/Pos yvy40000",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4476[label="",style="solid", color="burlywood", weight=9]; 4476 -> 1311[label="",style="solid", color="burlywood", weight=3]; 4477[label="yvy4000/Neg yvy40000",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4477[label="",style="solid", color="burlywood", weight=9]; 4477 -> 1312[label="",style="solid", color="burlywood", weight=3]; 1061[label="primEqChar yvy4000 yvy3000",fontsize=16,color="burlywood",shape="box"];4478[label="yvy4000/Char yvy40000",fontsize=10,color="white",style="solid",shape="box"];1061 -> 4478[label="",style="solid", color="burlywood", weight=9]; 4478 -> 1313[label="",style="solid", color="burlywood", weight=3]; 1062[label="yvy40000 : yvy40001 == yvy3000",fontsize=16,color="burlywood",shape="box"];4479[label="yvy3000/yvy30000 : yvy30001",fontsize=10,color="white",style="solid",shape="box"];1062 -> 4479[label="",style="solid", color="burlywood", weight=9]; 4479 -> 1314[label="",style="solid", color="burlywood", weight=3]; 4480[label="yvy3000/[]",fontsize=10,color="white",style="solid",shape="box"];1062 -> 4480[label="",style="solid", color="burlywood", weight=9]; 4480 -> 1315[label="",style="solid", color="burlywood", weight=3]; 1063[label="[] == yvy3000",fontsize=16,color="burlywood",shape="box"];4481[label="yvy3000/yvy30000 : yvy30001",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4481[label="",style="solid", color="burlywood", weight=9]; 4481 -> 1316[label="",style="solid", color="burlywood", weight=3]; 4482[label="yvy3000/[]",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4482[label="",style="solid", color="burlywood", weight=9]; 4482 -> 1317[label="",style="solid", color="burlywood", weight=3]; 1064[label="primEqDouble yvy4000 yvy3000",fontsize=16,color="burlywood",shape="box"];4483[label="yvy4000/Double yvy40000 yvy40001",fontsize=10,color="white",style="solid",shape="box"];1064 -> 4483[label="",style="solid", color="burlywood", weight=9]; 4483 -> 1318[label="",style="solid", color="burlywood", weight=3]; 1601[label="yvy101",fontsize=16,color="green",shape="box"];1602[label="yvy100",fontsize=16,color="green",shape="box"];1603[label="Just yvy100 <= Just yvy101",fontsize=16,color="black",shape="box"];1603 -> 1667[label="",style="solid", color="black", weight=3]; 1600[label="compare1 (Just yvy174) (Just yvy175) yvy176",fontsize=16,color="burlywood",shape="triangle"];4484[label="yvy176/False",fontsize=10,color="white",style="solid",shape="box"];1600 -> 4484[label="",style="solid", color="burlywood", weight=9]; 4484 -> 1668[label="",style="solid", color="burlywood", weight=3]; 4485[label="yvy176/True",fontsize=10,color="white",style="solid",shape="box"];1600 -> 4485[label="",style="solid", color="burlywood", weight=9]; 4485 -> 1669[label="",style="solid", color="burlywood", weight=3]; 1671[label="yvy108",fontsize=16,color="green",shape="box"];1672[label="yvy107",fontsize=16,color="green",shape="box"];1673[label="Left yvy107 <= Left yvy108",fontsize=16,color="black",shape="box"];1673 -> 1677[label="",style="solid", color="black", weight=3]; 1670[label="compare1 (Left yvy184) (Left yvy185) yvy186",fontsize=16,color="burlywood",shape="triangle"];4486[label="yvy186/False",fontsize=10,color="white",style="solid",shape="box"];1670 -> 4486[label="",style="solid", color="burlywood", weight=9]; 4486 -> 1678[label="",style="solid", color="burlywood", weight=3]; 4487[label="yvy186/True",fontsize=10,color="white",style="solid",shape="box"];1670 -> 4487[label="",style="solid", color="burlywood", weight=9]; 4487 -> 1679[label="",style="solid", color="burlywood", weight=3]; 1461[label="compare0 (Right yvy4000) (Left yvy3000) True",fontsize=16,color="black",shape="box"];1461 -> 1680[label="",style="solid", color="black", weight=3]; 1682[label="yvy114",fontsize=16,color="green",shape="box"];1683[label="Right yvy114 <= Right yvy115",fontsize=16,color="black",shape="box"];1683 -> 1688[label="",style="solid", color="black", weight=3]; 1684[label="yvy115",fontsize=16,color="green",shape="box"];1681[label="compare1 (Right yvy191) (Right yvy192) yvy193",fontsize=16,color="burlywood",shape="triangle"];4488[label="yvy193/False",fontsize=10,color="white",style="solid",shape="box"];1681 -> 4488[label="",style="solid", color="burlywood", weight=9]; 4488 -> 1689[label="",style="solid", color="burlywood", weight=3]; 4489[label="yvy193/True",fontsize=10,color="white",style="solid",shape="box"];1681 -> 4489[label="",style="solid", color="burlywood", weight=9]; 4489 -> 1690[label="",style="solid", color="burlywood", weight=3]; 1463[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1463 -> 1691[label="",style="solid", color="black", weight=3]; 1464[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1464 -> 1692[label="",style="solid", color="black", weight=3]; 1465[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1465 -> 1693[label="",style="solid", color="black", weight=3]; 1466[label="Pos (primMulNat yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1466 -> 1694[label="",style="dashed", color="green", weight=3]; 1467[label="Neg (primMulNat yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1467 -> 1695[label="",style="dashed", color="green", weight=3]; 1468[label="Neg (primMulNat yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1468 -> 1696[label="",style="dashed", color="green", weight=3]; 1469[label="Pos (primMulNat yvy30000 yvy40010)",fontsize=16,color="green",shape="box"];1469 -> 1697[label="",style="dashed", color="green", weight=3]; 1470 -> 800[label="",style="dashed", color="red", weight=0]; 1470[label="primMulInt yvy30000 yvy40010",fontsize=16,color="magenta"];1470 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1471[label="FiniteMap.Branch (yvy400 : yvy401) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1471 -> 1700[label="",style="dashed", color="green", weight=3]; 1472[label="yvy400 : yvy401",fontsize=16,color="green",shape="box"];1473[label="yvy54",fontsize=16,color="green",shape="box"];1474[label="yvy41",fontsize=16,color="green",shape="box"];1475[label="primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 FiniteMap.EmptyFM yvy54)",fontsize=16,color="black",shape="box"];1475 -> 1701[label="",style="solid", color="black", weight=3]; 1476[label="primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184)) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54)",fontsize=16,color="black",shape="box"];1476 -> 1702[label="",style="solid", color="black", weight=3]; 3923[label="yvy51",fontsize=16,color="green",shape="box"];3924[label="yvy118",fontsize=16,color="green",shape="box"];3925[label="yvy50",fontsize=16,color="green",shape="box"];3926[label="yvy54",fontsize=16,color="green",shape="box"];3927[label="Zero",fontsize=16,color="green",shape="box"];3922[label="FiniteMap.mkBranch (Pos (Succ yvy345)) yvy346 yvy347 yvy348 yvy349",fontsize=16,color="black",shape="triangle"];3922 -> 4018[label="",style="solid", color="black", weight=3]; 1895 -> 2961[label="",style="dashed", color="red", weight=0]; 1895[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];1895 -> 2962[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2963[label="",style="dashed", color="magenta", weight=3]; 1894[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 yvy224",fontsize=16,color="burlywood",shape="triangle"];4490[label="yvy224/False",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4490[label="",style="solid", color="burlywood", weight=9]; 4490 -> 1900[label="",style="solid", color="burlywood", weight=3]; 4491[label="yvy224/True",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4491[label="",style="solid", color="burlywood", weight=9]; 4491 -> 1901[label="",style="solid", color="burlywood", weight=3]; 2585 -> 2912[label="",style="dashed", color="red", weight=0]; 2585[label="primPlusNat (primMulNat yvy300000 (Succ yvy400100)) (Succ yvy400100)",fontsize=16,color="magenta"];2585 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2586[label="Zero",fontsize=16,color="green",shape="box"];2587[label="Zero",fontsize=16,color="green",shape="box"];2588[label="Zero",fontsize=16,color="green",shape="box"];3107[label="primPlusNat (Succ yvy29200) yvy400100",fontsize=16,color="burlywood",shape="box"];4492[label="yvy400100/Succ yvy4001000",fontsize=10,color="white",style="solid",shape="box"];3107 -> 4492[label="",style="solid", color="burlywood", weight=9]; 4492 -> 3173[label="",style="solid", color="burlywood", weight=3]; 4493[label="yvy400100/Zero",fontsize=10,color="white",style="solid",shape="box"];3107 -> 4493[label="",style="solid", color="burlywood", weight=9]; 4493 -> 3174[label="",style="solid", color="burlywood", weight=3]; 3108[label="primPlusNat Zero yvy400100",fontsize=16,color="burlywood",shape="box"];4494[label="yvy400100/Succ yvy4001000",fontsize=10,color="white",style="solid",shape="box"];3108 -> 4494[label="",style="solid", color="burlywood", weight=9]; 4494 -> 3175[label="",style="solid", color="burlywood", weight=3]; 4495[label="yvy400100/Zero",fontsize=10,color="white",style="solid",shape="box"];3108 -> 4495[label="",style="solid", color="burlywood", weight=9]; 4495 -> 3176[label="",style="solid", color="burlywood", weight=3]; 1569[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1570 -> 314[label="",style="dashed", color="red", weight=0]; 1570[label="compare yvy130 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1570 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1571[label="LT",fontsize=16,color="green",shape="box"];1572[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1572 -> 1710[label="",style="solid", color="black", weight=3]; 1573[label="yvy60",fontsize=16,color="green",shape="box"];1574 -> 12[label="",style="dashed", color="red", weight=0]; 1574[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1574 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1575[label="yvy63",fontsize=16,color="green",shape="box"];1576[label="yvy61",fontsize=16,color="green",shape="box"];1577 -> 314[label="",style="dashed", color="red", weight=0]; 1577[label="compare yvy134 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="magenta"];1577 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1578[label="LT",fontsize=16,color="green",shape="box"];1579[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1579 -> 1715[label="",style="solid", color="black", weight=3]; 1580[label="yvy60",fontsize=16,color="green",shape="box"];1581 -> 12[label="",style="dashed", color="red", weight=0]; 1581[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1581 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1582[label="yvy63",fontsize=16,color="green",shape="box"];1583[label="yvy61",fontsize=16,color="green",shape="box"];1584 -> 314[label="",style="dashed", color="red", weight=0]; 1584[label="compare yvy138 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1584 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1585[label="LT",fontsize=16,color="green",shape="box"];1586[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1586 -> 1720[label="",style="solid", color="black", weight=3]; 1587[label="yvy60",fontsize=16,color="green",shape="box"];1588 -> 12[label="",style="dashed", color="red", weight=0]; 1588[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1588 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1589[label="yvy63",fontsize=16,color="green",shape="box"];1590[label="yvy61",fontsize=16,color="green",shape="box"];1591 -> 314[label="",style="dashed", color="red", weight=0]; 1591[label="compare yvy142 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="magenta"];1591 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1592[label="LT",fontsize=16,color="green",shape="box"];1593[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg Zero) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1593 -> 1725[label="",style="solid", color="black", weight=3]; 1594[label="yvy60",fontsize=16,color="green",shape="box"];1595 -> 12[label="",style="dashed", color="red", weight=0]; 1595[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1595 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1596[label="yvy63",fontsize=16,color="green",shape="box"];1597[label="yvy61",fontsize=16,color="green",shape="box"];1731[label="yvy153",fontsize=16,color="green",shape="box"];1732[label="yvy150 < yvy152",fontsize=16,color="blue",shape="box"];4496[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 1743[label="",style="solid", color="blue", weight=3]; 4497[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 1744[label="",style="solid", color="blue", weight=3]; 4498[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 1745[label="",style="solid", color="blue", weight=3]; 4499[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 1746[label="",style="solid", color="blue", weight=3]; 4500[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 1747[label="",style="solid", color="blue", weight=3]; 4501[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 1748[label="",style="solid", color="blue", weight=3]; 4502[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 1749[label="",style="solid", color="blue", weight=3]; 4503[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 1750[label="",style="solid", color="blue", weight=3]; 4504[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4504[label="",style="solid", color="blue", weight=9]; 4504 -> 1751[label="",style="solid", color="blue", weight=3]; 4505[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 1752[label="",style="solid", color="blue", weight=3]; 4506[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 1753[label="",style="solid", color="blue", weight=3]; 4507[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 1754[label="",style="solid", color="blue", weight=3]; 4508[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4508[label="",style="solid", color="blue", weight=9]; 4508 -> 1755[label="",style="solid", color="blue", weight=3]; 4509[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 1756[label="",style="solid", color="blue", weight=3]; 1733 -> 1398[label="",style="dashed", color="red", weight=0]; 1733[label="yvy150 == yvy152 && yvy151 <= yvy153",fontsize=16,color="magenta"];1733 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1734[label="yvy150",fontsize=16,color="green",shape="box"];1735[label="yvy151",fontsize=16,color="green",shape="box"];1736[label="yvy152",fontsize=16,color="green",shape="box"];1730[label="compare1 (yvy201,yvy202) (yvy203,yvy204) (yvy205 || yvy206)",fontsize=16,color="burlywood",shape="triangle"];4510[label="yvy205/False",fontsize=10,color="white",style="solid",shape="box"];1730 -> 4510[label="",style="solid", color="burlywood", weight=9]; 4510 -> 1759[label="",style="solid", color="burlywood", weight=3]; 4511[label="yvy205/True",fontsize=10,color="white",style="solid",shape="box"];1730 -> 4511[label="",style="solid", color="burlywood", weight=9]; 4511 -> 1760[label="",style="solid", color="burlywood", weight=3]; 1609[label="yvy4001",fontsize=16,color="green",shape="box"];1610[label="yvy3001",fontsize=16,color="green",shape="box"];1611[label="yvy4001",fontsize=16,color="green",shape="box"];1612[label="yvy3001",fontsize=16,color="green",shape="box"];1613[label="yvy4001",fontsize=16,color="green",shape="box"];1614[label="yvy3001",fontsize=16,color="green",shape="box"];1615[label="yvy4001",fontsize=16,color="green",shape="box"];1616[label="yvy3001",fontsize=16,color="green",shape="box"];1617[label="yvy4001",fontsize=16,color="green",shape="box"];1618[label="yvy3001",fontsize=16,color="green",shape="box"];1619[label="yvy4001",fontsize=16,color="green",shape="box"];1620[label="yvy3001",fontsize=16,color="green",shape="box"];1621[label="yvy4001",fontsize=16,color="green",shape="box"];1622[label="yvy3001",fontsize=16,color="green",shape="box"];1623[label="yvy4001",fontsize=16,color="green",shape="box"];1624[label="yvy3001",fontsize=16,color="green",shape="box"];1625[label="yvy4001",fontsize=16,color="green",shape="box"];1626[label="yvy3001",fontsize=16,color="green",shape="box"];1627[label="yvy4001",fontsize=16,color="green",shape="box"];1628[label="yvy3001",fontsize=16,color="green",shape="box"];1629[label="yvy4001",fontsize=16,color="green",shape="box"];1630[label="yvy3001",fontsize=16,color="green",shape="box"];1631[label="yvy4001",fontsize=16,color="green",shape="box"];1632[label="yvy3001",fontsize=16,color="green",shape="box"];1633[label="yvy4001",fontsize=16,color="green",shape="box"];1634[label="yvy3001",fontsize=16,color="green",shape="box"];1635[label="yvy4001",fontsize=16,color="green",shape="box"];1636[label="yvy3001",fontsize=16,color="green",shape="box"];1637[label="yvy4002",fontsize=16,color="green",shape="box"];1638[label="yvy3002",fontsize=16,color="green",shape="box"];1639[label="yvy4002",fontsize=16,color="green",shape="box"];1640[label="yvy3002",fontsize=16,color="green",shape="box"];1641[label="yvy4002",fontsize=16,color="green",shape="box"];1642[label="yvy3002",fontsize=16,color="green",shape="box"];1643[label="yvy4002",fontsize=16,color="green",shape="box"];1644[label="yvy3002",fontsize=16,color="green",shape="box"];1645[label="yvy4002",fontsize=16,color="green",shape="box"];1646[label="yvy3002",fontsize=16,color="green",shape="box"];1647[label="yvy4002",fontsize=16,color="green",shape="box"];1648[label="yvy3002",fontsize=16,color="green",shape="box"];1649[label="yvy4002",fontsize=16,color="green",shape="box"];1650[label="yvy3002",fontsize=16,color="green",shape="box"];1651[label="yvy4002",fontsize=16,color="green",shape="box"];1652[label="yvy3002",fontsize=16,color="green",shape="box"];1653[label="yvy4002",fontsize=16,color="green",shape="box"];1654[label="yvy3002",fontsize=16,color="green",shape="box"];1655[label="yvy4002",fontsize=16,color="green",shape="box"];1656[label="yvy3002",fontsize=16,color="green",shape="box"];1657[label="yvy4002",fontsize=16,color="green",shape="box"];1658[label="yvy3002",fontsize=16,color="green",shape="box"];1659[label="yvy4002",fontsize=16,color="green",shape="box"];1660[label="yvy3002",fontsize=16,color="green",shape="box"];1661[label="yvy4002",fontsize=16,color="green",shape="box"];1662[label="yvy3002",fontsize=16,color="green",shape="box"];1663[label="yvy4002",fontsize=16,color="green",shape="box"];1664[label="yvy3002",fontsize=16,color="green",shape="box"];1764[label="yvy90",fontsize=16,color="green",shape="box"];1765[label="yvy93",fontsize=16,color="green",shape="box"];1766[label="yvy89 < yvy92",fontsize=16,color="blue",shape="box"];4512[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4512[label="",style="solid", color="blue", weight=9]; 4512 -> 1780[label="",style="solid", color="blue", weight=3]; 4513[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4513[label="",style="solid", color="blue", weight=9]; 4513 -> 1781[label="",style="solid", color="blue", weight=3]; 4514[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4514[label="",style="solid", color="blue", weight=9]; 4514 -> 1782[label="",style="solid", color="blue", weight=3]; 4515[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 1783[label="",style="solid", color="blue", weight=3]; 4516[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 1784[label="",style="solid", color="blue", weight=3]; 4517[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 1785[label="",style="solid", color="blue", weight=3]; 4518[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 1786[label="",style="solid", color="blue", weight=3]; 4519[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 1787[label="",style="solid", color="blue", weight=3]; 4520[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 1788[label="",style="solid", color="blue", weight=3]; 4521[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 1789[label="",style="solid", color="blue", weight=3]; 4522[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 1790[label="",style="solid", color="blue", weight=3]; 4523[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 1791[label="",style="solid", color="blue", weight=3]; 4524[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 1792[label="",style="solid", color="blue", weight=3]; 4525[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 1793[label="",style="solid", color="blue", weight=3]; 1767[label="yvy89",fontsize=16,color="green",shape="box"];1768[label="yvy92",fontsize=16,color="green",shape="box"];1769 -> 1398[label="",style="dashed", color="red", weight=0]; 1769[label="yvy89 == yvy92 && (yvy90 < yvy93 || yvy90 == yvy93 && yvy91 <= yvy94)",fontsize=16,color="magenta"];1769 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1770[label="yvy91",fontsize=16,color="green",shape="box"];1771[label="yvy94",fontsize=16,color="green",shape="box"];1763[label="compare1 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) (yvy222 || yvy223)",fontsize=16,color="burlywood",shape="triangle"];4526[label="yvy222/False",fontsize=10,color="white",style="solid",shape="box"];1763 -> 4526[label="",style="solid", color="burlywood", weight=9]; 4526 -> 1796[label="",style="solid", color="burlywood", weight=3]; 4527[label="yvy222/True",fontsize=10,color="white",style="solid",shape="box"];1763 -> 4527[label="",style="solid", color="burlywood", weight=9]; 4527 -> 1797[label="",style="solid", color="burlywood", weight=3]; 1598[label="GT",fontsize=16,color="green",shape="box"];1599[label="GT",fontsize=16,color="green",shape="box"];1284[label="(yvy40000,yvy40001,yvy40002) == (yvy30000,yvy30001,yvy30002)",fontsize=16,color="black",shape="box"];1284 -> 1798[label="",style="solid", color="black", weight=3]; 1285[label="Integer yvy40000 == Integer yvy30000",fontsize=16,color="black",shape="box"];1285 -> 1799[label="",style="solid", color="black", weight=3]; 1286[label="False == False",fontsize=16,color="black",shape="box"];1286 -> 1800[label="",style="solid", color="black", weight=3]; 1287[label="False == True",fontsize=16,color="black",shape="box"];1287 -> 1801[label="",style="solid", color="black", weight=3]; 1288[label="True == False",fontsize=16,color="black",shape="box"];1288 -> 1802[label="",style="solid", color="black", weight=3]; 1289[label="True == True",fontsize=16,color="black",shape="box"];1289 -> 1803[label="",style="solid", color="black", weight=3]; 1290[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1290 -> 1804[label="",style="solid", color="black", weight=3]; 1291[label="Nothing == Just yvy30000",fontsize=16,color="black",shape="box"];1291 -> 1805[label="",style="solid", color="black", weight=3]; 1292[label="Just yvy40000 == Nothing",fontsize=16,color="black",shape="box"];1292 -> 1806[label="",style="solid", color="black", weight=3]; 1293[label="Just yvy40000 == Just yvy30000",fontsize=16,color="black",shape="box"];1293 -> 1807[label="",style="solid", color="black", weight=3]; 1294[label="LT == LT",fontsize=16,color="black",shape="box"];1294 -> 1808[label="",style="solid", color="black", weight=3]; 1295[label="LT == EQ",fontsize=16,color="black",shape="box"];1295 -> 1809[label="",style="solid", color="black", weight=3]; 1296[label="LT == GT",fontsize=16,color="black",shape="box"];1296 -> 1810[label="",style="solid", color="black", weight=3]; 1297[label="EQ == LT",fontsize=16,color="black",shape="box"];1297 -> 1811[label="",style="solid", color="black", weight=3]; 1298[label="EQ == EQ",fontsize=16,color="black",shape="box"];1298 -> 1812[label="",style="solid", color="black", weight=3]; 1299[label="EQ == GT",fontsize=16,color="black",shape="box"];1299 -> 1813[label="",style="solid", color="black", weight=3]; 1300[label="GT == LT",fontsize=16,color="black",shape="box"];1300 -> 1814[label="",style="solid", color="black", weight=3]; 1301[label="GT == EQ",fontsize=16,color="black",shape="box"];1301 -> 1815[label="",style="solid", color="black", weight=3]; 1302[label="GT == GT",fontsize=16,color="black",shape="box"];1302 -> 1816[label="",style="solid", color="black", weight=3]; 1303[label="primEqFloat (Float yvy40000 yvy40001) yvy3000",fontsize=16,color="burlywood",shape="box"];4528[label="yvy3000/Float yvy30000 yvy30001",fontsize=10,color="white",style="solid",shape="box"];1303 -> 4528[label="",style="solid", color="burlywood", weight=9]; 4528 -> 1817[label="",style="solid", color="burlywood", weight=3]; 1304[label="(yvy40000,yvy40001) == (yvy30000,yvy30001)",fontsize=16,color="black",shape="box"];1304 -> 1818[label="",style="solid", color="black", weight=3]; 1305[label="() == ()",fontsize=16,color="black",shape="box"];1305 -> 1819[label="",style="solid", color="black", weight=3]; 1306[label="yvy40000 :% yvy40001 == yvy30000 :% yvy30001",fontsize=16,color="black",shape="box"];1306 -> 1820[label="",style="solid", color="black", weight=3]; 1307[label="Left yvy40000 == Left yvy30000",fontsize=16,color="black",shape="box"];1307 -> 1821[label="",style="solid", color="black", weight=3]; 1308[label="Left yvy40000 == Right yvy30000",fontsize=16,color="black",shape="box"];1308 -> 1822[label="",style="solid", color="black", weight=3]; 1309[label="Right yvy40000 == Left yvy30000",fontsize=16,color="black",shape="box"];1309 -> 1823[label="",style="solid", color="black", weight=3]; 1310[label="Right yvy40000 == Right yvy30000",fontsize=16,color="black",shape="box"];1310 -> 1824[label="",style="solid", color="black", weight=3]; 1311[label="primEqInt (Pos yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4529[label="yvy40000/Succ yvy400000",fontsize=10,color="white",style="solid",shape="box"];1311 -> 4529[label="",style="solid", color="burlywood", weight=9]; 4529 -> 1825[label="",style="solid", color="burlywood", weight=3]; 4530[label="yvy40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1311 -> 4530[label="",style="solid", color="burlywood", weight=9]; 4530 -> 1826[label="",style="solid", color="burlywood", weight=3]; 1312[label="primEqInt (Neg yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4531[label="yvy40000/Succ yvy400000",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4531[label="",style="solid", color="burlywood", weight=9]; 4531 -> 1827[label="",style="solid", color="burlywood", weight=3]; 4532[label="yvy40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4532[label="",style="solid", color="burlywood", weight=9]; 4532 -> 1828[label="",style="solid", color="burlywood", weight=3]; 1313[label="primEqChar (Char yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4533[label="yvy3000/Char yvy30000",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4533[label="",style="solid", color="burlywood", weight=9]; 4533 -> 1829[label="",style="solid", color="burlywood", weight=3]; 1314[label="yvy40000 : yvy40001 == yvy30000 : yvy30001",fontsize=16,color="black",shape="box"];1314 -> 1830[label="",style="solid", color="black", weight=3]; 1315[label="yvy40000 : yvy40001 == []",fontsize=16,color="black",shape="box"];1315 -> 1831[label="",style="solid", color="black", weight=3]; 1316[label="[] == yvy30000 : yvy30001",fontsize=16,color="black",shape="box"];1316 -> 1832[label="",style="solid", color="black", weight=3]; 1317[label="[] == []",fontsize=16,color="black",shape="box"];1317 -> 1833[label="",style="solid", color="black", weight=3]; 1318[label="primEqDouble (Double yvy40000 yvy40001) yvy3000",fontsize=16,color="burlywood",shape="box"];4534[label="yvy3000/Double yvy30000 yvy30001",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4534[label="",style="solid", color="burlywood", weight=9]; 4534 -> 1834[label="",style="solid", color="burlywood", weight=3]; 1667[label="yvy100 <= yvy101",fontsize=16,color="blue",shape="box"];4535[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 1835[label="",style="solid", color="blue", weight=3]; 4536[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 1836[label="",style="solid", color="blue", weight=3]; 4537[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 1837[label="",style="solid", color="blue", weight=3]; 4538[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 1838[label="",style="solid", color="blue", weight=3]; 4539[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 1839[label="",style="solid", color="blue", weight=3]; 4540[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 1840[label="",style="solid", color="blue", weight=3]; 4541[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 1841[label="",style="solid", color="blue", weight=3]; 4542[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 1842[label="",style="solid", color="blue", weight=3]; 4543[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 1843[label="",style="solid", color="blue", weight=3]; 4544[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 1844[label="",style="solid", color="blue", weight=3]; 4545[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 1845[label="",style="solid", color="blue", weight=3]; 4546[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 1846[label="",style="solid", color="blue", weight=3]; 4547[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 1847[label="",style="solid", color="blue", weight=3]; 4548[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 1848[label="",style="solid", color="blue", weight=3]; 1668[label="compare1 (Just yvy174) (Just yvy175) False",fontsize=16,color="black",shape="box"];1668 -> 1849[label="",style="solid", color="black", weight=3]; 1669[label="compare1 (Just yvy174) (Just yvy175) True",fontsize=16,color="black",shape="box"];1669 -> 1850[label="",style="solid", color="black", weight=3]; 1677[label="yvy107 <= yvy108",fontsize=16,color="blue",shape="box"];4549[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 1851[label="",style="solid", color="blue", weight=3]; 4550[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 1852[label="",style="solid", color="blue", weight=3]; 4551[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 1853[label="",style="solid", color="blue", weight=3]; 4552[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 1854[label="",style="solid", color="blue", weight=3]; 4553[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 1855[label="",style="solid", color="blue", weight=3]; 4554[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 1856[label="",style="solid", color="blue", weight=3]; 4555[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 1857[label="",style="solid", color="blue", weight=3]; 4556[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 1858[label="",style="solid", color="blue", weight=3]; 4557[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 1859[label="",style="solid", color="blue", weight=3]; 4558[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 1860[label="",style="solid", color="blue", weight=3]; 4559[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 1861[label="",style="solid", color="blue", weight=3]; 4560[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 1862[label="",style="solid", color="blue", weight=3]; 4561[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 1863[label="",style="solid", color="blue", weight=3]; 4562[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4562[label="",style="solid", color="blue", weight=9]; 4562 -> 1864[label="",style="solid", color="blue", weight=3]; 1678[label="compare1 (Left yvy184) (Left yvy185) False",fontsize=16,color="black",shape="box"];1678 -> 1865[label="",style="solid", color="black", weight=3]; 1679[label="compare1 (Left yvy184) (Left yvy185) True",fontsize=16,color="black",shape="box"];1679 -> 1866[label="",style="solid", color="black", weight=3]; 1680[label="GT",fontsize=16,color="green",shape="box"];1688[label="yvy114 <= yvy115",fontsize=16,color="blue",shape="box"];4563[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4563[label="",style="solid", color="blue", weight=9]; 4563 -> 1867[label="",style="solid", color="blue", weight=3]; 4564[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4564[label="",style="solid", color="blue", weight=9]; 4564 -> 1868[label="",style="solid", color="blue", weight=3]; 4565[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4565[label="",style="solid", color="blue", weight=9]; 4565 -> 1869[label="",style="solid", color="blue", weight=3]; 4566[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4566[label="",style="solid", color="blue", weight=9]; 4566 -> 1870[label="",style="solid", color="blue", weight=3]; 4567[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 1871[label="",style="solid", color="blue", weight=3]; 4568[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 1872[label="",style="solid", color="blue", weight=3]; 4569[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 1873[label="",style="solid", color="blue", weight=3]; 4570[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 1874[label="",style="solid", color="blue", weight=3]; 4571[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 1875[label="",style="solid", color="blue", weight=3]; 4572[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 1876[label="",style="solid", color="blue", weight=3]; 4573[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 1877[label="",style="solid", color="blue", weight=3]; 4574[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 1878[label="",style="solid", color="blue", weight=3]; 4575[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 1879[label="",style="solid", color="blue", weight=3]; 4576[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 1880[label="",style="solid", color="blue", weight=3]; 1689[label="compare1 (Right yvy191) (Right yvy192) False",fontsize=16,color="black",shape="box"];1689 -> 1881[label="",style="solid", color="black", weight=3]; 1690[label="compare1 (Right yvy191) (Right yvy192) True",fontsize=16,color="black",shape="box"];1690 -> 1882[label="",style="solid", color="black", weight=3]; 1691[label="GT",fontsize=16,color="green",shape="box"];1692[label="GT",fontsize=16,color="green",shape="box"];1693[label="GT",fontsize=16,color="green",shape="box"];1695 -> 1694[label="",style="dashed", color="red", weight=0]; 1695[label="primMulNat yvy30000 yvy40010",fontsize=16,color="magenta"];1695 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1696 -> 1694[label="",style="dashed", color="red", weight=0]; 1696[label="primMulNat yvy30000 yvy40010",fontsize=16,color="magenta"];1696 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1697 -> 1694[label="",style="dashed", color="red", weight=0]; 1697[label="primMulNat yvy30000 yvy40010",fontsize=16,color="magenta"];1697 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1697 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1698[label="yvy30000",fontsize=16,color="green",shape="box"];1699[label="yvy40010",fontsize=16,color="green",shape="box"];1700 -> 1224[label="",style="dashed", color="red", weight=0]; 1700[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1701[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 FiniteMap.EmptyFM yvy54)",fontsize=16,color="black",shape="box"];1701 -> 1889[label="",style="solid", color="black", weight=3]; 1702[label="primPlusInt yvy1182 (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54)",fontsize=16,color="burlywood",shape="box"];4577[label="yvy1182/Pos yvy11820",fontsize=10,color="white",style="solid",shape="box"];1702 -> 4577[label="",style="solid", color="burlywood", weight=9]; 4577 -> 1890[label="",style="solid", color="burlywood", weight=3]; 4578[label="yvy1182/Neg yvy11820",fontsize=10,color="white",style="solid",shape="box"];1702 -> 4578[label="",style="solid", color="burlywood", weight=9]; 4578 -> 1891[label="",style="solid", color="burlywood", weight=3]; 4018[label="FiniteMap.mkBranchResult yvy346 yvy347 yvy349 yvy348",fontsize=16,color="black",shape="box"];4018 -> 4049[label="",style="solid", color="black", weight=3]; 2962[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="black",shape="triangle"];2962 -> 2969[label="",style="solid", color="black", weight=3]; 2963 -> 694[label="",style="dashed", color="red", weight=0]; 2963[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];2963 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2963 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2961[label="yvy296 > yvy295",fontsize=16,color="black",shape="triangle"];2961 -> 2972[label="",style="solid", color="black", weight=3]; 1900[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 False",fontsize=16,color="black",shape="box"];1900 -> 1921[label="",style="solid", color="black", weight=3]; 1901[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 True",fontsize=16,color="black",shape="box"];1901 -> 1922[label="",style="solid", color="black", weight=3]; 2933 -> 1694[label="",style="dashed", color="red", weight=0]; 2933[label="primMulNat yvy300000 (Succ yvy400100)",fontsize=16,color="magenta"];2933 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2933 -> 2960[label="",style="dashed", color="magenta", weight=3]; 3173[label="primPlusNat (Succ yvy29200) (Succ yvy4001000)",fontsize=16,color="black",shape="box"];3173 -> 3190[label="",style="solid", color="black", weight=3]; 3174[label="primPlusNat (Succ yvy29200) Zero",fontsize=16,color="black",shape="box"];3174 -> 3191[label="",style="solid", color="black", weight=3]; 3175[label="primPlusNat Zero (Succ yvy4001000)",fontsize=16,color="black",shape="box"];3175 -> 3192[label="",style="solid", color="black", weight=3]; 3176[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3176 -> 3193[label="",style="solid", color="black", weight=3]; 1708[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="black",shape="box"];1708 -> 1906[label="",style="solid", color="black", weight=3]; 1709[label="yvy130",fontsize=16,color="green",shape="box"];1710 -> 3922[label="",style="dashed", color="red", weight=0]; 1710[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1710 -> 3928[label="",style="dashed", color="magenta", weight=3]; 1710 -> 3929[label="",style="dashed", color="magenta", weight=3]; 1710 -> 3930[label="",style="dashed", color="magenta", weight=3]; 1710 -> 3931[label="",style="dashed", color="magenta", weight=3]; 1710 -> 3932[label="",style="dashed", color="magenta", weight=3]; 1711[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1712[label="yvy64",fontsize=16,color="green",shape="box"];1713[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="black",shape="box"];1713 -> 1923[label="",style="solid", color="black", weight=3]; 1714[label="yvy134",fontsize=16,color="green",shape="box"];1715 -> 3922[label="",style="dashed", color="red", weight=0]; 1715[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos Zero) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1715 -> 3933[label="",style="dashed", color="magenta", weight=3]; 1715 -> 3934[label="",style="dashed", color="magenta", weight=3]; 1715 -> 3935[label="",style="dashed", color="magenta", weight=3]; 1715 -> 3936[label="",style="dashed", color="magenta", weight=3]; 1715 -> 3937[label="",style="dashed", color="magenta", weight=3]; 1716[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1717[label="yvy64",fontsize=16,color="green",shape="box"];1718[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="black",shape="box"];1718 -> 1937[label="",style="solid", color="black", weight=3]; 1719[label="yvy138",fontsize=16,color="green",shape="box"];1720 -> 3922[label="",style="dashed", color="red", weight=0]; 1720[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1720 -> 3938[label="",style="dashed", color="magenta", weight=3]; 1720 -> 3939[label="",style="dashed", color="magenta", weight=3]; 1720 -> 3940[label="",style="dashed", color="magenta", weight=3]; 1720 -> 3941[label="",style="dashed", color="magenta", weight=3]; 1720 -> 3942[label="",style="dashed", color="magenta", weight=3]; 1721[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1722[label="yvy64",fontsize=16,color="green",shape="box"];1723[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="black",shape="box"];1723 -> 1952[label="",style="solid", color="black", weight=3]; 1724[label="yvy142",fontsize=16,color="green",shape="box"];1725 -> 3922[label="",style="dashed", color="red", weight=0]; 1725[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg Zero) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1725 -> 3943[label="",style="dashed", color="magenta", weight=3]; 1725 -> 3944[label="",style="dashed", color="magenta", weight=3]; 1725 -> 3945[label="",style="dashed", color="magenta", weight=3]; 1725 -> 3946[label="",style="dashed", color="magenta", weight=3]; 1725 -> 3947[label="",style="dashed", color="magenta", weight=3]; 1726[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1727[label="yvy64",fontsize=16,color="green",shape="box"];1743[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1743 -> 1966[label="",style="solid", color="black", weight=3]; 1744[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1744 -> 1967[label="",style="solid", color="black", weight=3]; 1745[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1745 -> 1968[label="",style="solid", color="black", weight=3]; 1746[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1746 -> 1969[label="",style="solid", color="black", weight=3]; 1747[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1747 -> 1970[label="",style="solid", color="black", weight=3]; 1748[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1748 -> 1971[label="",style="solid", color="black", weight=3]; 1749[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1749 -> 1972[label="",style="solid", color="black", weight=3]; 1750[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1750 -> 1973[label="",style="solid", color="black", weight=3]; 1751[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1751 -> 1974[label="",style="solid", color="black", weight=3]; 1752[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1752 -> 1975[label="",style="solid", color="black", weight=3]; 1753[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1753 -> 1976[label="",style="solid", color="black", weight=3]; 1754[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1754 -> 1977[label="",style="solid", color="black", weight=3]; 1755[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1755 -> 1978[label="",style="solid", color="black", weight=3]; 1756[label="yvy150 < yvy152",fontsize=16,color="black",shape="triangle"];1756 -> 1979[label="",style="solid", color="black", weight=3]; 1757[label="yvy150 == yvy152",fontsize=16,color="blue",shape="box"];4579[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 1980[label="",style="solid", color="blue", weight=3]; 4580[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 1981[label="",style="solid", color="blue", weight=3]; 4581[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 1982[label="",style="solid", color="blue", weight=3]; 4582[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 1983[label="",style="solid", color="blue", weight=3]; 4583[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 1984[label="",style="solid", color="blue", weight=3]; 4584[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 1985[label="",style="solid", color="blue", weight=3]; 4585[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 1986[label="",style="solid", color="blue", weight=3]; 4586[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 1987[label="",style="solid", color="blue", weight=3]; 4587[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 1988[label="",style="solid", color="blue", weight=3]; 4588[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 1989[label="",style="solid", color="blue", weight=3]; 4589[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 1990[label="",style="solid", color="blue", weight=3]; 4590[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 1991[label="",style="solid", color="blue", weight=3]; 4591[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 1992[label="",style="solid", color="blue", weight=3]; 4592[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 1993[label="",style="solid", color="blue", weight=3]; 1758[label="yvy151 <= yvy153",fontsize=16,color="blue",shape="box"];4593[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 1994[label="",style="solid", color="blue", weight=3]; 4594[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 1995[label="",style="solid", color="blue", weight=3]; 4595[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 1996[label="",style="solid", color="blue", weight=3]; 4596[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 1997[label="",style="solid", color="blue", weight=3]; 4597[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 1998[label="",style="solid", color="blue", weight=3]; 4598[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 1999[label="",style="solid", color="blue", weight=3]; 4599[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 2000[label="",style="solid", color="blue", weight=3]; 4600[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 2001[label="",style="solid", color="blue", weight=3]; 4601[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 2002[label="",style="solid", color="blue", weight=3]; 4602[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 2003[label="",style="solid", color="blue", weight=3]; 4603[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 2004[label="",style="solid", color="blue", weight=3]; 4604[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 2005[label="",style="solid", color="blue", weight=3]; 4605[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 2006[label="",style="solid", color="blue", weight=3]; 4606[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 2007[label="",style="solid", color="blue", weight=3]; 1759[label="compare1 (yvy201,yvy202) (yvy203,yvy204) (False || yvy206)",fontsize=16,color="black",shape="box"];1759 -> 2008[label="",style="solid", color="black", weight=3]; 1760[label="compare1 (yvy201,yvy202) (yvy203,yvy204) (True || yvy206)",fontsize=16,color="black",shape="box"];1760 -> 2009[label="",style="solid", color="black", weight=3]; 1780 -> 1743[label="",style="dashed", color="red", weight=0]; 1780[label="yvy89 < yvy92",fontsize=16,color="magenta"];1780 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1780 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1781 -> 1744[label="",style="dashed", color="red", weight=0]; 1781[label="yvy89 < yvy92",fontsize=16,color="magenta"];1781 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1781 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1782 -> 1745[label="",style="dashed", color="red", weight=0]; 1782[label="yvy89 < yvy92",fontsize=16,color="magenta"];1782 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1782 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1783 -> 1746[label="",style="dashed", color="red", weight=0]; 1783[label="yvy89 < yvy92",fontsize=16,color="magenta"];1783 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1783 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1784 -> 1747[label="",style="dashed", color="red", weight=0]; 1784[label="yvy89 < yvy92",fontsize=16,color="magenta"];1784 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1784 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1785 -> 1748[label="",style="dashed", color="red", weight=0]; 1785[label="yvy89 < yvy92",fontsize=16,color="magenta"];1785 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1785 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1786 -> 1749[label="",style="dashed", color="red", weight=0]; 1786[label="yvy89 < yvy92",fontsize=16,color="magenta"];1786 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1786 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1787 -> 1750[label="",style="dashed", color="red", weight=0]; 1787[label="yvy89 < yvy92",fontsize=16,color="magenta"];1787 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1787 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1788 -> 1751[label="",style="dashed", color="red", weight=0]; 1788[label="yvy89 < yvy92",fontsize=16,color="magenta"];1788 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1788 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1789 -> 1752[label="",style="dashed", color="red", weight=0]; 1789[label="yvy89 < yvy92",fontsize=16,color="magenta"];1789 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1789 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1790 -> 1753[label="",style="dashed", color="red", weight=0]; 1790[label="yvy89 < yvy92",fontsize=16,color="magenta"];1790 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1790 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1791 -> 1754[label="",style="dashed", color="red", weight=0]; 1791[label="yvy89 < yvy92",fontsize=16,color="magenta"];1791 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1791 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1792 -> 1755[label="",style="dashed", color="red", weight=0]; 1792[label="yvy89 < yvy92",fontsize=16,color="magenta"];1792 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1792 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1793 -> 1756[label="",style="dashed", color="red", weight=0]; 1793[label="yvy89 < yvy92",fontsize=16,color="magenta"];1793 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1793 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1794[label="yvy89 == yvy92",fontsize=16,color="blue",shape="box"];4607[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 2038[label="",style="solid", color="blue", weight=3]; 4608[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 2039[label="",style="solid", color="blue", weight=3]; 4609[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 2040[label="",style="solid", color="blue", weight=3]; 4610[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 2041[label="",style="solid", color="blue", weight=3]; 4611[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 2042[label="",style="solid", color="blue", weight=3]; 4612[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4612[label="",style="solid", color="blue", weight=9]; 4612 -> 2043[label="",style="solid", color="blue", weight=3]; 4613[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4613[label="",style="solid", color="blue", weight=9]; 4613 -> 2044[label="",style="solid", color="blue", weight=3]; 4614[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 2045[label="",style="solid", color="blue", weight=3]; 4615[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 2046[label="",style="solid", color="blue", weight=3]; 4616[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 2047[label="",style="solid", color="blue", weight=3]; 4617[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 2048[label="",style="solid", color="blue", weight=3]; 4618[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 2049[label="",style="solid", color="blue", weight=3]; 4619[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 2050[label="",style="solid", color="blue", weight=3]; 4620[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 2051[label="",style="solid", color="blue", weight=3]; 1795 -> 2356[label="",style="dashed", color="red", weight=0]; 1795[label="yvy90 < yvy93 || yvy90 == yvy93 && yvy91 <= yvy94",fontsize=16,color="magenta"];1795 -> 2357[label="",style="dashed", color="magenta", weight=3]; 1795 -> 2358[label="",style="dashed", color="magenta", weight=3]; 1796[label="compare1 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) (False || yvy223)",fontsize=16,color="black",shape="box"];1796 -> 2054[label="",style="solid", color="black", weight=3]; 1797[label="compare1 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) (True || yvy223)",fontsize=16,color="black",shape="box"];1797 -> 2055[label="",style="solid", color="black", weight=3]; 1798 -> 1398[label="",style="dashed", color="red", weight=0]; 1798[label="yvy40000 == yvy30000 && yvy40001 == yvy30001 && yvy40002 == yvy30002",fontsize=16,color="magenta"];1798 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1798 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1799 -> 1060[label="",style="dashed", color="red", weight=0]; 1799[label="primEqInt yvy40000 yvy30000",fontsize=16,color="magenta"];1799 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1799 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1800[label="True",fontsize=16,color="green",shape="box"];1801[label="False",fontsize=16,color="green",shape="box"];1802[label="False",fontsize=16,color="green",shape="box"];1803[label="True",fontsize=16,color="green",shape="box"];1804[label="True",fontsize=16,color="green",shape="box"];1805[label="False",fontsize=16,color="green",shape="box"];1806[label="False",fontsize=16,color="green",shape="box"];1807[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4621[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 2060[label="",style="solid", color="blue", weight=3]; 4622[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 2061[label="",style="solid", color="blue", weight=3]; 4623[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 2062[label="",style="solid", color="blue", weight=3]; 4624[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 2063[label="",style="solid", color="blue", weight=3]; 4625[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 2064[label="",style="solid", color="blue", weight=3]; 4626[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 2065[label="",style="solid", color="blue", weight=3]; 4627[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 2066[label="",style="solid", color="blue", weight=3]; 4628[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 2067[label="",style="solid", color="blue", weight=3]; 4629[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 2068[label="",style="solid", color="blue", weight=3]; 4630[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4630[label="",style="solid", color="blue", weight=9]; 4630 -> 2069[label="",style="solid", color="blue", weight=3]; 4631[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 2070[label="",style="solid", color="blue", weight=3]; 4632[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 2071[label="",style="solid", color="blue", weight=3]; 4633[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4633[label="",style="solid", color="blue", weight=9]; 4633 -> 2072[label="",style="solid", color="blue", weight=3]; 4634[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 2073[label="",style="solid", color="blue", weight=3]; 1808[label="True",fontsize=16,color="green",shape="box"];1809[label="False",fontsize=16,color="green",shape="box"];1810[label="False",fontsize=16,color="green",shape="box"];1811[label="False",fontsize=16,color="green",shape="box"];1812[label="True",fontsize=16,color="green",shape="box"];1813[label="False",fontsize=16,color="green",shape="box"];1814[label="False",fontsize=16,color="green",shape="box"];1815[label="False",fontsize=16,color="green",shape="box"];1816[label="True",fontsize=16,color="green",shape="box"];1817[label="primEqFloat (Float yvy40000 yvy40001) (Float yvy30000 yvy30001)",fontsize=16,color="black",shape="box"];1817 -> 2074[label="",style="solid", color="black", weight=3]; 1818 -> 1398[label="",style="dashed", color="red", weight=0]; 1818[label="yvy40000 == yvy30000 && yvy40001 == yvy30001",fontsize=16,color="magenta"];1818 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1818 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1819[label="True",fontsize=16,color="green",shape="box"];1820 -> 1398[label="",style="dashed", color="red", weight=0]; 1820[label="yvy40000 == yvy30000 && yvy40001 == yvy30001",fontsize=16,color="magenta"];1820 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1820 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1821[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4635[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 2079[label="",style="solid", color="blue", weight=3]; 4636[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4636[label="",style="solid", color="blue", weight=9]; 4636 -> 2080[label="",style="solid", color="blue", weight=3]; 4637[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4637[label="",style="solid", color="blue", weight=9]; 4637 -> 2081[label="",style="solid", color="blue", weight=3]; 4638[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4638[label="",style="solid", color="blue", weight=9]; 4638 -> 2082[label="",style="solid", color="blue", weight=3]; 4639[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4639[label="",style="solid", color="blue", weight=9]; 4639 -> 2083[label="",style="solid", color="blue", weight=3]; 4640[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4640[label="",style="solid", color="blue", weight=9]; 4640 -> 2084[label="",style="solid", color="blue", weight=3]; 4641[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4641[label="",style="solid", color="blue", weight=9]; 4641 -> 2085[label="",style="solid", color="blue", weight=3]; 4642[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4642[label="",style="solid", color="blue", weight=9]; 4642 -> 2086[label="",style="solid", color="blue", weight=3]; 4643[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4643[label="",style="solid", color="blue", weight=9]; 4643 -> 2087[label="",style="solid", color="blue", weight=3]; 4644[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4644[label="",style="solid", color="blue", weight=9]; 4644 -> 2088[label="",style="solid", color="blue", weight=3]; 4645[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4645[label="",style="solid", color="blue", weight=9]; 4645 -> 2089[label="",style="solid", color="blue", weight=3]; 4646[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4646[label="",style="solid", color="blue", weight=9]; 4646 -> 2090[label="",style="solid", color="blue", weight=3]; 4647[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4647[label="",style="solid", color="blue", weight=9]; 4647 -> 2091[label="",style="solid", color="blue", weight=3]; 4648[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4648[label="",style="solid", color="blue", weight=9]; 4648 -> 2092[label="",style="solid", color="blue", weight=3]; 1822[label="False",fontsize=16,color="green",shape="box"];1823[label="False",fontsize=16,color="green",shape="box"];1824[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4649[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4649[label="",style="solid", color="blue", weight=9]; 4649 -> 2093[label="",style="solid", color="blue", weight=3]; 4650[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4650[label="",style="solid", color="blue", weight=9]; 4650 -> 2094[label="",style="solid", color="blue", weight=3]; 4651[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4651[label="",style="solid", color="blue", weight=9]; 4651 -> 2095[label="",style="solid", color="blue", weight=3]; 4652[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4652[label="",style="solid", color="blue", weight=9]; 4652 -> 2096[label="",style="solid", color="blue", weight=3]; 4653[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4653[label="",style="solid", color="blue", weight=9]; 4653 -> 2097[label="",style="solid", color="blue", weight=3]; 4654[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4654[label="",style="solid", color="blue", weight=9]; 4654 -> 2098[label="",style="solid", color="blue", weight=3]; 4655[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4655[label="",style="solid", color="blue", weight=9]; 4655 -> 2099[label="",style="solid", color="blue", weight=3]; 4656[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4656[label="",style="solid", color="blue", weight=9]; 4656 -> 2100[label="",style="solid", color="blue", weight=3]; 4657[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4657[label="",style="solid", color="blue", weight=9]; 4657 -> 2101[label="",style="solid", color="blue", weight=3]; 4658[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4658[label="",style="solid", color="blue", weight=9]; 4658 -> 2102[label="",style="solid", color="blue", weight=3]; 4659[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4659[label="",style="solid", color="blue", weight=9]; 4659 -> 2103[label="",style="solid", color="blue", weight=3]; 4660[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4660[label="",style="solid", color="blue", weight=9]; 4660 -> 2104[label="",style="solid", color="blue", weight=3]; 4661[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4661[label="",style="solid", color="blue", weight=9]; 4661 -> 2105[label="",style="solid", color="blue", weight=3]; 4662[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4662[label="",style="solid", color="blue", weight=9]; 4662 -> 2106[label="",style="solid", color="blue", weight=3]; 1825[label="primEqInt (Pos (Succ yvy400000)) yvy3000",fontsize=16,color="burlywood",shape="box"];4663[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4663[label="",style="solid", color="burlywood", weight=9]; 4663 -> 2107[label="",style="solid", color="burlywood", weight=3]; 4664[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4664[label="",style="solid", color="burlywood", weight=9]; 4664 -> 2108[label="",style="solid", color="burlywood", weight=3]; 1826[label="primEqInt (Pos Zero) yvy3000",fontsize=16,color="burlywood",shape="box"];4665[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1826 -> 4665[label="",style="solid", color="burlywood", weight=9]; 4665 -> 2109[label="",style="solid", color="burlywood", weight=3]; 4666[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1826 -> 4666[label="",style="solid", color="burlywood", weight=9]; 4666 -> 2110[label="",style="solid", color="burlywood", weight=3]; 1827[label="primEqInt (Neg (Succ yvy400000)) yvy3000",fontsize=16,color="burlywood",shape="box"];4667[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1827 -> 4667[label="",style="solid", color="burlywood", weight=9]; 4667 -> 2111[label="",style="solid", color="burlywood", weight=3]; 4668[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1827 -> 4668[label="",style="solid", color="burlywood", weight=9]; 4668 -> 2112[label="",style="solid", color="burlywood", weight=3]; 1828[label="primEqInt (Neg Zero) yvy3000",fontsize=16,color="burlywood",shape="box"];4669[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4669[label="",style="solid", color="burlywood", weight=9]; 4669 -> 2113[label="",style="solid", color="burlywood", weight=3]; 4670[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4670[label="",style="solid", color="burlywood", weight=9]; 4670 -> 2114[label="",style="solid", color="burlywood", weight=3]; 1829[label="primEqChar (Char yvy40000) (Char yvy30000)",fontsize=16,color="black",shape="box"];1829 -> 2115[label="",style="solid", color="black", weight=3]; 1830 -> 1398[label="",style="dashed", color="red", weight=0]; 1830[label="yvy40000 == yvy30000 && yvy40001 == yvy30001",fontsize=16,color="magenta"];1830 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1830 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1831[label="False",fontsize=16,color="green",shape="box"];1832[label="False",fontsize=16,color="green",shape="box"];1833[label="True",fontsize=16,color="green",shape="box"];1834[label="primEqDouble (Double yvy40000 yvy40001) (Double yvy30000 yvy30001)",fontsize=16,color="black",shape="box"];1834 -> 2118[label="",style="solid", color="black", weight=3]; 1835[label="yvy100 <= yvy101",fontsize=16,color="black",shape="triangle"];1835 -> 2119[label="",style="solid", color="black", weight=3]; 1836[label="yvy100 <= yvy101",fontsize=16,color="black",shape="triangle"];1836 -> 2120[label="",style="solid", color="black", weight=3]; 1837[label="yvy100 <= yvy101",fontsize=16,color="black",shape="triangle"];1837 -> 2121[label="",style="solid", color="black", weight=3]; 1838[label="yvy100 <= yvy101",fontsize=16,color="black",shape="triangle"];1838 -> 2122[label="",style="solid", color="black", weight=3]; 1839[label="yvy100 <= yvy101",fontsize=16,color="black",shape="triangle"];1839 -> 2123[label="",style="solid", color="black", weight=3]; 1840[label="yvy100 <= yvy101",fontsize=16,color="black",shape="triangle"];1840 -> 2124[label="",style="solid", color="black", weight=3]; 1841[label="yvy100 <= yvy101",fontsize=16,color="burlywood",shape="triangle"];4671[label="yvy100/(yvy1000,yvy1001)",fontsize=10,color="white",style="solid",shape="box"];1841 -> 4671[label="",style="solid", color="burlywood", weight=9]; 4671 -> 2125[label="",style="solid", color="burlywood", weight=3]; 1842[label="yvy100 <= yvy101",fontsize=16,color="burlywood",shape="triangle"];4672[label="yvy100/(yvy1000,yvy1001,yvy1002)",fontsize=10,color="white",style="solid",shape="box"];1842 -> 4672[label="",style="solid", color="burlywood", weight=9]; 4672 -> 2126[label="",style="solid", color="burlywood", weight=3]; 1843[label="yvy100 <= yvy101",fontsize=16,color="burlywood",shape="triangle"];4673[label="yvy100/False",fontsize=10,color="white",style="solid",shape="box"];1843 -> 4673[label="",style="solid", color="burlywood", weight=9]; 4673 -> 2127[label="",style="solid", color="burlywood", weight=3]; 4674[label="yvy100/True",fontsize=10,color="white",style="solid",shape="box"];1843 -> 4674[label="",style="solid", color="burlywood", weight=9]; 4674 -> 2128[label="",style="solid", color="burlywood", weight=3]; 1844[label="yvy100 <= yvy101",fontsize=16,color="burlywood",shape="triangle"];4675[label="yvy100/Nothing",fontsize=10,color="white",style="solid",shape="box"];1844 -> 4675[label="",style="solid", color="burlywood", weight=9]; 4675 -> 2129[label="",style="solid", color="burlywood", weight=3]; 4676[label="yvy100/Just yvy1000",fontsize=10,color="white",style="solid",shape="box"];1844 -> 4676[label="",style="solid", color="burlywood", weight=9]; 4676 -> 2130[label="",style="solid", color="burlywood", weight=3]; 1845[label="yvy100 <= yvy101",fontsize=16,color="burlywood",shape="triangle"];4677[label="yvy100/Left yvy1000",fontsize=10,color="white",style="solid",shape="box"];1845 -> 4677[label="",style="solid", color="burlywood", weight=9]; 4677 -> 2131[label="",style="solid", color="burlywood", weight=3]; 4678[label="yvy100/Right yvy1000",fontsize=10,color="white",style="solid",shape="box"];1845 -> 4678[label="",style="solid", color="burlywood", weight=9]; 4678 -> 2132[label="",style="solid", color="burlywood", weight=3]; 1846[label="yvy100 <= yvy101",fontsize=16,color="burlywood",shape="triangle"];4679[label="yvy100/LT",fontsize=10,color="white",style="solid",shape="box"];1846 -> 4679[label="",style="solid", color="burlywood", weight=9]; 4679 -> 2133[label="",style="solid", color="burlywood", weight=3]; 4680[label="yvy100/EQ",fontsize=10,color="white",style="solid",shape="box"];1846 -> 4680[label="",style="solid", color="burlywood", weight=9]; 4680 -> 2134[label="",style="solid", color="burlywood", weight=3]; 4681[label="yvy100/GT",fontsize=10,color="white",style="solid",shape="box"];1846 -> 4681[label="",style="solid", color="burlywood", weight=9]; 4681 -> 2135[label="",style="solid", color="burlywood", weight=3]; 1847[label="yvy100 <= yvy101",fontsize=16,color="black",shape="triangle"];1847 -> 2136[label="",style="solid", color="black", weight=3]; 1848[label="yvy100 <= yvy101",fontsize=16,color="black",shape="triangle"];1848 -> 2137[label="",style="solid", color="black", weight=3]; 1849[label="compare0 (Just yvy174) (Just yvy175) otherwise",fontsize=16,color="black",shape="box"];1849 -> 2138[label="",style="solid", color="black", weight=3]; 1850[label="LT",fontsize=16,color="green",shape="box"];1851 -> 1835[label="",style="dashed", color="red", weight=0]; 1851[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1851 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1851 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1852 -> 1836[label="",style="dashed", color="red", weight=0]; 1852[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1852 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1852 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1853 -> 1837[label="",style="dashed", color="red", weight=0]; 1853[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1853 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1853 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1854 -> 1838[label="",style="dashed", color="red", weight=0]; 1854[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1854 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1854 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1855 -> 1839[label="",style="dashed", color="red", weight=0]; 1855[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1855 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1855 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1856 -> 1840[label="",style="dashed", color="red", weight=0]; 1856[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1856 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1856 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1857 -> 1841[label="",style="dashed", color="red", weight=0]; 1857[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1857 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1857 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1858 -> 1842[label="",style="dashed", color="red", weight=0]; 1858[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1858 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1858 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1859 -> 1843[label="",style="dashed", color="red", weight=0]; 1859[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1859 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1859 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1860 -> 1844[label="",style="dashed", color="red", weight=0]; 1860[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1860 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1860 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1861 -> 1845[label="",style="dashed", color="red", weight=0]; 1861[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1861 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1862 -> 1846[label="",style="dashed", color="red", weight=0]; 1862[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1862 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1862 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1863 -> 1847[label="",style="dashed", color="red", weight=0]; 1863[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1863 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1864 -> 1848[label="",style="dashed", color="red", weight=0]; 1864[label="yvy107 <= yvy108",fontsize=16,color="magenta"];1864 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1864 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1865[label="compare0 (Left yvy184) (Left yvy185) otherwise",fontsize=16,color="black",shape="box"];1865 -> 2167[label="",style="solid", color="black", weight=3]; 1866[label="LT",fontsize=16,color="green",shape="box"];1867 -> 1835[label="",style="dashed", color="red", weight=0]; 1867[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1867 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1868 -> 1836[label="",style="dashed", color="red", weight=0]; 1868[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1868 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1868 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1869 -> 1837[label="",style="dashed", color="red", weight=0]; 1869[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1869 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1870 -> 1838[label="",style="dashed", color="red", weight=0]; 1870[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1870 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1870 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1871 -> 1839[label="",style="dashed", color="red", weight=0]; 1871[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1871 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1872 -> 1840[label="",style="dashed", color="red", weight=0]; 1872[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1872 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1872 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1873 -> 1841[label="",style="dashed", color="red", weight=0]; 1873[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1873 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1873 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1842[label="",style="dashed", color="red", weight=0]; 1874[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1874 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1874 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1843[label="",style="dashed", color="red", weight=0]; 1875[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1875 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1844[label="",style="dashed", color="red", weight=0]; 1876[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1876 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1876 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1845[label="",style="dashed", color="red", weight=0]; 1877[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1877 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1846[label="",style="dashed", color="red", weight=0]; 1878[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1878 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1847[label="",style="dashed", color="red", weight=0]; 1879[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1879 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1848[label="",style="dashed", color="red", weight=0]; 1880[label="yvy114 <= yvy115",fontsize=16,color="magenta"];1880 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1881[label="compare0 (Right yvy191) (Right yvy192) otherwise",fontsize=16,color="black",shape="box"];1881 -> 2196[label="",style="solid", color="black", weight=3]; 1882[label="LT",fontsize=16,color="green",shape="box"];1885[label="yvy40010",fontsize=16,color="green",shape="box"];1886[label="yvy30000",fontsize=16,color="green",shape="box"];1887[label="yvy30000",fontsize=16,color="green",shape="box"];1888[label="yvy40010",fontsize=16,color="green",shape="box"];1889[label="primPlusInt (Pos Zero) (FiniteMap.sizeFM yvy54)",fontsize=16,color="burlywood",shape="box"];4682[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4682[label="",style="solid", color="burlywood", weight=9]; 4682 -> 2201[label="",style="solid", color="burlywood", weight=3]; 4683[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4683[label="",style="solid", color="burlywood", weight=9]; 4683 -> 2202[label="",style="solid", color="burlywood", weight=3]; 1890[label="primPlusInt (Pos yvy11820) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 (Pos yvy11820) yvy1183 yvy1184) yvy54)",fontsize=16,color="black",shape="box"];1890 -> 2203[label="",style="solid", color="black", weight=3]; 1891[label="primPlusInt (Neg yvy11820) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 (Neg yvy11820) yvy1183 yvy1184) yvy54)",fontsize=16,color="black",shape="box"];1891 -> 2204[label="",style="solid", color="black", weight=3]; 4049[label="FiniteMap.Branch yvy346 yvy347 (FiniteMap.mkBranchUnbox yvy349 yvy346 yvy348 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy349 yvy346 yvy348 + FiniteMap.mkBranchRight_size yvy349 yvy346 yvy348)) yvy348 yvy349",fontsize=16,color="green",shape="box"];4049 -> 4050[label="",style="dashed", color="green", weight=3]; 2969[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];4684[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4684[label="",style="solid", color="burlywood", weight=9]; 4684 -> 3109[label="",style="solid", color="burlywood", weight=3]; 4685[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4685[label="",style="solid", color="burlywood", weight=9]; 4685 -> 3110[label="",style="solid", color="burlywood", weight=3]; 2970 -> 1239[label="",style="dashed", color="red", weight=0]; 2970[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2971 -> 2966[label="",style="dashed", color="red", weight=0]; 2971[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];2972 -> 895[label="",style="dashed", color="red", weight=0]; 2972[label="compare yvy296 yvy295 == GT",fontsize=16,color="magenta"];2972 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3112[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2953[label="",style="dashed", color="red", weight=0]; 1921[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54)",fontsize=16,color="magenta"];1921 -> 2954[label="",style="dashed", color="magenta", weight=3]; 1922[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy118 yvy54 yvy118 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];4686[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1922 -> 4686[label="",style="solid", color="burlywood", weight=9]; 4686 -> 2212[label="",style="solid", color="burlywood", weight=3]; 4687[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];1922 -> 4687[label="",style="solid", color="burlywood", weight=9]; 4687 -> 2213[label="",style="solid", color="burlywood", weight=3]; 2959[label="yvy300000",fontsize=16,color="green",shape="box"];2960[label="Succ yvy400100",fontsize=16,color="green",shape="box"];3190[label="Succ (Succ (primPlusNat yvy29200 yvy4001000))",fontsize=16,color="green",shape="box"];3190 -> 3344[label="",style="dashed", color="green", weight=3]; 3191[label="Succ yvy29200",fontsize=16,color="green",shape="box"];3192[label="Succ yvy4001000",fontsize=16,color="green",shape="box"];3193[label="Zero",fontsize=16,color="green",shape="box"];1906 -> 631[label="",style="dashed", color="red", weight=0]; 1906[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1906 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2219[label="",style="dashed", color="magenta", weight=3]; 3928[label="yvy41",fontsize=16,color="green",shape="box"];3929[label="FiniteMap.Branch yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="green",shape="box"];3930[label="yvy40",fontsize=16,color="green",shape="box"];3931[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3932[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];1923 -> 631[label="",style="dashed", color="red", weight=0]; 1923[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="magenta"];1923 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2225[label="",style="dashed", color="magenta", weight=3]; 3933[label="yvy41",fontsize=16,color="green",shape="box"];3934[label="FiniteMap.Branch yvy60 yvy61 (Pos Zero) yvy63 yvy64",fontsize=16,color="green",shape="box"];3935[label="yvy40",fontsize=16,color="green",shape="box"];3936[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3937[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];1937 -> 631[label="",style="dashed", color="red", weight=0]; 1937[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1937 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2231[label="",style="dashed", color="magenta", weight=3]; 3938[label="yvy41",fontsize=16,color="green",shape="box"];3939[label="FiniteMap.Branch yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="green",shape="box"];3940[label="yvy40",fontsize=16,color="green",shape="box"];3941[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3942[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];1952 -> 631[label="",style="dashed", color="red", weight=0]; 1952[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="magenta"];1952 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2237[label="",style="dashed", color="magenta", weight=3]; 3943[label="yvy41",fontsize=16,color="green",shape="box"];3944[label="FiniteMap.Branch yvy60 yvy61 (Neg Zero) yvy63 yvy64",fontsize=16,color="green",shape="box"];3945[label="yvy40",fontsize=16,color="green",shape="box"];3946[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3947[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];1966 -> 895[label="",style="dashed", color="red", weight=0]; 1966[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1966 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1967 -> 895[label="",style="dashed", color="red", weight=0]; 1967[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1967 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1968 -> 895[label="",style="dashed", color="red", weight=0]; 1968[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1968 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1969 -> 895[label="",style="dashed", color="red", weight=0]; 1969[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1969 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1970 -> 895[label="",style="dashed", color="red", weight=0]; 1970[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1970 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1971 -> 895[label="",style="dashed", color="red", weight=0]; 1971[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1971 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1972 -> 895[label="",style="dashed", color="red", weight=0]; 1972[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1972 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1973 -> 895[label="",style="dashed", color="red", weight=0]; 1973[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1973 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1974 -> 895[label="",style="dashed", color="red", weight=0]; 1974[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1974 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1975 -> 895[label="",style="dashed", color="red", weight=0]; 1975[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1975 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1976 -> 895[label="",style="dashed", color="red", weight=0]; 1976[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1976 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1977 -> 895[label="",style="dashed", color="red", weight=0]; 1977[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1977 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1978 -> 895[label="",style="dashed", color="red", weight=0]; 1978[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1978 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1979 -> 895[label="",style="dashed", color="red", weight=0]; 1979[label="compare yvy150 yvy152 == LT",fontsize=16,color="magenta"];1979 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1980 -> 896[label="",style="dashed", color="red", weight=0]; 1980[label="yvy150 == yvy152",fontsize=16,color="magenta"];1980 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1981 -> 902[label="",style="dashed", color="red", weight=0]; 1981[label="yvy150 == yvy152",fontsize=16,color="magenta"];1981 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1982 -> 901[label="",style="dashed", color="red", weight=0]; 1982[label="yvy150 == yvy152",fontsize=16,color="magenta"];1982 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1983 -> 903[label="",style="dashed", color="red", weight=0]; 1983[label="yvy150 == yvy152",fontsize=16,color="magenta"];1983 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1984 -> 898[label="",style="dashed", color="red", weight=0]; 1984[label="yvy150 == yvy152",fontsize=16,color="magenta"];1984 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2276[label="",style="dashed", color="magenta", weight=3]; 1985 -> 892[label="",style="dashed", color="red", weight=0]; 1985[label="yvy150 == yvy152",fontsize=16,color="magenta"];1985 -> 2277[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2278[label="",style="dashed", color="magenta", weight=3]; 1986 -> 897[label="",style="dashed", color="red", weight=0]; 1986[label="yvy150 == yvy152",fontsize=16,color="magenta"];1986 -> 2279[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2280[label="",style="dashed", color="magenta", weight=3]; 1987 -> 891[label="",style="dashed", color="red", weight=0]; 1987[label="yvy150 == yvy152",fontsize=16,color="magenta"];1987 -> 2281[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2282[label="",style="dashed", color="magenta", weight=3]; 1988 -> 893[label="",style="dashed", color="red", weight=0]; 1988[label="yvy150 == yvy152",fontsize=16,color="magenta"];1988 -> 2283[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2284[label="",style="dashed", color="magenta", weight=3]; 1989 -> 894[label="",style="dashed", color="red", weight=0]; 1989[label="yvy150 == yvy152",fontsize=16,color="magenta"];1989 -> 2285[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2286[label="",style="dashed", color="magenta", weight=3]; 1990 -> 900[label="",style="dashed", color="red", weight=0]; 1990[label="yvy150 == yvy152",fontsize=16,color="magenta"];1990 -> 2287[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2288[label="",style="dashed", color="magenta", weight=3]; 1991 -> 895[label="",style="dashed", color="red", weight=0]; 1991[label="yvy150 == yvy152",fontsize=16,color="magenta"];1991 -> 2289[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2290[label="",style="dashed", color="magenta", weight=3]; 1992 -> 904[label="",style="dashed", color="red", weight=0]; 1992[label="yvy150 == yvy152",fontsize=16,color="magenta"];1992 -> 2291[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2292[label="",style="dashed", color="magenta", weight=3]; 1993 -> 899[label="",style="dashed", color="red", weight=0]; 1993[label="yvy150 == yvy152",fontsize=16,color="magenta"];1993 -> 2293[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2294[label="",style="dashed", color="magenta", weight=3]; 1994 -> 1835[label="",style="dashed", color="red", weight=0]; 1994[label="yvy151 <= yvy153",fontsize=16,color="magenta"];1994 -> 2295[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2296[label="",style="dashed", color="magenta", weight=3]; 1995 -> 1836[label="",style="dashed", color="red", weight=0]; 1995[label="yvy151 <= yvy153",fontsize=16,color="magenta"];1995 -> 2297[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2298[label="",style="dashed", color="magenta", weight=3]; 1996 -> 1837[label="",style="dashed", color="red", weight=0]; 1996[label="yvy151 <= yvy153",fontsize=16,color="magenta"];1996 -> 2299[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2300[label="",style="dashed", color="magenta", weight=3]; 1997 -> 1838[label="",style="dashed", color="red", weight=0]; 1997[label="yvy151 <= yvy153",fontsize=16,color="magenta"];1997 -> 2301[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2302[label="",style="dashed", color="magenta", weight=3]; 1998 -> 1839[label="",style="dashed", color="red", weight=0]; 1998[label="yvy151 <= yvy153",fontsize=16,color="magenta"];1998 -> 2303[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2304[label="",style="dashed", color="magenta", weight=3]; 1999 -> 1840[label="",style="dashed", color="red", weight=0]; 1999[label="yvy151 <= yvy153",fontsize=16,color="magenta"];1999 -> 2305[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2000 -> 1841[label="",style="dashed", color="red", weight=0]; 2000[label="yvy151 <= yvy153",fontsize=16,color="magenta"];2000 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2001 -> 1842[label="",style="dashed", color="red", weight=0]; 2001[label="yvy151 <= yvy153",fontsize=16,color="magenta"];2001 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2002 -> 1843[label="",style="dashed", color="red", weight=0]; 2002[label="yvy151 <= yvy153",fontsize=16,color="magenta"];2002 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2003 -> 1844[label="",style="dashed", color="red", weight=0]; 2003[label="yvy151 <= yvy153",fontsize=16,color="magenta"];2003 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2004 -> 1845[label="",style="dashed", color="red", weight=0]; 2004[label="yvy151 <= yvy153",fontsize=16,color="magenta"];2004 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2005 -> 1846[label="",style="dashed", color="red", weight=0]; 2005[label="yvy151 <= yvy153",fontsize=16,color="magenta"];2005 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2006 -> 1847[label="",style="dashed", color="red", weight=0]; 2006[label="yvy151 <= yvy153",fontsize=16,color="magenta"];2006 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2007 -> 1848[label="",style="dashed", color="red", weight=0]; 2007[label="yvy151 <= yvy153",fontsize=16,color="magenta"];2007 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2008[label="compare1 (yvy201,yvy202) (yvy203,yvy204) yvy206",fontsize=16,color="burlywood",shape="triangle"];4688[label="yvy206/False",fontsize=10,color="white",style="solid",shape="box"];2008 -> 4688[label="",style="solid", color="burlywood", weight=9]; 4688 -> 2323[label="",style="solid", color="burlywood", weight=3]; 4689[label="yvy206/True",fontsize=10,color="white",style="solid",shape="box"];2008 -> 4689[label="",style="solid", color="burlywood", weight=9]; 4689 -> 2324[label="",style="solid", color="burlywood", weight=3]; 2009 -> 2008[label="",style="dashed", color="red", weight=0]; 2009[label="compare1 (yvy201,yvy202) (yvy203,yvy204) True",fontsize=16,color="magenta"];2009 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2010[label="yvy89",fontsize=16,color="green",shape="box"];2011[label="yvy92",fontsize=16,color="green",shape="box"];2012[label="yvy89",fontsize=16,color="green",shape="box"];2013[label="yvy92",fontsize=16,color="green",shape="box"];2014[label="yvy89",fontsize=16,color="green",shape="box"];2015[label="yvy92",fontsize=16,color="green",shape="box"];2016[label="yvy89",fontsize=16,color="green",shape="box"];2017[label="yvy92",fontsize=16,color="green",shape="box"];2018[label="yvy89",fontsize=16,color="green",shape="box"];2019[label="yvy92",fontsize=16,color="green",shape="box"];2020[label="yvy89",fontsize=16,color="green",shape="box"];2021[label="yvy92",fontsize=16,color="green",shape="box"];2022[label="yvy89",fontsize=16,color="green",shape="box"];2023[label="yvy92",fontsize=16,color="green",shape="box"];2024[label="yvy89",fontsize=16,color="green",shape="box"];2025[label="yvy92",fontsize=16,color="green",shape="box"];2026[label="yvy89",fontsize=16,color="green",shape="box"];2027[label="yvy92",fontsize=16,color="green",shape="box"];2028[label="yvy89",fontsize=16,color="green",shape="box"];2029[label="yvy92",fontsize=16,color="green",shape="box"];2030[label="yvy89",fontsize=16,color="green",shape="box"];2031[label="yvy92",fontsize=16,color="green",shape="box"];2032[label="yvy89",fontsize=16,color="green",shape="box"];2033[label="yvy92",fontsize=16,color="green",shape="box"];2034[label="yvy89",fontsize=16,color="green",shape="box"];2035[label="yvy92",fontsize=16,color="green",shape="box"];2036[label="yvy89",fontsize=16,color="green",shape="box"];2037[label="yvy92",fontsize=16,color="green",shape="box"];2038 -> 896[label="",style="dashed", color="red", weight=0]; 2038[label="yvy89 == yvy92",fontsize=16,color="magenta"];2038 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2038 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2039 -> 902[label="",style="dashed", color="red", weight=0]; 2039[label="yvy89 == yvy92",fontsize=16,color="magenta"];2039 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2039 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2040 -> 901[label="",style="dashed", color="red", weight=0]; 2040[label="yvy89 == yvy92",fontsize=16,color="magenta"];2040 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2040 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2041 -> 903[label="",style="dashed", color="red", weight=0]; 2041[label="yvy89 == yvy92",fontsize=16,color="magenta"];2041 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2041 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2042 -> 898[label="",style="dashed", color="red", weight=0]; 2042[label="yvy89 == yvy92",fontsize=16,color="magenta"];2042 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2042 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2043 -> 892[label="",style="dashed", color="red", weight=0]; 2043[label="yvy89 == yvy92",fontsize=16,color="magenta"];2043 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2044 -> 897[label="",style="dashed", color="red", weight=0]; 2044[label="yvy89 == yvy92",fontsize=16,color="magenta"];2044 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2044 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2045 -> 891[label="",style="dashed", color="red", weight=0]; 2045[label="yvy89 == yvy92",fontsize=16,color="magenta"];2045 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2045 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2046 -> 893[label="",style="dashed", color="red", weight=0]; 2046[label="yvy89 == yvy92",fontsize=16,color="magenta"];2046 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2047 -> 894[label="",style="dashed", color="red", weight=0]; 2047[label="yvy89 == yvy92",fontsize=16,color="magenta"];2047 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2048 -> 900[label="",style="dashed", color="red", weight=0]; 2048[label="yvy89 == yvy92",fontsize=16,color="magenta"];2048 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2048 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2049 -> 895[label="",style="dashed", color="red", weight=0]; 2049[label="yvy89 == yvy92",fontsize=16,color="magenta"];2049 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2050 -> 904[label="",style="dashed", color="red", weight=0]; 2050[label="yvy89 == yvy92",fontsize=16,color="magenta"];2050 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2051 -> 899[label="",style="dashed", color="red", weight=0]; 2051[label="yvy89 == yvy92",fontsize=16,color="magenta"];2051 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2357[label="yvy90 < yvy93",fontsize=16,color="blue",shape="box"];4690[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4690[label="",style="solid", color="blue", weight=9]; 4690 -> 2361[label="",style="solid", color="blue", weight=3]; 4691[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4691[label="",style="solid", color="blue", weight=9]; 4691 -> 2362[label="",style="solid", color="blue", weight=3]; 4692[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4692[label="",style="solid", color="blue", weight=9]; 4692 -> 2363[label="",style="solid", color="blue", weight=3]; 4693[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4693[label="",style="solid", color="blue", weight=9]; 4693 -> 2364[label="",style="solid", color="blue", weight=3]; 4694[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4694[label="",style="solid", color="blue", weight=9]; 4694 -> 2365[label="",style="solid", color="blue", weight=3]; 4695[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4695[label="",style="solid", color="blue", weight=9]; 4695 -> 2366[label="",style="solid", color="blue", weight=3]; 4696[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4696[label="",style="solid", color="blue", weight=9]; 4696 -> 2367[label="",style="solid", color="blue", weight=3]; 4697[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4697[label="",style="solid", color="blue", weight=9]; 4697 -> 2368[label="",style="solid", color="blue", weight=3]; 4698[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4698[label="",style="solid", color="blue", weight=9]; 4698 -> 2369[label="",style="solid", color="blue", weight=3]; 4699[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4699[label="",style="solid", color="blue", weight=9]; 4699 -> 2370[label="",style="solid", color="blue", weight=3]; 4700[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4700[label="",style="solid", color="blue", weight=9]; 4700 -> 2371[label="",style="solid", color="blue", weight=3]; 4701[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4701[label="",style="solid", color="blue", weight=9]; 4701 -> 2372[label="",style="solid", color="blue", weight=3]; 4702[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4702[label="",style="solid", color="blue", weight=9]; 4702 -> 2373[label="",style="solid", color="blue", weight=3]; 4703[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4703[label="",style="solid", color="blue", weight=9]; 4703 -> 2374[label="",style="solid", color="blue", weight=3]; 2358 -> 1398[label="",style="dashed", color="red", weight=0]; 2358[label="yvy90 == yvy93 && yvy91 <= yvy94",fontsize=16,color="magenta"];2358 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2356[label="yvy289 || yvy290",fontsize=16,color="burlywood",shape="triangle"];4704[label="yvy289/False",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4704[label="",style="solid", color="burlywood", weight=9]; 4704 -> 2377[label="",style="solid", color="burlywood", weight=3]; 4705[label="yvy289/True",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4705[label="",style="solid", color="burlywood", weight=9]; 4705 -> 2378[label="",style="solid", color="burlywood", weight=3]; 2054[label="compare1 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) yvy223",fontsize=16,color="burlywood",shape="triangle"];4706[label="yvy223/False",fontsize=10,color="white",style="solid",shape="box"];2054 -> 4706[label="",style="solid", color="burlywood", weight=9]; 4706 -> 2379[label="",style="solid", color="burlywood", weight=3]; 4707[label="yvy223/True",fontsize=10,color="white",style="solid",shape="box"];2054 -> 4707[label="",style="solid", color="burlywood", weight=9]; 4707 -> 2380[label="",style="solid", color="burlywood", weight=3]; 2055 -> 2054[label="",style="dashed", color="red", weight=0]; 2055[label="compare1 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) True",fontsize=16,color="magenta"];2055 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2056[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4708[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4708[label="",style="solid", color="blue", weight=9]; 4708 -> 2382[label="",style="solid", color="blue", weight=3]; 4709[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4709[label="",style="solid", color="blue", weight=9]; 4709 -> 2383[label="",style="solid", color="blue", weight=3]; 4710[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4710[label="",style="solid", color="blue", weight=9]; 4710 -> 2384[label="",style="solid", color="blue", weight=3]; 4711[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4711[label="",style="solid", color="blue", weight=9]; 4711 -> 2385[label="",style="solid", color="blue", weight=3]; 4712[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4712[label="",style="solid", color="blue", weight=9]; 4712 -> 2386[label="",style="solid", color="blue", weight=3]; 4713[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4713[label="",style="solid", color="blue", weight=9]; 4713 -> 2387[label="",style="solid", color="blue", weight=3]; 4714[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4714[label="",style="solid", color="blue", weight=9]; 4714 -> 2388[label="",style="solid", color="blue", weight=3]; 4715[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4715[label="",style="solid", color="blue", weight=9]; 4715 -> 2389[label="",style="solid", color="blue", weight=3]; 4716[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4716[label="",style="solid", color="blue", weight=9]; 4716 -> 2390[label="",style="solid", color="blue", weight=3]; 4717[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4717[label="",style="solid", color="blue", weight=9]; 4717 -> 2391[label="",style="solid", color="blue", weight=3]; 4718[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4718[label="",style="solid", color="blue", weight=9]; 4718 -> 2392[label="",style="solid", color="blue", weight=3]; 4719[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4719[label="",style="solid", color="blue", weight=9]; 4719 -> 2393[label="",style="solid", color="blue", weight=3]; 4720[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4720[label="",style="solid", color="blue", weight=9]; 4720 -> 2394[label="",style="solid", color="blue", weight=3]; 4721[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4721[label="",style="solid", color="blue", weight=9]; 4721 -> 2395[label="",style="solid", color="blue", weight=3]; 2057 -> 1398[label="",style="dashed", color="red", weight=0]; 2057[label="yvy40001 == yvy30001 && yvy40002 == yvy30002",fontsize=16,color="magenta"];2057 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2058[label="yvy40000",fontsize=16,color="green",shape="box"];2059[label="yvy30000",fontsize=16,color="green",shape="box"];2060 -> 891[label="",style="dashed", color="red", weight=0]; 2060[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2060 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2061 -> 892[label="",style="dashed", color="red", weight=0]; 2061[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2061 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2062 -> 893[label="",style="dashed", color="red", weight=0]; 2062[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2062 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2063 -> 894[label="",style="dashed", color="red", weight=0]; 2063[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2063 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2064 -> 895[label="",style="dashed", color="red", weight=0]; 2064[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2064 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2065 -> 896[label="",style="dashed", color="red", weight=0]; 2065[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2065 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2066 -> 897[label="",style="dashed", color="red", weight=0]; 2066[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2066 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2067 -> 898[label="",style="dashed", color="red", weight=0]; 2067[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2067 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2068 -> 899[label="",style="dashed", color="red", weight=0]; 2068[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2068 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2069 -> 900[label="",style="dashed", color="red", weight=0]; 2069[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2069 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2070 -> 901[label="",style="dashed", color="red", weight=0]; 2070[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2070 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2071 -> 902[label="",style="dashed", color="red", weight=0]; 2071[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2071 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2072 -> 903[label="",style="dashed", color="red", weight=0]; 2072[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2072 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2073 -> 904[label="",style="dashed", color="red", weight=0]; 2073[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2073 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2074 -> 901[label="",style="dashed", color="red", weight=0]; 2074[label="yvy40000 * yvy30001 == yvy40001 * yvy30000",fontsize=16,color="magenta"];2074 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2075[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4722[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4722[label="",style="solid", color="blue", weight=9]; 4722 -> 2428[label="",style="solid", color="blue", weight=3]; 4723[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4723[label="",style="solid", color="blue", weight=9]; 4723 -> 2429[label="",style="solid", color="blue", weight=3]; 4724[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4724[label="",style="solid", color="blue", weight=9]; 4724 -> 2430[label="",style="solid", color="blue", weight=3]; 4725[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4725[label="",style="solid", color="blue", weight=9]; 4725 -> 2431[label="",style="solid", color="blue", weight=3]; 4726[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4726[label="",style="solid", color="blue", weight=9]; 4726 -> 2432[label="",style="solid", color="blue", weight=3]; 4727[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4727[label="",style="solid", color="blue", weight=9]; 4727 -> 2433[label="",style="solid", color="blue", weight=3]; 4728[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4728[label="",style="solid", color="blue", weight=9]; 4728 -> 2434[label="",style="solid", color="blue", weight=3]; 4729[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4729[label="",style="solid", color="blue", weight=9]; 4729 -> 2435[label="",style="solid", color="blue", weight=3]; 4730[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4730[label="",style="solid", color="blue", weight=9]; 4730 -> 2436[label="",style="solid", color="blue", weight=3]; 4731[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4731[label="",style="solid", color="blue", weight=9]; 4731 -> 2437[label="",style="solid", color="blue", weight=3]; 4732[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4732[label="",style="solid", color="blue", weight=9]; 4732 -> 2438[label="",style="solid", color="blue", weight=3]; 4733[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4733[label="",style="solid", color="blue", weight=9]; 4733 -> 2439[label="",style="solid", color="blue", weight=3]; 4734[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4734[label="",style="solid", color="blue", weight=9]; 4734 -> 2440[label="",style="solid", color="blue", weight=3]; 4735[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4735[label="",style="solid", color="blue", weight=9]; 4735 -> 2441[label="",style="solid", color="blue", weight=3]; 2076[label="yvy40001 == yvy30001",fontsize=16,color="blue",shape="box"];4736[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4736[label="",style="solid", color="blue", weight=9]; 4736 -> 2442[label="",style="solid", color="blue", weight=3]; 4737[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4737[label="",style="solid", color="blue", weight=9]; 4737 -> 2443[label="",style="solid", color="blue", weight=3]; 4738[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4738[label="",style="solid", color="blue", weight=9]; 4738 -> 2444[label="",style="solid", color="blue", weight=3]; 4739[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4739[label="",style="solid", color="blue", weight=9]; 4739 -> 2445[label="",style="solid", color="blue", weight=3]; 4740[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4740[label="",style="solid", color="blue", weight=9]; 4740 -> 2446[label="",style="solid", color="blue", weight=3]; 4741[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4741[label="",style="solid", color="blue", weight=9]; 4741 -> 2447[label="",style="solid", color="blue", weight=3]; 4742[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4742[label="",style="solid", color="blue", weight=9]; 4742 -> 2448[label="",style="solid", color="blue", weight=3]; 4743[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4743[label="",style="solid", color="blue", weight=9]; 4743 -> 2449[label="",style="solid", color="blue", weight=3]; 4744[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4744[label="",style="solid", color="blue", weight=9]; 4744 -> 2450[label="",style="solid", color="blue", weight=3]; 4745[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4745[label="",style="solid", color="blue", weight=9]; 4745 -> 2451[label="",style="solid", color="blue", weight=3]; 4746[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4746[label="",style="solid", color="blue", weight=9]; 4746 -> 2452[label="",style="solid", color="blue", weight=3]; 4747[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4747[label="",style="solid", color="blue", weight=9]; 4747 -> 2453[label="",style="solid", color="blue", weight=3]; 4748[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4748[label="",style="solid", color="blue", weight=9]; 4748 -> 2454[label="",style="solid", color="blue", weight=3]; 4749[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4749[label="",style="solid", color="blue", weight=9]; 4749 -> 2455[label="",style="solid", color="blue", weight=3]; 2077[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4750[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4750[label="",style="solid", color="blue", weight=9]; 4750 -> 2456[label="",style="solid", color="blue", weight=3]; 4751[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4751[label="",style="solid", color="blue", weight=9]; 4751 -> 2457[label="",style="solid", color="blue", weight=3]; 2078[label="yvy40001 == yvy30001",fontsize=16,color="blue",shape="box"];4752[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4752[label="",style="solid", color="blue", weight=9]; 4752 -> 2458[label="",style="solid", color="blue", weight=3]; 4753[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4753[label="",style="solid", color="blue", weight=9]; 4753 -> 2459[label="",style="solid", color="blue", weight=3]; 2079 -> 891[label="",style="dashed", color="red", weight=0]; 2079[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2079 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2080 -> 892[label="",style="dashed", color="red", weight=0]; 2080[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2080 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2081 -> 893[label="",style="dashed", color="red", weight=0]; 2081[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2081 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2082 -> 894[label="",style="dashed", color="red", weight=0]; 2082[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2082 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2083 -> 895[label="",style="dashed", color="red", weight=0]; 2083[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2083 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2084 -> 896[label="",style="dashed", color="red", weight=0]; 2084[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2084 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2085 -> 897[label="",style="dashed", color="red", weight=0]; 2085[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2085 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2086 -> 898[label="",style="dashed", color="red", weight=0]; 2086[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2086 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2087 -> 899[label="",style="dashed", color="red", weight=0]; 2087[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2087 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2088 -> 900[label="",style="dashed", color="red", weight=0]; 2088[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2088 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2089 -> 901[label="",style="dashed", color="red", weight=0]; 2089[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2089 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2090 -> 902[label="",style="dashed", color="red", weight=0]; 2090[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2090 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2091 -> 903[label="",style="dashed", color="red", weight=0]; 2091[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2091 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2092 -> 904[label="",style="dashed", color="red", weight=0]; 2092[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2092 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2093 -> 891[label="",style="dashed", color="red", weight=0]; 2093[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2093 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2094 -> 892[label="",style="dashed", color="red", weight=0]; 2094[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2094 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2095 -> 893[label="",style="dashed", color="red", weight=0]; 2095[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2095 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2096 -> 894[label="",style="dashed", color="red", weight=0]; 2096[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2096 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2097 -> 895[label="",style="dashed", color="red", weight=0]; 2097[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2097 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2098 -> 896[label="",style="dashed", color="red", weight=0]; 2098[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2098 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2099 -> 897[label="",style="dashed", color="red", weight=0]; 2099[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2099 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2100 -> 898[label="",style="dashed", color="red", weight=0]; 2100[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2100 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2101 -> 899[label="",style="dashed", color="red", weight=0]; 2101[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2101 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2102 -> 900[label="",style="dashed", color="red", weight=0]; 2102[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2102 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2103 -> 901[label="",style="dashed", color="red", weight=0]; 2103[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2103 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2104 -> 902[label="",style="dashed", color="red", weight=0]; 2104[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2104 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2105 -> 903[label="",style="dashed", color="red", weight=0]; 2105[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2105 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2106 -> 904[label="",style="dashed", color="red", weight=0]; 2106[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2106 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2107[label="primEqInt (Pos (Succ yvy400000)) (Pos yvy30000)",fontsize=16,color="burlywood",shape="box"];4754[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2107 -> 4754[label="",style="solid", color="burlywood", weight=9]; 4754 -> 2516[label="",style="solid", color="burlywood", weight=3]; 4755[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2107 -> 4755[label="",style="solid", color="burlywood", weight=9]; 4755 -> 2517[label="",style="solid", color="burlywood", weight=3]; 2108[label="primEqInt (Pos (Succ yvy400000)) (Neg yvy30000)",fontsize=16,color="black",shape="box"];2108 -> 2518[label="",style="solid", color="black", weight=3]; 2109[label="primEqInt (Pos Zero) (Pos yvy30000)",fontsize=16,color="burlywood",shape="box"];4756[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2109 -> 4756[label="",style="solid", color="burlywood", weight=9]; 4756 -> 2519[label="",style="solid", color="burlywood", weight=3]; 4757[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2109 -> 4757[label="",style="solid", color="burlywood", weight=9]; 4757 -> 2520[label="",style="solid", color="burlywood", weight=3]; 2110[label="primEqInt (Pos Zero) (Neg yvy30000)",fontsize=16,color="burlywood",shape="box"];4758[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2110 -> 4758[label="",style="solid", color="burlywood", weight=9]; 4758 -> 2521[label="",style="solid", color="burlywood", weight=3]; 4759[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2110 -> 4759[label="",style="solid", color="burlywood", weight=9]; 4759 -> 2522[label="",style="solid", color="burlywood", weight=3]; 2111[label="primEqInt (Neg (Succ yvy400000)) (Pos yvy30000)",fontsize=16,color="black",shape="box"];2111 -> 2523[label="",style="solid", color="black", weight=3]; 2112[label="primEqInt (Neg (Succ yvy400000)) (Neg yvy30000)",fontsize=16,color="burlywood",shape="box"];4760[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2112 -> 4760[label="",style="solid", color="burlywood", weight=9]; 4760 -> 2524[label="",style="solid", color="burlywood", weight=3]; 4761[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2112 -> 4761[label="",style="solid", color="burlywood", weight=9]; 4761 -> 2525[label="",style="solid", color="burlywood", weight=3]; 2113[label="primEqInt (Neg Zero) (Pos yvy30000)",fontsize=16,color="burlywood",shape="box"];4762[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2113 -> 4762[label="",style="solid", color="burlywood", weight=9]; 4762 -> 2526[label="",style="solid", color="burlywood", weight=3]; 4763[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2113 -> 4763[label="",style="solid", color="burlywood", weight=9]; 4763 -> 2527[label="",style="solid", color="burlywood", weight=3]; 2114[label="primEqInt (Neg Zero) (Neg yvy30000)",fontsize=16,color="burlywood",shape="box"];4764[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2114 -> 4764[label="",style="solid", color="burlywood", weight=9]; 4764 -> 2528[label="",style="solid", color="burlywood", weight=3]; 4765[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2114 -> 4765[label="",style="solid", color="burlywood", weight=9]; 4765 -> 2529[label="",style="solid", color="burlywood", weight=3]; 2115[label="primEqNat yvy40000 yvy30000",fontsize=16,color="burlywood",shape="triangle"];4766[label="yvy40000/Succ yvy400000",fontsize=10,color="white",style="solid",shape="box"];2115 -> 4766[label="",style="solid", color="burlywood", weight=9]; 4766 -> 2530[label="",style="solid", color="burlywood", weight=3]; 4767[label="yvy40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2115 -> 4767[label="",style="solid", color="burlywood", weight=9]; 4767 -> 2531[label="",style="solid", color="burlywood", weight=3]; 2116[label="yvy40000 == yvy30000",fontsize=16,color="blue",shape="box"];4768[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4768[label="",style="solid", color="blue", weight=9]; 4768 -> 2532[label="",style="solid", color="blue", weight=3]; 4769[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4769[label="",style="solid", color="blue", weight=9]; 4769 -> 2533[label="",style="solid", color="blue", weight=3]; 4770[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4770[label="",style="solid", color="blue", weight=9]; 4770 -> 2534[label="",style="solid", color="blue", weight=3]; 4771[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4771[label="",style="solid", color="blue", weight=9]; 4771 -> 2535[label="",style="solid", color="blue", weight=3]; 4772[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4772[label="",style="solid", color="blue", weight=9]; 4772 -> 2536[label="",style="solid", color="blue", weight=3]; 4773[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4773[label="",style="solid", color="blue", weight=9]; 4773 -> 2537[label="",style="solid", color="blue", weight=3]; 4774[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4774[label="",style="solid", color="blue", weight=9]; 4774 -> 2538[label="",style="solid", color="blue", weight=3]; 4775[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4775[label="",style="solid", color="blue", weight=9]; 4775 -> 2539[label="",style="solid", color="blue", weight=3]; 4776[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4776[label="",style="solid", color="blue", weight=9]; 4776 -> 2540[label="",style="solid", color="blue", weight=3]; 4777[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4777[label="",style="solid", color="blue", weight=9]; 4777 -> 2541[label="",style="solid", color="blue", weight=3]; 4778[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4778[label="",style="solid", color="blue", weight=9]; 4778 -> 2542[label="",style="solid", color="blue", weight=3]; 4779[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4779[label="",style="solid", color="blue", weight=9]; 4779 -> 2543[label="",style="solid", color="blue", weight=3]; 4780[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4780[label="",style="solid", color="blue", weight=9]; 4780 -> 2544[label="",style="solid", color="blue", weight=3]; 4781[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4781[label="",style="solid", color="blue", weight=9]; 4781 -> 2545[label="",style="solid", color="blue", weight=3]; 2117 -> 903[label="",style="dashed", color="red", weight=0]; 2117[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2117 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2118 -> 901[label="",style="dashed", color="red", weight=0]; 2118[label="yvy40000 * yvy30001 == yvy40001 * yvy30000",fontsize=16,color="magenta"];2118 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2550[label="",style="dashed", color="red", weight=0]; 2119[label="compare yvy100 yvy101 /= GT",fontsize=16,color="magenta"];2119 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2550[label="",style="dashed", color="red", weight=0]; 2120[label="compare yvy100 yvy101 /= GT",fontsize=16,color="magenta"];2120 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2550[label="",style="dashed", color="red", weight=0]; 2121[label="compare yvy100 yvy101 /= GT",fontsize=16,color="magenta"];2121 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2550[label="",style="dashed", color="red", weight=0]; 2122[label="compare yvy100 yvy101 /= GT",fontsize=16,color="magenta"];2122 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2123 -> 2550[label="",style="dashed", color="red", weight=0]; 2123[label="compare yvy100 yvy101 /= GT",fontsize=16,color="magenta"];2123 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2550[label="",style="dashed", color="red", weight=0]; 2124[label="compare yvy100 yvy101 /= GT",fontsize=16,color="magenta"];2124 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2125[label="(yvy1000,yvy1001) <= yvy101",fontsize=16,color="burlywood",shape="box"];4782[label="yvy101/(yvy1010,yvy1011)",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4782[label="",style="solid", color="burlywood", weight=9]; 4782 -> 2559[label="",style="solid", color="burlywood", weight=3]; 2126[label="(yvy1000,yvy1001,yvy1002) <= yvy101",fontsize=16,color="burlywood",shape="box"];4783[label="yvy101/(yvy1010,yvy1011,yvy1012)",fontsize=10,color="white",style="solid",shape="box"];2126 -> 4783[label="",style="solid", color="burlywood", weight=9]; 4783 -> 2560[label="",style="solid", color="burlywood", weight=3]; 2127[label="False <= yvy101",fontsize=16,color="burlywood",shape="box"];4784[label="yvy101/False",fontsize=10,color="white",style="solid",shape="box"];2127 -> 4784[label="",style="solid", color="burlywood", weight=9]; 4784 -> 2561[label="",style="solid", color="burlywood", weight=3]; 4785[label="yvy101/True",fontsize=10,color="white",style="solid",shape="box"];2127 -> 4785[label="",style="solid", color="burlywood", weight=9]; 4785 -> 2562[label="",style="solid", color="burlywood", weight=3]; 2128[label="True <= yvy101",fontsize=16,color="burlywood",shape="box"];4786[label="yvy101/False",fontsize=10,color="white",style="solid",shape="box"];2128 -> 4786[label="",style="solid", color="burlywood", weight=9]; 4786 -> 2563[label="",style="solid", color="burlywood", weight=3]; 4787[label="yvy101/True",fontsize=10,color="white",style="solid",shape="box"];2128 -> 4787[label="",style="solid", color="burlywood", weight=9]; 4787 -> 2564[label="",style="solid", color="burlywood", weight=3]; 2129[label="Nothing <= yvy101",fontsize=16,color="burlywood",shape="box"];4788[label="yvy101/Nothing",fontsize=10,color="white",style="solid",shape="box"];2129 -> 4788[label="",style="solid", color="burlywood", weight=9]; 4788 -> 2565[label="",style="solid", color="burlywood", weight=3]; 4789[label="yvy101/Just yvy1010",fontsize=10,color="white",style="solid",shape="box"];2129 -> 4789[label="",style="solid", color="burlywood", weight=9]; 4789 -> 2566[label="",style="solid", color="burlywood", weight=3]; 2130[label="Just yvy1000 <= yvy101",fontsize=16,color="burlywood",shape="box"];4790[label="yvy101/Nothing",fontsize=10,color="white",style="solid",shape="box"];2130 -> 4790[label="",style="solid", color="burlywood", weight=9]; 4790 -> 2567[label="",style="solid", color="burlywood", weight=3]; 4791[label="yvy101/Just yvy1010",fontsize=10,color="white",style="solid",shape="box"];2130 -> 4791[label="",style="solid", color="burlywood", weight=9]; 4791 -> 2568[label="",style="solid", color="burlywood", weight=3]; 2131[label="Left yvy1000 <= yvy101",fontsize=16,color="burlywood",shape="box"];4792[label="yvy101/Left yvy1010",fontsize=10,color="white",style="solid",shape="box"];2131 -> 4792[label="",style="solid", color="burlywood", weight=9]; 4792 -> 2569[label="",style="solid", color="burlywood", weight=3]; 4793[label="yvy101/Right yvy1010",fontsize=10,color="white",style="solid",shape="box"];2131 -> 4793[label="",style="solid", color="burlywood", weight=9]; 4793 -> 2570[label="",style="solid", color="burlywood", weight=3]; 2132[label="Right yvy1000 <= yvy101",fontsize=16,color="burlywood",shape="box"];4794[label="yvy101/Left yvy1010",fontsize=10,color="white",style="solid",shape="box"];2132 -> 4794[label="",style="solid", color="burlywood", weight=9]; 4794 -> 2571[label="",style="solid", color="burlywood", weight=3]; 4795[label="yvy101/Right yvy1010",fontsize=10,color="white",style="solid",shape="box"];2132 -> 4795[label="",style="solid", color="burlywood", weight=9]; 4795 -> 2572[label="",style="solid", color="burlywood", weight=3]; 2133[label="LT <= yvy101",fontsize=16,color="burlywood",shape="box"];4796[label="yvy101/LT",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4796[label="",style="solid", color="burlywood", weight=9]; 4796 -> 2573[label="",style="solid", color="burlywood", weight=3]; 4797[label="yvy101/EQ",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4797[label="",style="solid", color="burlywood", weight=9]; 4797 -> 2574[label="",style="solid", color="burlywood", weight=3]; 4798[label="yvy101/GT",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4798[label="",style="solid", color="burlywood", weight=9]; 4798 -> 2575[label="",style="solid", color="burlywood", weight=3]; 2134[label="EQ <= yvy101",fontsize=16,color="burlywood",shape="box"];4799[label="yvy101/LT",fontsize=10,color="white",style="solid",shape="box"];2134 -> 4799[label="",style="solid", color="burlywood", weight=9]; 4799 -> 2576[label="",style="solid", color="burlywood", weight=3]; 4800[label="yvy101/EQ",fontsize=10,color="white",style="solid",shape="box"];2134 -> 4800[label="",style="solid", color="burlywood", weight=9]; 4800 -> 2577[label="",style="solid", color="burlywood", weight=3]; 4801[label="yvy101/GT",fontsize=10,color="white",style="solid",shape="box"];2134 -> 4801[label="",style="solid", color="burlywood", weight=9]; 4801 -> 2578[label="",style="solid", color="burlywood", weight=3]; 2135[label="GT <= yvy101",fontsize=16,color="burlywood",shape="box"];4802[label="yvy101/LT",fontsize=10,color="white",style="solid",shape="box"];2135 -> 4802[label="",style="solid", color="burlywood", weight=9]; 4802 -> 2579[label="",style="solid", color="burlywood", weight=3]; 4803[label="yvy101/EQ",fontsize=10,color="white",style="solid",shape="box"];2135 -> 4803[label="",style="solid", color="burlywood", weight=9]; 4803 -> 2580[label="",style="solid", color="burlywood", weight=3]; 4804[label="yvy101/GT",fontsize=10,color="white",style="solid",shape="box"];2135 -> 4804[label="",style="solid", color="burlywood", weight=9]; 4804 -> 2581[label="",style="solid", color="burlywood", weight=3]; 2136 -> 2550[label="",style="dashed", color="red", weight=0]; 2136[label="compare yvy100 yvy101 /= GT",fontsize=16,color="magenta"];2136 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2550[label="",style="dashed", color="red", weight=0]; 2137[label="compare yvy100 yvy101 /= GT",fontsize=16,color="magenta"];2137 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2138[label="compare0 (Just yvy174) (Just yvy175) True",fontsize=16,color="black",shape="box"];2138 -> 2582[label="",style="solid", color="black", weight=3]; 2139[label="yvy108",fontsize=16,color="green",shape="box"];2140[label="yvy107",fontsize=16,color="green",shape="box"];2141[label="yvy108",fontsize=16,color="green",shape="box"];2142[label="yvy107",fontsize=16,color="green",shape="box"];2143[label="yvy108",fontsize=16,color="green",shape="box"];2144[label="yvy107",fontsize=16,color="green",shape="box"];2145[label="yvy108",fontsize=16,color="green",shape="box"];2146[label="yvy107",fontsize=16,color="green",shape="box"];2147[label="yvy108",fontsize=16,color="green",shape="box"];2148[label="yvy107",fontsize=16,color="green",shape="box"];2149[label="yvy108",fontsize=16,color="green",shape="box"];2150[label="yvy107",fontsize=16,color="green",shape="box"];2151[label="yvy108",fontsize=16,color="green",shape="box"];2152[label="yvy107",fontsize=16,color="green",shape="box"];2153[label="yvy108",fontsize=16,color="green",shape="box"];2154[label="yvy107",fontsize=16,color="green",shape="box"];2155[label="yvy108",fontsize=16,color="green",shape="box"];2156[label="yvy107",fontsize=16,color="green",shape="box"];2157[label="yvy108",fontsize=16,color="green",shape="box"];2158[label="yvy107",fontsize=16,color="green",shape="box"];2159[label="yvy108",fontsize=16,color="green",shape="box"];2160[label="yvy107",fontsize=16,color="green",shape="box"];2161[label="yvy108",fontsize=16,color="green",shape="box"];2162[label="yvy107",fontsize=16,color="green",shape="box"];2163[label="yvy108",fontsize=16,color="green",shape="box"];2164[label="yvy107",fontsize=16,color="green",shape="box"];2165[label="yvy108",fontsize=16,color="green",shape="box"];2166[label="yvy107",fontsize=16,color="green",shape="box"];2167[label="compare0 (Left yvy184) (Left yvy185) True",fontsize=16,color="black",shape="box"];2167 -> 2583[label="",style="solid", color="black", weight=3]; 2168[label="yvy115",fontsize=16,color="green",shape="box"];2169[label="yvy114",fontsize=16,color="green",shape="box"];2170[label="yvy115",fontsize=16,color="green",shape="box"];2171[label="yvy114",fontsize=16,color="green",shape="box"];2172[label="yvy115",fontsize=16,color="green",shape="box"];2173[label="yvy114",fontsize=16,color="green",shape="box"];2174[label="yvy115",fontsize=16,color="green",shape="box"];2175[label="yvy114",fontsize=16,color="green",shape="box"];2176[label="yvy115",fontsize=16,color="green",shape="box"];2177[label="yvy114",fontsize=16,color="green",shape="box"];2178[label="yvy115",fontsize=16,color="green",shape="box"];2179[label="yvy114",fontsize=16,color="green",shape="box"];2180[label="yvy115",fontsize=16,color="green",shape="box"];2181[label="yvy114",fontsize=16,color="green",shape="box"];2182[label="yvy115",fontsize=16,color="green",shape="box"];2183[label="yvy114",fontsize=16,color="green",shape="box"];2184[label="yvy115",fontsize=16,color="green",shape="box"];2185[label="yvy114",fontsize=16,color="green",shape="box"];2186[label="yvy115",fontsize=16,color="green",shape="box"];2187[label="yvy114",fontsize=16,color="green",shape="box"];2188[label="yvy115",fontsize=16,color="green",shape="box"];2189[label="yvy114",fontsize=16,color="green",shape="box"];2190[label="yvy115",fontsize=16,color="green",shape="box"];2191[label="yvy114",fontsize=16,color="green",shape="box"];2192[label="yvy115",fontsize=16,color="green",shape="box"];2193[label="yvy114",fontsize=16,color="green",shape="box"];2194[label="yvy115",fontsize=16,color="green",shape="box"];2195[label="yvy114",fontsize=16,color="green",shape="box"];2196[label="compare0 (Right yvy191) (Right yvy192) True",fontsize=16,color="black",shape="box"];2196 -> 2584[label="",style="solid", color="black", weight=3]; 2201[label="primPlusInt (Pos Zero) (FiniteMap.sizeFM FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2201 -> 2589[label="",style="solid", color="black", weight=3]; 2202[label="primPlusInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544))",fontsize=16,color="black",shape="box"];2202 -> 2590[label="",style="solid", color="black", weight=3]; 2203[label="primPlusInt (Pos yvy11820) (FiniteMap.sizeFM yvy54)",fontsize=16,color="burlywood",shape="box"];4805[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4805[label="",style="solid", color="burlywood", weight=9]; 4805 -> 2591[label="",style="solid", color="burlywood", weight=3]; 4806[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4806[label="",style="solid", color="burlywood", weight=9]; 4806 -> 2592[label="",style="solid", color="burlywood", weight=3]; 2204[label="primPlusInt (Neg yvy11820) (FiniteMap.sizeFM yvy54)",fontsize=16,color="burlywood",shape="box"];4807[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4807[label="",style="solid", color="burlywood", weight=9]; 4807 -> 2593[label="",style="solid", color="burlywood", weight=3]; 4808[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4808[label="",style="solid", color="burlywood", weight=9]; 4808 -> 2594[label="",style="solid", color="burlywood", weight=3]; 4050[label="FiniteMap.mkBranchUnbox yvy349 yvy346 yvy348 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy349 yvy346 yvy348 + FiniteMap.mkBranchRight_size yvy349 yvy346 yvy348)",fontsize=16,color="black",shape="box"];4050 -> 4051[label="",style="solid", color="black", weight=3]; 3109[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3109 -> 3177[label="",style="solid", color="black", weight=3]; 3110[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];3110 -> 3178[label="",style="solid", color="black", weight=3]; 2966[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54",fontsize=16,color="black",shape="triangle"];2966 -> 2975[label="",style="solid", color="black", weight=3]; 3111 -> 314[label="",style="dashed", color="red", weight=0]; 3111[label="compare yvy296 yvy295",fontsize=16,color="magenta"];3111 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3112[label="GT",fontsize=16,color="green",shape="box"];2954 -> 2961[label="",style="dashed", color="red", weight=0]; 2954[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy118 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];2954 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2954 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2953[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 yvy293",fontsize=16,color="burlywood",shape="triangle"];4809[label="yvy293/False",fontsize=10,color="white",style="solid",shape="box"];2953 -> 4809[label="",style="solid", color="burlywood", weight=9]; 4809 -> 2973[label="",style="solid", color="burlywood", weight=3]; 4810[label="yvy293/True",fontsize=10,color="white",style="solid",shape="box"];2953 -> 4810[label="",style="solid", color="burlywood", weight=9]; 4810 -> 2974[label="",style="solid", color="burlywood", weight=3]; 2212[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy118 FiniteMap.EmptyFM yvy118 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2212 -> 2603[label="",style="solid", color="black", weight=3]; 2213[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2213 -> 2604[label="",style="solid", color="black", weight=3]; 3344 -> 2968[label="",style="dashed", color="red", weight=0]; 3344[label="primPlusNat yvy29200 yvy4001000",fontsize=16,color="magenta"];3344 -> 3475[label="",style="dashed", color="magenta", weight=3]; 3344 -> 3476[label="",style="dashed", color="magenta", weight=3]; 2215[label="yvy60",fontsize=16,color="green",shape="box"];2216[label="yvy63",fontsize=16,color="green",shape="box"];2217[label="yvy64",fontsize=16,color="green",shape="box"];2218[label="yvy61",fontsize=16,color="green",shape="box"];2219[label="Pos (Succ yvy6200)",fontsize=16,color="green",shape="box"];2221[label="yvy60",fontsize=16,color="green",shape="box"];2222[label="yvy63",fontsize=16,color="green",shape="box"];2223[label="yvy64",fontsize=16,color="green",shape="box"];2224[label="yvy61",fontsize=16,color="green",shape="box"];2225[label="Pos Zero",fontsize=16,color="green",shape="box"];2227[label="yvy60",fontsize=16,color="green",shape="box"];2228[label="yvy63",fontsize=16,color="green",shape="box"];2229[label="yvy64",fontsize=16,color="green",shape="box"];2230[label="yvy61",fontsize=16,color="green",shape="box"];2231[label="Neg (Succ yvy6200)",fontsize=16,color="green",shape="box"];2233[label="yvy60",fontsize=16,color="green",shape="box"];2234[label="yvy63",fontsize=16,color="green",shape="box"];2235[label="yvy64",fontsize=16,color="green",shape="box"];2236[label="yvy61",fontsize=16,color="green",shape="box"];2237[label="Neg Zero",fontsize=16,color="green",shape="box"];2239 -> 312[label="",style="dashed", color="red", weight=0]; 2239[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2239 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2239 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2240[label="LT",fontsize=16,color="green",shape="box"];2241 -> 313[label="",style="dashed", color="red", weight=0]; 2241[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2241 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2241 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2242[label="LT",fontsize=16,color="green",shape="box"];2243 -> 314[label="",style="dashed", color="red", weight=0]; 2243[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2243 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2244[label="LT",fontsize=16,color="green",shape="box"];2245 -> 119[label="",style="dashed", color="red", weight=0]; 2245[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2245 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2246[label="LT",fontsize=16,color="green",shape="box"];2247 -> 316[label="",style="dashed", color="red", weight=0]; 2247[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2247 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2248[label="LT",fontsize=16,color="green",shape="box"];2249 -> 317[label="",style="dashed", color="red", weight=0]; 2249[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2249 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2249 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2250[label="LT",fontsize=16,color="green",shape="box"];2251 -> 318[label="",style="dashed", color="red", weight=0]; 2251[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2251 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2251 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2252[label="LT",fontsize=16,color="green",shape="box"];2253 -> 319[label="",style="dashed", color="red", weight=0]; 2253[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2253 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2253 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2254[label="LT",fontsize=16,color="green",shape="box"];2255 -> 320[label="",style="dashed", color="red", weight=0]; 2255[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2255 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2255 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2256[label="LT",fontsize=16,color="green",shape="box"];2257 -> 321[label="",style="dashed", color="red", weight=0]; 2257[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2257 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2258[label="LT",fontsize=16,color="green",shape="box"];2259 -> 322[label="",style="dashed", color="red", weight=0]; 2259[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2259 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2260[label="LT",fontsize=16,color="green",shape="box"];2261 -> 323[label="",style="dashed", color="red", weight=0]; 2261[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2261 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2262[label="LT",fontsize=16,color="green",shape="box"];2263 -> 324[label="",style="dashed", color="red", weight=0]; 2263[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2263 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2264[label="LT",fontsize=16,color="green",shape="box"];2265 -> 325[label="",style="dashed", color="red", weight=0]; 2265[label="compare yvy150 yvy152",fontsize=16,color="magenta"];2265 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2266[label="LT",fontsize=16,color="green",shape="box"];2267[label="yvy150",fontsize=16,color="green",shape="box"];2268[label="yvy152",fontsize=16,color="green",shape="box"];2269[label="yvy150",fontsize=16,color="green",shape="box"];2270[label="yvy152",fontsize=16,color="green",shape="box"];2271[label="yvy150",fontsize=16,color="green",shape="box"];2272[label="yvy152",fontsize=16,color="green",shape="box"];2273[label="yvy150",fontsize=16,color="green",shape="box"];2274[label="yvy152",fontsize=16,color="green",shape="box"];2275[label="yvy150",fontsize=16,color="green",shape="box"];2276[label="yvy152",fontsize=16,color="green",shape="box"];2277[label="yvy150",fontsize=16,color="green",shape="box"];2278[label="yvy152",fontsize=16,color="green",shape="box"];2279[label="yvy150",fontsize=16,color="green",shape="box"];2280[label="yvy152",fontsize=16,color="green",shape="box"];2281[label="yvy150",fontsize=16,color="green",shape="box"];2282[label="yvy152",fontsize=16,color="green",shape="box"];2283[label="yvy150",fontsize=16,color="green",shape="box"];2284[label="yvy152",fontsize=16,color="green",shape="box"];2285[label="yvy150",fontsize=16,color="green",shape="box"];2286[label="yvy152",fontsize=16,color="green",shape="box"];2287[label="yvy150",fontsize=16,color="green",shape="box"];2288[label="yvy152",fontsize=16,color="green",shape="box"];2289[label="yvy150",fontsize=16,color="green",shape="box"];2290[label="yvy152",fontsize=16,color="green",shape="box"];2291[label="yvy150",fontsize=16,color="green",shape="box"];2292[label="yvy152",fontsize=16,color="green",shape="box"];2293[label="yvy150",fontsize=16,color="green",shape="box"];2294[label="yvy152",fontsize=16,color="green",shape="box"];2295[label="yvy153",fontsize=16,color="green",shape="box"];2296[label="yvy151",fontsize=16,color="green",shape="box"];2297[label="yvy153",fontsize=16,color="green",shape="box"];2298[label="yvy151",fontsize=16,color="green",shape="box"];2299[label="yvy153",fontsize=16,color="green",shape="box"];2300[label="yvy151",fontsize=16,color="green",shape="box"];2301[label="yvy153",fontsize=16,color="green",shape="box"];2302[label="yvy151",fontsize=16,color="green",shape="box"];2303[label="yvy153",fontsize=16,color="green",shape="box"];2304[label="yvy151",fontsize=16,color="green",shape="box"];2305[label="yvy153",fontsize=16,color="green",shape="box"];2306[label="yvy151",fontsize=16,color="green",shape="box"];2307[label="yvy153",fontsize=16,color="green",shape="box"];2308[label="yvy151",fontsize=16,color="green",shape="box"];2309[label="yvy153",fontsize=16,color="green",shape="box"];2310[label="yvy151",fontsize=16,color="green",shape="box"];2311[label="yvy153",fontsize=16,color="green",shape="box"];2312[label="yvy151",fontsize=16,color="green",shape="box"];2313[label="yvy153",fontsize=16,color="green",shape="box"];2314[label="yvy151",fontsize=16,color="green",shape="box"];2315[label="yvy153",fontsize=16,color="green",shape="box"];2316[label="yvy151",fontsize=16,color="green",shape="box"];2317[label="yvy153",fontsize=16,color="green",shape="box"];2318[label="yvy151",fontsize=16,color="green",shape="box"];2319[label="yvy153",fontsize=16,color="green",shape="box"];2320[label="yvy151",fontsize=16,color="green",shape="box"];2321[label="yvy153",fontsize=16,color="green",shape="box"];2322[label="yvy151",fontsize=16,color="green",shape="box"];2323[label="compare1 (yvy201,yvy202) (yvy203,yvy204) False",fontsize=16,color="black",shape="box"];2323 -> 2638[label="",style="solid", color="black", weight=3]; 2324[label="compare1 (yvy201,yvy202) (yvy203,yvy204) True",fontsize=16,color="black",shape="box"];2324 -> 2639[label="",style="solid", color="black", weight=3]; 2325[label="True",fontsize=16,color="green",shape="box"];2326[label="yvy89",fontsize=16,color="green",shape="box"];2327[label="yvy92",fontsize=16,color="green",shape="box"];2328[label="yvy89",fontsize=16,color="green",shape="box"];2329[label="yvy92",fontsize=16,color="green",shape="box"];2330[label="yvy89",fontsize=16,color="green",shape="box"];2331[label="yvy92",fontsize=16,color="green",shape="box"];2332[label="yvy89",fontsize=16,color="green",shape="box"];2333[label="yvy92",fontsize=16,color="green",shape="box"];2334[label="yvy89",fontsize=16,color="green",shape="box"];2335[label="yvy92",fontsize=16,color="green",shape="box"];2336[label="yvy89",fontsize=16,color="green",shape="box"];2337[label="yvy92",fontsize=16,color="green",shape="box"];2338[label="yvy89",fontsize=16,color="green",shape="box"];2339[label="yvy92",fontsize=16,color="green",shape="box"];2340[label="yvy89",fontsize=16,color="green",shape="box"];2341[label="yvy92",fontsize=16,color="green",shape="box"];2342[label="yvy89",fontsize=16,color="green",shape="box"];2343[label="yvy92",fontsize=16,color="green",shape="box"];2344[label="yvy89",fontsize=16,color="green",shape="box"];2345[label="yvy92",fontsize=16,color="green",shape="box"];2346[label="yvy89",fontsize=16,color="green",shape="box"];2347[label="yvy92",fontsize=16,color="green",shape="box"];2348[label="yvy89",fontsize=16,color="green",shape="box"];2349[label="yvy92",fontsize=16,color="green",shape="box"];2350[label="yvy89",fontsize=16,color="green",shape="box"];2351[label="yvy92",fontsize=16,color="green",shape="box"];2352[label="yvy89",fontsize=16,color="green",shape="box"];2353[label="yvy92",fontsize=16,color="green",shape="box"];2361 -> 1743[label="",style="dashed", color="red", weight=0]; 2361[label="yvy90 < yvy93",fontsize=16,color="magenta"];2361 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2362 -> 1744[label="",style="dashed", color="red", weight=0]; 2362[label="yvy90 < yvy93",fontsize=16,color="magenta"];2362 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2363 -> 1745[label="",style="dashed", color="red", weight=0]; 2363[label="yvy90 < yvy93",fontsize=16,color="magenta"];2363 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2364 -> 1746[label="",style="dashed", color="red", weight=0]; 2364[label="yvy90 < yvy93",fontsize=16,color="magenta"];2364 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2365 -> 1747[label="",style="dashed", color="red", weight=0]; 2365[label="yvy90 < yvy93",fontsize=16,color="magenta"];2365 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2366 -> 1748[label="",style="dashed", color="red", weight=0]; 2366[label="yvy90 < yvy93",fontsize=16,color="magenta"];2366 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2367 -> 1749[label="",style="dashed", color="red", weight=0]; 2367[label="yvy90 < yvy93",fontsize=16,color="magenta"];2367 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2368 -> 1750[label="",style="dashed", color="red", weight=0]; 2368[label="yvy90 < yvy93",fontsize=16,color="magenta"];2368 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2369 -> 1751[label="",style="dashed", color="red", weight=0]; 2369[label="yvy90 < yvy93",fontsize=16,color="magenta"];2369 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2369 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2370 -> 1752[label="",style="dashed", color="red", weight=0]; 2370[label="yvy90 < yvy93",fontsize=16,color="magenta"];2370 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2370 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2371 -> 1753[label="",style="dashed", color="red", weight=0]; 2371[label="yvy90 < yvy93",fontsize=16,color="magenta"];2371 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2372 -> 1754[label="",style="dashed", color="red", weight=0]; 2372[label="yvy90 < yvy93",fontsize=16,color="magenta"];2372 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2372 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2373 -> 1755[label="",style="dashed", color="red", weight=0]; 2373[label="yvy90 < yvy93",fontsize=16,color="magenta"];2373 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2374 -> 1756[label="",style="dashed", color="red", weight=0]; 2374[label="yvy90 < yvy93",fontsize=16,color="magenta"];2374 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2375[label="yvy90 == yvy93",fontsize=16,color="blue",shape="box"];4811[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4811[label="",style="solid", color="blue", weight=9]; 4811 -> 2668[label="",style="solid", color="blue", weight=3]; 4812[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4812[label="",style="solid", color="blue", weight=9]; 4812 -> 2669[label="",style="solid", color="blue", weight=3]; 4813[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4813[label="",style="solid", color="blue", weight=9]; 4813 -> 2670[label="",style="solid", color="blue", weight=3]; 4814[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4814[label="",style="solid", color="blue", weight=9]; 4814 -> 2671[label="",style="solid", color="blue", weight=3]; 4815[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4815[label="",style="solid", color="blue", weight=9]; 4815 -> 2672[label="",style="solid", color="blue", weight=3]; 4816[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4816[label="",style="solid", color="blue", weight=9]; 4816 -> 2673[label="",style="solid", color="blue", weight=3]; 4817[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4817[label="",style="solid", color="blue", weight=9]; 4817 -> 2674[label="",style="solid", color="blue", weight=3]; 4818[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4818[label="",style="solid", color="blue", weight=9]; 4818 -> 2675[label="",style="solid", color="blue", weight=3]; 4819[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4819[label="",style="solid", color="blue", weight=9]; 4819 -> 2676[label="",style="solid", color="blue", weight=3]; 4820[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4820[label="",style="solid", color="blue", weight=9]; 4820 -> 2677[label="",style="solid", color="blue", weight=3]; 4821[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4821[label="",style="solid", color="blue", weight=9]; 4821 -> 2678[label="",style="solid", color="blue", weight=3]; 4822[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4822[label="",style="solid", color="blue", weight=9]; 4822 -> 2679[label="",style="solid", color="blue", weight=3]; 4823[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4823[label="",style="solid", color="blue", weight=9]; 4823 -> 2680[label="",style="solid", color="blue", weight=3]; 4824[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2375 -> 4824[label="",style="solid", color="blue", weight=9]; 4824 -> 2681[label="",style="solid", color="blue", weight=3]; 2376[label="yvy91 <= yvy94",fontsize=16,color="blue",shape="box"];4825[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4825[label="",style="solid", color="blue", weight=9]; 4825 -> 2682[label="",style="solid", color="blue", weight=3]; 4826[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4826[label="",style="solid", color="blue", weight=9]; 4826 -> 2683[label="",style="solid", color="blue", weight=3]; 4827[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4827[label="",style="solid", color="blue", weight=9]; 4827 -> 2684[label="",style="solid", color="blue", weight=3]; 4828[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4828[label="",style="solid", color="blue", weight=9]; 4828 -> 2685[label="",style="solid", color="blue", weight=3]; 4829[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4829[label="",style="solid", color="blue", weight=9]; 4829 -> 2686[label="",style="solid", color="blue", weight=3]; 4830[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4830[label="",style="solid", color="blue", weight=9]; 4830 -> 2687[label="",style="solid", color="blue", weight=3]; 4831[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4831[label="",style="solid", color="blue", weight=9]; 4831 -> 2688[label="",style="solid", color="blue", weight=3]; 4832[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4832[label="",style="solid", color="blue", weight=9]; 4832 -> 2689[label="",style="solid", color="blue", weight=3]; 4833[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4833[label="",style="solid", color="blue", weight=9]; 4833 -> 2690[label="",style="solid", color="blue", weight=3]; 4834[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4834[label="",style="solid", color="blue", weight=9]; 4834 -> 2691[label="",style="solid", color="blue", weight=3]; 4835[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4835[label="",style="solid", color="blue", weight=9]; 4835 -> 2692[label="",style="solid", color="blue", weight=3]; 4836[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4836[label="",style="solid", color="blue", weight=9]; 4836 -> 2693[label="",style="solid", color="blue", weight=3]; 4837[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4837[label="",style="solid", color="blue", weight=9]; 4837 -> 2694[label="",style="solid", color="blue", weight=3]; 4838[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2376 -> 4838[label="",style="solid", color="blue", weight=9]; 4838 -> 2695[label="",style="solid", color="blue", weight=3]; 2377[label="False || yvy290",fontsize=16,color="black",shape="box"];2377 -> 2696[label="",style="solid", color="black", weight=3]; 2378[label="True || yvy290",fontsize=16,color="black",shape="box"];2378 -> 2697[label="",style="solid", color="black", weight=3]; 2379[label="compare1 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) False",fontsize=16,color="black",shape="box"];2379 -> 2698[label="",style="solid", color="black", weight=3]; 2380[label="compare1 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) True",fontsize=16,color="black",shape="box"];2380 -> 2699[label="",style="solid", color="black", weight=3]; 2381[label="True",fontsize=16,color="green",shape="box"];2382 -> 891[label="",style="dashed", color="red", weight=0]; 2382[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2382 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2383 -> 892[label="",style="dashed", color="red", weight=0]; 2383[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2383 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2384 -> 893[label="",style="dashed", color="red", weight=0]; 2384[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2384 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2385 -> 894[label="",style="dashed", color="red", weight=0]; 2385[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2385 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2386 -> 895[label="",style="dashed", color="red", weight=0]; 2386[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2386 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2386 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2387 -> 896[label="",style="dashed", color="red", weight=0]; 2387[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2387 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2387 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2388 -> 897[label="",style="dashed", color="red", weight=0]; 2388[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2388 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2389 -> 898[label="",style="dashed", color="red", weight=0]; 2389[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2389 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2390 -> 899[label="",style="dashed", color="red", weight=0]; 2390[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2390 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2390 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2391 -> 900[label="",style="dashed", color="red", weight=0]; 2391[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2391 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2392 -> 901[label="",style="dashed", color="red", weight=0]; 2392[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2392 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2392 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2393 -> 902[label="",style="dashed", color="red", weight=0]; 2393[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2393 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2394 -> 903[label="",style="dashed", color="red", weight=0]; 2394[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2394 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2395 -> 904[label="",style="dashed", color="red", weight=0]; 2395[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2395 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2396[label="yvy40001 == yvy30001",fontsize=16,color="blue",shape="box"];4839[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4839[label="",style="solid", color="blue", weight=9]; 4839 -> 2728[label="",style="solid", color="blue", weight=3]; 4840[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4840[label="",style="solid", color="blue", weight=9]; 4840 -> 2729[label="",style="solid", color="blue", weight=3]; 4841[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4841[label="",style="solid", color="blue", weight=9]; 4841 -> 2730[label="",style="solid", color="blue", weight=3]; 4842[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4842[label="",style="solid", color="blue", weight=9]; 4842 -> 2731[label="",style="solid", color="blue", weight=3]; 4843[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4843[label="",style="solid", color="blue", weight=9]; 4843 -> 2732[label="",style="solid", color="blue", weight=3]; 4844[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4844[label="",style="solid", color="blue", weight=9]; 4844 -> 2733[label="",style="solid", color="blue", weight=3]; 4845[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4845[label="",style="solid", color="blue", weight=9]; 4845 -> 2734[label="",style="solid", color="blue", weight=3]; 4846[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4846[label="",style="solid", color="blue", weight=9]; 4846 -> 2735[label="",style="solid", color="blue", weight=3]; 4847[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4847[label="",style="solid", color="blue", weight=9]; 4847 -> 2736[label="",style="solid", color="blue", weight=3]; 4848[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4848[label="",style="solid", color="blue", weight=9]; 4848 -> 2737[label="",style="solid", color="blue", weight=3]; 4849[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4849[label="",style="solid", color="blue", weight=9]; 4849 -> 2738[label="",style="solid", color="blue", weight=3]; 4850[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4850[label="",style="solid", color="blue", weight=9]; 4850 -> 2739[label="",style="solid", color="blue", weight=3]; 4851[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4851[label="",style="solid", color="blue", weight=9]; 4851 -> 2740[label="",style="solid", color="blue", weight=3]; 4852[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4852[label="",style="solid", color="blue", weight=9]; 4852 -> 2741[label="",style="solid", color="blue", weight=3]; 2397[label="yvy40002 == yvy30002",fontsize=16,color="blue",shape="box"];4853[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4853[label="",style="solid", color="blue", weight=9]; 4853 -> 2742[label="",style="solid", color="blue", weight=3]; 4854[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4854[label="",style="solid", color="blue", weight=9]; 4854 -> 2743[label="",style="solid", color="blue", weight=3]; 4855[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4855[label="",style="solid", color="blue", weight=9]; 4855 -> 2744[label="",style="solid", color="blue", weight=3]; 4856[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4856[label="",style="solid", color="blue", weight=9]; 4856 -> 2745[label="",style="solid", color="blue", weight=3]; 4857[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4857[label="",style="solid", color="blue", weight=9]; 4857 -> 2746[label="",style="solid", color="blue", weight=3]; 4858[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4858[label="",style="solid", color="blue", weight=9]; 4858 -> 2747[label="",style="solid", color="blue", weight=3]; 4859[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4859[label="",style="solid", color="blue", weight=9]; 4859 -> 2748[label="",style="solid", color="blue", weight=3]; 4860[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4860[label="",style="solid", color="blue", weight=9]; 4860 -> 2749[label="",style="solid", color="blue", weight=3]; 4861[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4861[label="",style="solid", color="blue", weight=9]; 4861 -> 2750[label="",style="solid", color="blue", weight=3]; 4862[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4862[label="",style="solid", color="blue", weight=9]; 4862 -> 2751[label="",style="solid", color="blue", weight=3]; 4863[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4863[label="",style="solid", color="blue", weight=9]; 4863 -> 2752[label="",style="solid", color="blue", weight=3]; 4864[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4864[label="",style="solid", color="blue", weight=9]; 4864 -> 2753[label="",style="solid", color="blue", weight=3]; 4865[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4865[label="",style="solid", color="blue", weight=9]; 4865 -> 2754[label="",style="solid", color="blue", weight=3]; 4866[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4866[label="",style="solid", color="blue", weight=9]; 4866 -> 2755[label="",style="solid", color="blue", weight=3]; 2398[label="yvy40000",fontsize=16,color="green",shape="box"];2399[label="yvy30000",fontsize=16,color="green",shape="box"];2400[label="yvy40000",fontsize=16,color="green",shape="box"];2401[label="yvy30000",fontsize=16,color="green",shape="box"];2402[label="yvy40000",fontsize=16,color="green",shape="box"];2403[label="yvy30000",fontsize=16,color="green",shape="box"];2404[label="yvy40000",fontsize=16,color="green",shape="box"];2405[label="yvy30000",fontsize=16,color="green",shape="box"];2406[label="yvy40000",fontsize=16,color="green",shape="box"];2407[label="yvy30000",fontsize=16,color="green",shape="box"];2408[label="yvy40000",fontsize=16,color="green",shape="box"];2409[label="yvy30000",fontsize=16,color="green",shape="box"];2410[label="yvy40000",fontsize=16,color="green",shape="box"];2411[label="yvy30000",fontsize=16,color="green",shape="box"];2412[label="yvy40000",fontsize=16,color="green",shape="box"];2413[label="yvy30000",fontsize=16,color="green",shape="box"];2414[label="yvy40000",fontsize=16,color="green",shape="box"];2415[label="yvy30000",fontsize=16,color="green",shape="box"];2416[label="yvy40000",fontsize=16,color="green",shape="box"];2417[label="yvy30000",fontsize=16,color="green",shape="box"];2418[label="yvy40000",fontsize=16,color="green",shape="box"];2419[label="yvy30000",fontsize=16,color="green",shape="box"];2420[label="yvy40000",fontsize=16,color="green",shape="box"];2421[label="yvy30000",fontsize=16,color="green",shape="box"];2422[label="yvy40000",fontsize=16,color="green",shape="box"];2423[label="yvy30000",fontsize=16,color="green",shape="box"];2424[label="yvy40000",fontsize=16,color="green",shape="box"];2425[label="yvy30000",fontsize=16,color="green",shape="box"];2426 -> 694[label="",style="dashed", color="red", weight=0]; 2426[label="yvy40000 * yvy30001",fontsize=16,color="magenta"];2426 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2427 -> 694[label="",style="dashed", color="red", weight=0]; 2427[label="yvy40001 * yvy30000",fontsize=16,color="magenta"];2427 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2428 -> 891[label="",style="dashed", color="red", weight=0]; 2428[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2428 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2429 -> 892[label="",style="dashed", color="red", weight=0]; 2429[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2429 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2430 -> 893[label="",style="dashed", color="red", weight=0]; 2430[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2430 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2431 -> 894[label="",style="dashed", color="red", weight=0]; 2431[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2431 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2432 -> 895[label="",style="dashed", color="red", weight=0]; 2432[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2432 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2433 -> 896[label="",style="dashed", color="red", weight=0]; 2433[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2433 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2434 -> 897[label="",style="dashed", color="red", weight=0]; 2434[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2434 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2435 -> 898[label="",style="dashed", color="red", weight=0]; 2435[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2435 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2436 -> 899[label="",style="dashed", color="red", weight=0]; 2436[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2436 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2437 -> 900[label="",style="dashed", color="red", weight=0]; 2437[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2437 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2438 -> 901[label="",style="dashed", color="red", weight=0]; 2438[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2438 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2439 -> 902[label="",style="dashed", color="red", weight=0]; 2439[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2439 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2440 -> 903[label="",style="dashed", color="red", weight=0]; 2440[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2440 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2441 -> 904[label="",style="dashed", color="red", weight=0]; 2441[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2441 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2442 -> 891[label="",style="dashed", color="red", weight=0]; 2442[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2442 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2443 -> 892[label="",style="dashed", color="red", weight=0]; 2443[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2443 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2444 -> 893[label="",style="dashed", color="red", weight=0]; 2444[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2444 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2445 -> 894[label="",style="dashed", color="red", weight=0]; 2445[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2445 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2446 -> 895[label="",style="dashed", color="red", weight=0]; 2446[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2446 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2447 -> 896[label="",style="dashed", color="red", weight=0]; 2447[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2447 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2448 -> 897[label="",style="dashed", color="red", weight=0]; 2448[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2448 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2449 -> 898[label="",style="dashed", color="red", weight=0]; 2449[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2449 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2450 -> 899[label="",style="dashed", color="red", weight=0]; 2450[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2450 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2451 -> 900[label="",style="dashed", color="red", weight=0]; 2451[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2451 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2452 -> 901[label="",style="dashed", color="red", weight=0]; 2452[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2452 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2453 -> 902[label="",style="dashed", color="red", weight=0]; 2453[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2453 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2454 -> 903[label="",style="dashed", color="red", weight=0]; 2454[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2454 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2455 -> 904[label="",style="dashed", color="red", weight=0]; 2455[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2455 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2456 -> 892[label="",style="dashed", color="red", weight=0]; 2456[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2456 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2457 -> 901[label="",style="dashed", color="red", weight=0]; 2457[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2457 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2458 -> 892[label="",style="dashed", color="red", weight=0]; 2458[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2458 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2459 -> 901[label="",style="dashed", color="red", weight=0]; 2459[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2459 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2460[label="yvy40000",fontsize=16,color="green",shape="box"];2461[label="yvy30000",fontsize=16,color="green",shape="box"];2462[label="yvy40000",fontsize=16,color="green",shape="box"];2463[label="yvy30000",fontsize=16,color="green",shape="box"];2464[label="yvy40000",fontsize=16,color="green",shape="box"];2465[label="yvy30000",fontsize=16,color="green",shape="box"];2466[label="yvy40000",fontsize=16,color="green",shape="box"];2467[label="yvy30000",fontsize=16,color="green",shape="box"];2468[label="yvy40000",fontsize=16,color="green",shape="box"];2469[label="yvy30000",fontsize=16,color="green",shape="box"];2470[label="yvy40000",fontsize=16,color="green",shape="box"];2471[label="yvy30000",fontsize=16,color="green",shape="box"];2472[label="yvy40000",fontsize=16,color="green",shape="box"];2473[label="yvy30000",fontsize=16,color="green",shape="box"];2474[label="yvy40000",fontsize=16,color="green",shape="box"];2475[label="yvy30000",fontsize=16,color="green",shape="box"];2476[label="yvy40000",fontsize=16,color="green",shape="box"];2477[label="yvy30000",fontsize=16,color="green",shape="box"];2478[label="yvy40000",fontsize=16,color="green",shape="box"];2479[label="yvy30000",fontsize=16,color="green",shape="box"];2480[label="yvy40000",fontsize=16,color="green",shape="box"];2481[label="yvy30000",fontsize=16,color="green",shape="box"];2482[label="yvy40000",fontsize=16,color="green",shape="box"];2483[label="yvy30000",fontsize=16,color="green",shape="box"];2484[label="yvy40000",fontsize=16,color="green",shape="box"];2485[label="yvy30000",fontsize=16,color="green",shape="box"];2486[label="yvy40000",fontsize=16,color="green",shape="box"];2487[label="yvy30000",fontsize=16,color="green",shape="box"];2488[label="yvy40000",fontsize=16,color="green",shape="box"];2489[label="yvy30000",fontsize=16,color="green",shape="box"];2490[label="yvy40000",fontsize=16,color="green",shape="box"];2491[label="yvy30000",fontsize=16,color="green",shape="box"];2492[label="yvy40000",fontsize=16,color="green",shape="box"];2493[label="yvy30000",fontsize=16,color="green",shape="box"];2494[label="yvy40000",fontsize=16,color="green",shape="box"];2495[label="yvy30000",fontsize=16,color="green",shape="box"];2496[label="yvy40000",fontsize=16,color="green",shape="box"];2497[label="yvy30000",fontsize=16,color="green",shape="box"];2498[label="yvy40000",fontsize=16,color="green",shape="box"];2499[label="yvy30000",fontsize=16,color="green",shape="box"];2500[label="yvy40000",fontsize=16,color="green",shape="box"];2501[label="yvy30000",fontsize=16,color="green",shape="box"];2502[label="yvy40000",fontsize=16,color="green",shape="box"];2503[label="yvy30000",fontsize=16,color="green",shape="box"];2504[label="yvy40000",fontsize=16,color="green",shape="box"];2505[label="yvy30000",fontsize=16,color="green",shape="box"];2506[label="yvy40000",fontsize=16,color="green",shape="box"];2507[label="yvy30000",fontsize=16,color="green",shape="box"];2508[label="yvy40000",fontsize=16,color="green",shape="box"];2509[label="yvy30000",fontsize=16,color="green",shape="box"];2510[label="yvy40000",fontsize=16,color="green",shape="box"];2511[label="yvy30000",fontsize=16,color="green",shape="box"];2512[label="yvy40000",fontsize=16,color="green",shape="box"];2513[label="yvy30000",fontsize=16,color="green",shape="box"];2514[label="yvy40000",fontsize=16,color="green",shape="box"];2515[label="yvy30000",fontsize=16,color="green",shape="box"];2516[label="primEqInt (Pos (Succ yvy400000)) (Pos (Succ yvy300000))",fontsize=16,color="black",shape="box"];2516 -> 2824[label="",style="solid", color="black", weight=3]; 2517[label="primEqInt (Pos (Succ yvy400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2517 -> 2825[label="",style="solid", color="black", weight=3]; 2518[label="False",fontsize=16,color="green",shape="box"];2519[label="primEqInt (Pos Zero) (Pos (Succ yvy300000))",fontsize=16,color="black",shape="box"];2519 -> 2826[label="",style="solid", color="black", weight=3]; 2520[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2520 -> 2827[label="",style="solid", color="black", weight=3]; 2521[label="primEqInt (Pos Zero) (Neg (Succ yvy300000))",fontsize=16,color="black",shape="box"];2521 -> 2828[label="",style="solid", color="black", weight=3]; 2522[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2522 -> 2829[label="",style="solid", color="black", weight=3]; 2523[label="False",fontsize=16,color="green",shape="box"];2524[label="primEqInt (Neg (Succ yvy400000)) (Neg (Succ yvy300000))",fontsize=16,color="black",shape="box"];2524 -> 2830[label="",style="solid", color="black", weight=3]; 2525[label="primEqInt (Neg (Succ yvy400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2525 -> 2831[label="",style="solid", color="black", weight=3]; 2526[label="primEqInt (Neg Zero) (Pos (Succ yvy300000))",fontsize=16,color="black",shape="box"];2526 -> 2832[label="",style="solid", color="black", weight=3]; 2527[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2527 -> 2833[label="",style="solid", color="black", weight=3]; 2528[label="primEqInt (Neg Zero) (Neg (Succ yvy300000))",fontsize=16,color="black",shape="box"];2528 -> 2834[label="",style="solid", color="black", weight=3]; 2529[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2529 -> 2835[label="",style="solid", color="black", weight=3]; 2530[label="primEqNat (Succ yvy400000) yvy30000",fontsize=16,color="burlywood",shape="box"];4867[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2530 -> 4867[label="",style="solid", color="burlywood", weight=9]; 4867 -> 2836[label="",style="solid", color="burlywood", weight=3]; 4868[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2530 -> 4868[label="",style="solid", color="burlywood", weight=9]; 4868 -> 2837[label="",style="solid", color="burlywood", weight=3]; 2531[label="primEqNat Zero yvy30000",fontsize=16,color="burlywood",shape="box"];4869[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2531 -> 4869[label="",style="solid", color="burlywood", weight=9]; 4869 -> 2838[label="",style="solid", color="burlywood", weight=3]; 4870[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2531 -> 4870[label="",style="solid", color="burlywood", weight=9]; 4870 -> 2839[label="",style="solid", color="burlywood", weight=3]; 2532 -> 891[label="",style="dashed", color="red", weight=0]; 2532[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2532 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2533 -> 892[label="",style="dashed", color="red", weight=0]; 2533[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2533 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2534 -> 893[label="",style="dashed", color="red", weight=0]; 2534[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2534 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2535 -> 894[label="",style="dashed", color="red", weight=0]; 2535[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2535 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2536 -> 895[label="",style="dashed", color="red", weight=0]; 2536[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2536 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2537 -> 896[label="",style="dashed", color="red", weight=0]; 2537[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2537 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2538 -> 897[label="",style="dashed", color="red", weight=0]; 2538[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2538 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2539 -> 898[label="",style="dashed", color="red", weight=0]; 2539[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2539 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2540 -> 899[label="",style="dashed", color="red", weight=0]; 2540[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2540 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2541 -> 900[label="",style="dashed", color="red", weight=0]; 2541[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2541 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2542 -> 901[label="",style="dashed", color="red", weight=0]; 2542[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2542 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2543 -> 902[label="",style="dashed", color="red", weight=0]; 2543[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2543 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2544 -> 903[label="",style="dashed", color="red", weight=0]; 2544[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2544 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2545 -> 904[label="",style="dashed", color="red", weight=0]; 2545[label="yvy40000 == yvy30000",fontsize=16,color="magenta"];2545 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2546[label="yvy40001",fontsize=16,color="green",shape="box"];2547[label="yvy30001",fontsize=16,color="green",shape="box"];2548 -> 694[label="",style="dashed", color="red", weight=0]; 2548[label="yvy40000 * yvy30001",fontsize=16,color="magenta"];2548 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2548 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2549 -> 694[label="",style="dashed", color="red", weight=0]; 2549[label="yvy40001 * yvy30000",fontsize=16,color="magenta"];2549 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2549 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2551 -> 312[label="",style="dashed", color="red", weight=0]; 2551[label="compare yvy100 yvy101",fontsize=16,color="magenta"];2551 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2550[label="yvy291 /= GT",fontsize=16,color="black",shape="triangle"];2550 -> 2874[label="",style="solid", color="black", weight=3]; 2552 -> 313[label="",style="dashed", color="red", weight=0]; 2552[label="compare yvy100 yvy101",fontsize=16,color="magenta"];2552 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2553 -> 314[label="",style="dashed", color="red", weight=0]; 2553[label="compare yvy100 yvy101",fontsize=16,color="magenta"];2553 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2553 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2554 -> 119[label="",style="dashed", color="red", weight=0]; 2554[label="compare yvy100 yvy101",fontsize=16,color="magenta"];2554 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2554 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2555 -> 316[label="",style="dashed", color="red", weight=0]; 2555[label="compare yvy100 yvy101",fontsize=16,color="magenta"];2555 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2556 -> 317[label="",style="dashed", color="red", weight=0]; 2556[label="compare yvy100 yvy101",fontsize=16,color="magenta"];2556 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2559[label="(yvy1000,yvy1001) <= (yvy1010,yvy1011)",fontsize=16,color="black",shape="box"];2559 -> 2889[label="",style="solid", color="black", weight=3]; 2560[label="(yvy1000,yvy1001,yvy1002) <= (yvy1010,yvy1011,yvy1012)",fontsize=16,color="black",shape="box"];2560 -> 2890[label="",style="solid", color="black", weight=3]; 2561[label="False <= False",fontsize=16,color="black",shape="box"];2561 -> 2891[label="",style="solid", color="black", weight=3]; 2562[label="False <= True",fontsize=16,color="black",shape="box"];2562 -> 2892[label="",style="solid", color="black", weight=3]; 2563[label="True <= False",fontsize=16,color="black",shape="box"];2563 -> 2893[label="",style="solid", color="black", weight=3]; 2564[label="True <= True",fontsize=16,color="black",shape="box"];2564 -> 2894[label="",style="solid", color="black", weight=3]; 2565[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2565 -> 2895[label="",style="solid", color="black", weight=3]; 2566[label="Nothing <= Just yvy1010",fontsize=16,color="black",shape="box"];2566 -> 2896[label="",style="solid", color="black", weight=3]; 2567[label="Just yvy1000 <= Nothing",fontsize=16,color="black",shape="box"];2567 -> 2897[label="",style="solid", color="black", weight=3]; 2568[label="Just yvy1000 <= Just yvy1010",fontsize=16,color="black",shape="box"];2568 -> 2898[label="",style="solid", color="black", weight=3]; 2569[label="Left yvy1000 <= Left yvy1010",fontsize=16,color="black",shape="box"];2569 -> 2899[label="",style="solid", color="black", weight=3]; 2570[label="Left yvy1000 <= Right yvy1010",fontsize=16,color="black",shape="box"];2570 -> 2900[label="",style="solid", color="black", weight=3]; 2571[label="Right yvy1000 <= Left yvy1010",fontsize=16,color="black",shape="box"];2571 -> 2901[label="",style="solid", color="black", weight=3]; 2572[label="Right yvy1000 <= Right yvy1010",fontsize=16,color="black",shape="box"];2572 -> 2902[label="",style="solid", color="black", weight=3]; 2573[label="LT <= LT",fontsize=16,color="black",shape="box"];2573 -> 2903[label="",style="solid", color="black", weight=3]; 2574[label="LT <= EQ",fontsize=16,color="black",shape="box"];2574 -> 2904[label="",style="solid", color="black", weight=3]; 2575[label="LT <= GT",fontsize=16,color="black",shape="box"];2575 -> 2905[label="",style="solid", color="black", weight=3]; 2576[label="EQ <= LT",fontsize=16,color="black",shape="box"];2576 -> 2906[label="",style="solid", color="black", weight=3]; 2577[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2577 -> 2907[label="",style="solid", color="black", weight=3]; 2578[label="EQ <= GT",fontsize=16,color="black",shape="box"];2578 -> 2908[label="",style="solid", color="black", weight=3]; 2579[label="GT <= LT",fontsize=16,color="black",shape="box"];2579 -> 2909[label="",style="solid", color="black", weight=3]; 2580[label="GT <= EQ",fontsize=16,color="black",shape="box"];2580 -> 2910[label="",style="solid", color="black", weight=3]; 2581[label="GT <= GT",fontsize=16,color="black",shape="box"];2581 -> 2911[label="",style="solid", color="black", weight=3]; 2557 -> 324[label="",style="dashed", color="red", weight=0]; 2557[label="compare yvy100 yvy101",fontsize=16,color="magenta"];2557 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2557 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2558 -> 325[label="",style="dashed", color="red", weight=0]; 2558[label="compare yvy100 yvy101",fontsize=16,color="magenta"];2558 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2558 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2582[label="GT",fontsize=16,color="green",shape="box"];2583[label="GT",fontsize=16,color="green",shape="box"];2584[label="GT",fontsize=16,color="green",shape="box"];2589[label="primPlusInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2589 -> 2942[label="",style="solid", color="black", weight=3]; 2590[label="primPlusInt (Pos Zero) yvy542",fontsize=16,color="burlywood",shape="box"];4871[label="yvy542/Pos yvy5420",fontsize=10,color="white",style="solid",shape="box"];2590 -> 4871[label="",style="solid", color="burlywood", weight=9]; 4871 -> 2943[label="",style="solid", color="burlywood", weight=3]; 4872[label="yvy542/Neg yvy5420",fontsize=10,color="white",style="solid",shape="box"];2590 -> 4872[label="",style="solid", color="burlywood", weight=9]; 4872 -> 2944[label="",style="solid", color="burlywood", weight=3]; 2591[label="primPlusInt (Pos yvy11820) (FiniteMap.sizeFM FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2591 -> 2945[label="",style="solid", color="black", weight=3]; 2592[label="primPlusInt (Pos yvy11820) (FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544))",fontsize=16,color="black",shape="box"];2592 -> 2946[label="",style="solid", color="black", weight=3]; 2593[label="primPlusInt (Neg yvy11820) (FiniteMap.sizeFM FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2593 -> 2947[label="",style="solid", color="black", weight=3]; 2594[label="primPlusInt (Neg yvy11820) (FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544))",fontsize=16,color="black",shape="box"];2594 -> 2948[label="",style="solid", color="black", weight=3]; 4051[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy349 yvy346 yvy348 + FiniteMap.mkBranchRight_size yvy349 yvy346 yvy348",fontsize=16,color="black",shape="box"];4051 -> 4052[label="",style="solid", color="black", weight=3]; 3177[label="Pos Zero",fontsize=16,color="green",shape="box"];3178[label="yvy542",fontsize=16,color="green",shape="box"];2975 -> 2969[label="",style="dashed", color="red", weight=0]; 2975[label="FiniteMap.sizeFM yvy118",fontsize=16,color="magenta"];2975 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3179[label="yvy295",fontsize=16,color="green",shape="box"];3180[label="yvy296",fontsize=16,color="green",shape="box"];2967 -> 694[label="",style="dashed", color="red", weight=0]; 2967[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];2967 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2967 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2973[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 False",fontsize=16,color="black",shape="box"];2973 -> 3113[label="",style="solid", color="black", weight=3]; 2974[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 True",fontsize=16,color="black",shape="box"];2974 -> 3114[label="",style="solid", color="black", weight=3]; 2603[label="error []",fontsize=16,color="red",shape="box"];2604[label="FiniteMap.mkBalBranch6MkBalBranch02 yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2604 -> 2978[label="",style="solid", color="black", weight=3]; 3475[label="yvy4001000",fontsize=16,color="green",shape="box"];3476[label="yvy29200",fontsize=16,color="green",shape="box"];2610[label="yvy152",fontsize=16,color="green",shape="box"];2611[label="yvy150",fontsize=16,color="green",shape="box"];2612[label="yvy152",fontsize=16,color="green",shape="box"];2613[label="yvy150",fontsize=16,color="green",shape="box"];2614[label="yvy152",fontsize=16,color="green",shape="box"];2615[label="yvy150",fontsize=16,color="green",shape="box"];2616[label="yvy152",fontsize=16,color="green",shape="box"];2617[label="yvy150",fontsize=16,color="green",shape="box"];2618[label="yvy152",fontsize=16,color="green",shape="box"];2619[label="yvy150",fontsize=16,color="green",shape="box"];2620[label="yvy152",fontsize=16,color="green",shape="box"];2621[label="yvy150",fontsize=16,color="green",shape="box"];2622[label="yvy152",fontsize=16,color="green",shape="box"];2623[label="yvy150",fontsize=16,color="green",shape="box"];2624[label="yvy152",fontsize=16,color="green",shape="box"];2625[label="yvy150",fontsize=16,color="green",shape="box"];2626[label="yvy152",fontsize=16,color="green",shape="box"];2627[label="yvy150",fontsize=16,color="green",shape="box"];2628[label="yvy152",fontsize=16,color="green",shape="box"];2629[label="yvy150",fontsize=16,color="green",shape="box"];2630[label="yvy152",fontsize=16,color="green",shape="box"];2631[label="yvy150",fontsize=16,color="green",shape="box"];2632[label="yvy152",fontsize=16,color="green",shape="box"];2633[label="yvy150",fontsize=16,color="green",shape="box"];2634[label="yvy152",fontsize=16,color="green",shape="box"];2635[label="yvy150",fontsize=16,color="green",shape="box"];2636[label="yvy152",fontsize=16,color="green",shape="box"];2637[label="yvy150",fontsize=16,color="green",shape="box"];2638[label="compare0 (yvy201,yvy202) (yvy203,yvy204) otherwise",fontsize=16,color="black",shape="box"];2638 -> 2983[label="",style="solid", color="black", weight=3]; 2639[label="LT",fontsize=16,color="green",shape="box"];2640[label="yvy90",fontsize=16,color="green",shape="box"];2641[label="yvy93",fontsize=16,color="green",shape="box"];2642[label="yvy90",fontsize=16,color="green",shape="box"];2643[label="yvy93",fontsize=16,color="green",shape="box"];2644[label="yvy90",fontsize=16,color="green",shape="box"];2645[label="yvy93",fontsize=16,color="green",shape="box"];2646[label="yvy90",fontsize=16,color="green",shape="box"];2647[label="yvy93",fontsize=16,color="green",shape="box"];2648[label="yvy90",fontsize=16,color="green",shape="box"];2649[label="yvy93",fontsize=16,color="green",shape="box"];2650[label="yvy90",fontsize=16,color="green",shape="box"];2651[label="yvy93",fontsize=16,color="green",shape="box"];2652[label="yvy90",fontsize=16,color="green",shape="box"];2653[label="yvy93",fontsize=16,color="green",shape="box"];2654[label="yvy90",fontsize=16,color="green",shape="box"];2655[label="yvy93",fontsize=16,color="green",shape="box"];2656[label="yvy90",fontsize=16,color="green",shape="box"];2657[label="yvy93",fontsize=16,color="green",shape="box"];2658[label="yvy90",fontsize=16,color="green",shape="box"];2659[label="yvy93",fontsize=16,color="green",shape="box"];2660[label="yvy90",fontsize=16,color="green",shape="box"];2661[label="yvy93",fontsize=16,color="green",shape="box"];2662[label="yvy90",fontsize=16,color="green",shape="box"];2663[label="yvy93",fontsize=16,color="green",shape="box"];2664[label="yvy90",fontsize=16,color="green",shape="box"];2665[label="yvy93",fontsize=16,color="green",shape="box"];2666[label="yvy90",fontsize=16,color="green",shape="box"];2667[label="yvy93",fontsize=16,color="green",shape="box"];2668 -> 896[label="",style="dashed", color="red", weight=0]; 2668[label="yvy90 == yvy93",fontsize=16,color="magenta"];2668 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2669 -> 902[label="",style="dashed", color="red", weight=0]; 2669[label="yvy90 == yvy93",fontsize=16,color="magenta"];2669 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2670 -> 901[label="",style="dashed", color="red", weight=0]; 2670[label="yvy90 == yvy93",fontsize=16,color="magenta"];2670 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2670 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2671 -> 903[label="",style="dashed", color="red", weight=0]; 2671[label="yvy90 == yvy93",fontsize=16,color="magenta"];2671 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2671 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2672 -> 898[label="",style="dashed", color="red", weight=0]; 2672[label="yvy90 == yvy93",fontsize=16,color="magenta"];2672 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2672 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2673 -> 892[label="",style="dashed", color="red", weight=0]; 2673[label="yvy90 == yvy93",fontsize=16,color="magenta"];2673 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2674 -> 897[label="",style="dashed", color="red", weight=0]; 2674[label="yvy90 == yvy93",fontsize=16,color="magenta"];2674 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2675 -> 891[label="",style="dashed", color="red", weight=0]; 2675[label="yvy90 == yvy93",fontsize=16,color="magenta"];2675 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2676 -> 893[label="",style="dashed", color="red", weight=0]; 2676[label="yvy90 == yvy93",fontsize=16,color="magenta"];2676 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2676 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2677 -> 894[label="",style="dashed", color="red", weight=0]; 2677[label="yvy90 == yvy93",fontsize=16,color="magenta"];2677 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2678 -> 900[label="",style="dashed", color="red", weight=0]; 2678[label="yvy90 == yvy93",fontsize=16,color="magenta"];2678 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2678 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2679 -> 895[label="",style="dashed", color="red", weight=0]; 2679[label="yvy90 == yvy93",fontsize=16,color="magenta"];2679 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2679 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2680 -> 904[label="",style="dashed", color="red", weight=0]; 2680[label="yvy90 == yvy93",fontsize=16,color="magenta"];2680 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2681 -> 899[label="",style="dashed", color="red", weight=0]; 2681[label="yvy90 == yvy93",fontsize=16,color="magenta"];2681 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2681 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2682 -> 1835[label="",style="dashed", color="red", weight=0]; 2682[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2682 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2682 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2683 -> 1836[label="",style="dashed", color="red", weight=0]; 2683[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2683 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2683 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2684 -> 1837[label="",style="dashed", color="red", weight=0]; 2684[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2684 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2684 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2685 -> 1838[label="",style="dashed", color="red", weight=0]; 2685[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2685 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2685 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2686 -> 1839[label="",style="dashed", color="red", weight=0]; 2686[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2686 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2686 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2687 -> 1840[label="",style="dashed", color="red", weight=0]; 2687[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2687 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2687 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2688 -> 1841[label="",style="dashed", color="red", weight=0]; 2688[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2688 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2689 -> 1842[label="",style="dashed", color="red", weight=0]; 2689[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2689 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2690 -> 1843[label="",style="dashed", color="red", weight=0]; 2690[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2690 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2690 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2691 -> 1844[label="",style="dashed", color="red", weight=0]; 2691[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2691 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2691 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2692 -> 1845[label="",style="dashed", color="red", weight=0]; 2692[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2692 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2692 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2693 -> 1846[label="",style="dashed", color="red", weight=0]; 2693[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2693 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2693 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2694 -> 1847[label="",style="dashed", color="red", weight=0]; 2694[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2694 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2694 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2695 -> 1848[label="",style="dashed", color="red", weight=0]; 2695[label="yvy91 <= yvy94",fontsize=16,color="magenta"];2695 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2695 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2696[label="yvy290",fontsize=16,color="green",shape="box"];2697[label="True",fontsize=16,color="green",shape="box"];2698[label="compare0 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) otherwise",fontsize=16,color="black",shape="box"];2698 -> 3040[label="",style="solid", color="black", weight=3]; 2699[label="LT",fontsize=16,color="green",shape="box"];2700[label="yvy40000",fontsize=16,color="green",shape="box"];2701[label="yvy30000",fontsize=16,color="green",shape="box"];2702[label="yvy40000",fontsize=16,color="green",shape="box"];2703[label="yvy30000",fontsize=16,color="green",shape="box"];2704[label="yvy40000",fontsize=16,color="green",shape="box"];2705[label="yvy30000",fontsize=16,color="green",shape="box"];2706[label="yvy40000",fontsize=16,color="green",shape="box"];2707[label="yvy30000",fontsize=16,color="green",shape="box"];2708[label="yvy40000",fontsize=16,color="green",shape="box"];2709[label="yvy30000",fontsize=16,color="green",shape="box"];2710[label="yvy40000",fontsize=16,color="green",shape="box"];2711[label="yvy30000",fontsize=16,color="green",shape="box"];2712[label="yvy40000",fontsize=16,color="green",shape="box"];2713[label="yvy30000",fontsize=16,color="green",shape="box"];2714[label="yvy40000",fontsize=16,color="green",shape="box"];2715[label="yvy30000",fontsize=16,color="green",shape="box"];2716[label="yvy40000",fontsize=16,color="green",shape="box"];2717[label="yvy30000",fontsize=16,color="green",shape="box"];2718[label="yvy40000",fontsize=16,color="green",shape="box"];2719[label="yvy30000",fontsize=16,color="green",shape="box"];2720[label="yvy40000",fontsize=16,color="green",shape="box"];2721[label="yvy30000",fontsize=16,color="green",shape="box"];2722[label="yvy40000",fontsize=16,color="green",shape="box"];2723[label="yvy30000",fontsize=16,color="green",shape="box"];2724[label="yvy40000",fontsize=16,color="green",shape="box"];2725[label="yvy30000",fontsize=16,color="green",shape="box"];2726[label="yvy40000",fontsize=16,color="green",shape="box"];2727[label="yvy30000",fontsize=16,color="green",shape="box"];2728 -> 891[label="",style="dashed", color="red", weight=0]; 2728[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2728 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2728 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2729 -> 892[label="",style="dashed", color="red", weight=0]; 2729[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2729 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2729 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2730 -> 893[label="",style="dashed", color="red", weight=0]; 2730[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2730 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2730 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2731 -> 894[label="",style="dashed", color="red", weight=0]; 2731[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2731 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2731 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2732 -> 895[label="",style="dashed", color="red", weight=0]; 2732[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2732 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2732 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2733 -> 896[label="",style="dashed", color="red", weight=0]; 2733[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2733 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2733 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2734 -> 897[label="",style="dashed", color="red", weight=0]; 2734[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2734 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2734 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2735 -> 898[label="",style="dashed", color="red", weight=0]; 2735[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2735 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2735 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2736 -> 899[label="",style="dashed", color="red", weight=0]; 2736[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2736 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2736 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2737 -> 900[label="",style="dashed", color="red", weight=0]; 2737[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2737 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2737 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2738 -> 901[label="",style="dashed", color="red", weight=0]; 2738[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2738 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2738 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2739 -> 902[label="",style="dashed", color="red", weight=0]; 2739[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2739 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2739 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2740 -> 903[label="",style="dashed", color="red", weight=0]; 2740[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2740 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2740 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2741 -> 904[label="",style="dashed", color="red", weight=0]; 2741[label="yvy40001 == yvy30001",fontsize=16,color="magenta"];2741 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2742 -> 891[label="",style="dashed", color="red", weight=0]; 2742[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2742 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2742 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2743 -> 892[label="",style="dashed", color="red", weight=0]; 2743[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2743 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2743 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2744 -> 893[label="",style="dashed", color="red", weight=0]; 2744[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2744 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2744 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2745 -> 894[label="",style="dashed", color="red", weight=0]; 2745[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2745 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2745 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2746 -> 895[label="",style="dashed", color="red", weight=0]; 2746[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2746 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2746 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2747 -> 896[label="",style="dashed", color="red", weight=0]; 2747[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2747 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2747 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2748 -> 897[label="",style="dashed", color="red", weight=0]; 2748[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2748 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2748 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2749 -> 898[label="",style="dashed", color="red", weight=0]; 2749[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2749 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2749 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2750 -> 899[label="",style="dashed", color="red", weight=0]; 2750[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2750 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2750 -> 3086[label="",style="dashed", color="magenta", weight=3]; 2751 -> 900[label="",style="dashed", color="red", weight=0]; 2751[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2751 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2751 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2752 -> 901[label="",style="dashed", color="red", weight=0]; 2752[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2752 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2752 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2753 -> 902[label="",style="dashed", color="red", weight=0]; 2753[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2753 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2753 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2754 -> 903[label="",style="dashed", color="red", weight=0]; 2754[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2754 -> 3093[label="",style="dashed", color="magenta", weight=3]; 2754 -> 3094[label="",style="dashed", color="magenta", weight=3]; 2755 -> 904[label="",style="dashed", color="red", weight=0]; 2755[label="yvy40002 == yvy30002",fontsize=16,color="magenta"];2755 -> 3095[label="",style="dashed", color="magenta", weight=3]; 2755 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2756[label="yvy40000",fontsize=16,color="green",shape="box"];2757[label="yvy30001",fontsize=16,color="green",shape="box"];2758[label="yvy40001",fontsize=16,color="green",shape="box"];2759[label="yvy30000",fontsize=16,color="green",shape="box"];2760[label="yvy40000",fontsize=16,color="green",shape="box"];2761[label="yvy30000",fontsize=16,color="green",shape="box"];2762[label="yvy40000",fontsize=16,color="green",shape="box"];2763[label="yvy30000",fontsize=16,color="green",shape="box"];2764[label="yvy40000",fontsize=16,color="green",shape="box"];2765[label="yvy30000",fontsize=16,color="green",shape="box"];2766[label="yvy40000",fontsize=16,color="green",shape="box"];2767[label="yvy30000",fontsize=16,color="green",shape="box"];2768[label="yvy40000",fontsize=16,color="green",shape="box"];2769[label="yvy30000",fontsize=16,color="green",shape="box"];2770[label="yvy40000",fontsize=16,color="green",shape="box"];2771[label="yvy30000",fontsize=16,color="green",shape="box"];2772[label="yvy40000",fontsize=16,color="green",shape="box"];2773[label="yvy30000",fontsize=16,color="green",shape="box"];2774[label="yvy40000",fontsize=16,color="green",shape="box"];2775[label="yvy30000",fontsize=16,color="green",shape="box"];2776[label="yvy40000",fontsize=16,color="green",shape="box"];2777[label="yvy30000",fontsize=16,color="green",shape="box"];2778[label="yvy40000",fontsize=16,color="green",shape="box"];2779[label="yvy30000",fontsize=16,color="green",shape="box"];2780[label="yvy40000",fontsize=16,color="green",shape="box"];2781[label="yvy30000",fontsize=16,color="green",shape="box"];2782[label="yvy40000",fontsize=16,color="green",shape="box"];2783[label="yvy30000",fontsize=16,color="green",shape="box"];2784[label="yvy40000",fontsize=16,color="green",shape="box"];2785[label="yvy30000",fontsize=16,color="green",shape="box"];2786[label="yvy40000",fontsize=16,color="green",shape="box"];2787[label="yvy30000",fontsize=16,color="green",shape="box"];2788[label="yvy40001",fontsize=16,color="green",shape="box"];2789[label="yvy30001",fontsize=16,color="green",shape="box"];2790[label="yvy40001",fontsize=16,color="green",shape="box"];2791[label="yvy30001",fontsize=16,color="green",shape="box"];2792[label="yvy40001",fontsize=16,color="green",shape="box"];2793[label="yvy30001",fontsize=16,color="green",shape="box"];2794[label="yvy40001",fontsize=16,color="green",shape="box"];2795[label="yvy30001",fontsize=16,color="green",shape="box"];2796[label="yvy40001",fontsize=16,color="green",shape="box"];2797[label="yvy30001",fontsize=16,color="green",shape="box"];2798[label="yvy40001",fontsize=16,color="green",shape="box"];2799[label="yvy30001",fontsize=16,color="green",shape="box"];2800[label="yvy40001",fontsize=16,color="green",shape="box"];2801[label="yvy30001",fontsize=16,color="green",shape="box"];2802[label="yvy40001",fontsize=16,color="green",shape="box"];2803[label="yvy30001",fontsize=16,color="green",shape="box"];2804[label="yvy40001",fontsize=16,color="green",shape="box"];2805[label="yvy30001",fontsize=16,color="green",shape="box"];2806[label="yvy40001",fontsize=16,color="green",shape="box"];2807[label="yvy30001",fontsize=16,color="green",shape="box"];2808[label="yvy40001",fontsize=16,color="green",shape="box"];2809[label="yvy30001",fontsize=16,color="green",shape="box"];2810[label="yvy40001",fontsize=16,color="green",shape="box"];2811[label="yvy30001",fontsize=16,color="green",shape="box"];2812[label="yvy40001",fontsize=16,color="green",shape="box"];2813[label="yvy30001",fontsize=16,color="green",shape="box"];2814[label="yvy40001",fontsize=16,color="green",shape="box"];2815[label="yvy30001",fontsize=16,color="green",shape="box"];2816[label="yvy40000",fontsize=16,color="green",shape="box"];2817[label="yvy30000",fontsize=16,color="green",shape="box"];2818[label="yvy40000",fontsize=16,color="green",shape="box"];2819[label="yvy30000",fontsize=16,color="green",shape="box"];2820[label="yvy40001",fontsize=16,color="green",shape="box"];2821[label="yvy30001",fontsize=16,color="green",shape="box"];2822[label="yvy40001",fontsize=16,color="green",shape="box"];2823[label="yvy30001",fontsize=16,color="green",shape="box"];2824 -> 2115[label="",style="dashed", color="red", weight=0]; 2824[label="primEqNat yvy400000 yvy300000",fontsize=16,color="magenta"];2824 -> 3097[label="",style="dashed", color="magenta", weight=3]; 2824 -> 3098[label="",style="dashed", color="magenta", weight=3]; 2825[label="False",fontsize=16,color="green",shape="box"];2826[label="False",fontsize=16,color="green",shape="box"];2827[label="True",fontsize=16,color="green",shape="box"];2828[label="False",fontsize=16,color="green",shape="box"];2829[label="True",fontsize=16,color="green",shape="box"];2830 -> 2115[label="",style="dashed", color="red", weight=0]; 2830[label="primEqNat yvy400000 yvy300000",fontsize=16,color="magenta"];2830 -> 3099[label="",style="dashed", color="magenta", weight=3]; 2830 -> 3100[label="",style="dashed", color="magenta", weight=3]; 2831[label="False",fontsize=16,color="green",shape="box"];2832[label="False",fontsize=16,color="green",shape="box"];2833[label="True",fontsize=16,color="green",shape="box"];2834[label="False",fontsize=16,color="green",shape="box"];2835[label="True",fontsize=16,color="green",shape="box"];2836[label="primEqNat (Succ yvy400000) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2836 -> 3101[label="",style="solid", color="black", weight=3]; 2837[label="primEqNat (Succ yvy400000) Zero",fontsize=16,color="black",shape="box"];2837 -> 3102[label="",style="solid", color="black", weight=3]; 2838[label="primEqNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2838 -> 3103[label="",style="solid", color="black", weight=3]; 2839[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2839 -> 3104[label="",style="solid", color="black", weight=3]; 2840[label="yvy40000",fontsize=16,color="green",shape="box"];2841[label="yvy30000",fontsize=16,color="green",shape="box"];2842[label="yvy40000",fontsize=16,color="green",shape="box"];2843[label="yvy30000",fontsize=16,color="green",shape="box"];2844[label="yvy40000",fontsize=16,color="green",shape="box"];2845[label="yvy30000",fontsize=16,color="green",shape="box"];2846[label="yvy40000",fontsize=16,color="green",shape="box"];2847[label="yvy30000",fontsize=16,color="green",shape="box"];2848[label="yvy40000",fontsize=16,color="green",shape="box"];2849[label="yvy30000",fontsize=16,color="green",shape="box"];2850[label="yvy40000",fontsize=16,color="green",shape="box"];2851[label="yvy30000",fontsize=16,color="green",shape="box"];2852[label="yvy40000",fontsize=16,color="green",shape="box"];2853[label="yvy30000",fontsize=16,color="green",shape="box"];2854[label="yvy40000",fontsize=16,color="green",shape="box"];2855[label="yvy30000",fontsize=16,color="green",shape="box"];2856[label="yvy40000",fontsize=16,color="green",shape="box"];2857[label="yvy30000",fontsize=16,color="green",shape="box"];2858[label="yvy40000",fontsize=16,color="green",shape="box"];2859[label="yvy30000",fontsize=16,color="green",shape="box"];2860[label="yvy40000",fontsize=16,color="green",shape="box"];2861[label="yvy30000",fontsize=16,color="green",shape="box"];2862[label="yvy40000",fontsize=16,color="green",shape="box"];2863[label="yvy30000",fontsize=16,color="green",shape="box"];2864[label="yvy40000",fontsize=16,color="green",shape="box"];2865[label="yvy30000",fontsize=16,color="green",shape="box"];2866[label="yvy40000",fontsize=16,color="green",shape="box"];2867[label="yvy30000",fontsize=16,color="green",shape="box"];2868[label="yvy40000",fontsize=16,color="green",shape="box"];2869[label="yvy30001",fontsize=16,color="green",shape="box"];2870[label="yvy40001",fontsize=16,color="green",shape="box"];2871[label="yvy30000",fontsize=16,color="green",shape="box"];2872[label="yvy101",fontsize=16,color="green",shape="box"];2873[label="yvy100",fontsize=16,color="green",shape="box"];2874 -> 3105[label="",style="dashed", color="red", weight=0]; 2874[label="not (yvy291 == GT)",fontsize=16,color="magenta"];2874 -> 3106[label="",style="dashed", color="magenta", weight=3]; 2875[label="yvy101",fontsize=16,color="green",shape="box"];2876[label="yvy100",fontsize=16,color="green",shape="box"];2877[label="yvy101",fontsize=16,color="green",shape="box"];2878[label="yvy100",fontsize=16,color="green",shape="box"];2879[label="yvy101",fontsize=16,color="green",shape="box"];2880[label="yvy100",fontsize=16,color="green",shape="box"];2881[label="yvy101",fontsize=16,color="green",shape="box"];2882[label="yvy100",fontsize=16,color="green",shape="box"];2883[label="yvy101",fontsize=16,color="green",shape="box"];2884[label="yvy100",fontsize=16,color="green",shape="box"];2889 -> 2356[label="",style="dashed", color="red", weight=0]; 2889[label="yvy1000 < yvy1010 || yvy1000 == yvy1010 && yvy1001 <= yvy1011",fontsize=16,color="magenta"];2889 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2889 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2890 -> 2356[label="",style="dashed", color="red", weight=0]; 2890[label="yvy1000 < yvy1010 || yvy1000 == yvy1010 && (yvy1001 < yvy1011 || yvy1001 == yvy1011 && yvy1002 <= yvy1012)",fontsize=16,color="magenta"];2890 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2890 -> 3118[label="",style="dashed", color="magenta", weight=3]; 2891[label="True",fontsize=16,color="green",shape="box"];2892[label="True",fontsize=16,color="green",shape="box"];2893[label="False",fontsize=16,color="green",shape="box"];2894[label="True",fontsize=16,color="green",shape="box"];2895[label="True",fontsize=16,color="green",shape="box"];2896[label="True",fontsize=16,color="green",shape="box"];2897[label="False",fontsize=16,color="green",shape="box"];2898[label="yvy1000 <= yvy1010",fontsize=16,color="blue",shape="box"];4873[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4873[label="",style="solid", color="blue", weight=9]; 4873 -> 3119[label="",style="solid", color="blue", weight=3]; 4874[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4874[label="",style="solid", color="blue", weight=9]; 4874 -> 3120[label="",style="solid", color="blue", weight=3]; 4875[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4875[label="",style="solid", color="blue", weight=9]; 4875 -> 3121[label="",style="solid", color="blue", weight=3]; 4876[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4876[label="",style="solid", color="blue", weight=9]; 4876 -> 3122[label="",style="solid", color="blue", weight=3]; 4877[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4877[label="",style="solid", color="blue", weight=9]; 4877 -> 3123[label="",style="solid", color="blue", weight=3]; 4878[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4878[label="",style="solid", color="blue", weight=9]; 4878 -> 3124[label="",style="solid", color="blue", weight=3]; 4879[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4879[label="",style="solid", color="blue", weight=9]; 4879 -> 3125[label="",style="solid", color="blue", weight=3]; 4880[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4880[label="",style="solid", color="blue", weight=9]; 4880 -> 3126[label="",style="solid", color="blue", weight=3]; 4881[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4881[label="",style="solid", color="blue", weight=9]; 4881 -> 3127[label="",style="solid", color="blue", weight=3]; 4882[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4882[label="",style="solid", color="blue", weight=9]; 4882 -> 3128[label="",style="solid", color="blue", weight=3]; 4883[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4883[label="",style="solid", color="blue", weight=9]; 4883 -> 3129[label="",style="solid", color="blue", weight=3]; 4884[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4884[label="",style="solid", color="blue", weight=9]; 4884 -> 3130[label="",style="solid", color="blue", weight=3]; 4885[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4885[label="",style="solid", color="blue", weight=9]; 4885 -> 3131[label="",style="solid", color="blue", weight=3]; 4886[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4886[label="",style="solid", color="blue", weight=9]; 4886 -> 3132[label="",style="solid", color="blue", weight=3]; 2899[label="yvy1000 <= yvy1010",fontsize=16,color="blue",shape="box"];4887[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4887[label="",style="solid", color="blue", weight=9]; 4887 -> 3133[label="",style="solid", color="blue", weight=3]; 4888[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4888[label="",style="solid", color="blue", weight=9]; 4888 -> 3134[label="",style="solid", color="blue", weight=3]; 4889[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4889[label="",style="solid", color="blue", weight=9]; 4889 -> 3135[label="",style="solid", color="blue", weight=3]; 4890[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4890[label="",style="solid", color="blue", weight=9]; 4890 -> 3136[label="",style="solid", color="blue", weight=3]; 4891[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4891[label="",style="solid", color="blue", weight=9]; 4891 -> 3137[label="",style="solid", color="blue", weight=3]; 4892[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4892[label="",style="solid", color="blue", weight=9]; 4892 -> 3138[label="",style="solid", color="blue", weight=3]; 4893[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4893[label="",style="solid", color="blue", weight=9]; 4893 -> 3139[label="",style="solid", color="blue", weight=3]; 4894[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4894[label="",style="solid", color="blue", weight=9]; 4894 -> 3140[label="",style="solid", color="blue", weight=3]; 4895[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4895[label="",style="solid", color="blue", weight=9]; 4895 -> 3141[label="",style="solid", color="blue", weight=3]; 4896[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4896[label="",style="solid", color="blue", weight=9]; 4896 -> 3142[label="",style="solid", color="blue", weight=3]; 4897[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4897[label="",style="solid", color="blue", weight=9]; 4897 -> 3143[label="",style="solid", color="blue", weight=3]; 4898[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4898[label="",style="solid", color="blue", weight=9]; 4898 -> 3144[label="",style="solid", color="blue", weight=3]; 4899[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4899[label="",style="solid", color="blue", weight=9]; 4899 -> 3145[label="",style="solid", color="blue", weight=3]; 4900[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4900[label="",style="solid", color="blue", weight=9]; 4900 -> 3146[label="",style="solid", color="blue", weight=3]; 2900[label="True",fontsize=16,color="green",shape="box"];2901[label="False",fontsize=16,color="green",shape="box"];2902[label="yvy1000 <= yvy1010",fontsize=16,color="blue",shape="box"];4901[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4901[label="",style="solid", color="blue", weight=9]; 4901 -> 3147[label="",style="solid", color="blue", weight=3]; 4902[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4902[label="",style="solid", color="blue", weight=9]; 4902 -> 3148[label="",style="solid", color="blue", weight=3]; 4903[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4903[label="",style="solid", color="blue", weight=9]; 4903 -> 3149[label="",style="solid", color="blue", weight=3]; 4904[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4904[label="",style="solid", color="blue", weight=9]; 4904 -> 3150[label="",style="solid", color="blue", weight=3]; 4905[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4905[label="",style="solid", color="blue", weight=9]; 4905 -> 3151[label="",style="solid", color="blue", weight=3]; 4906[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4906[label="",style="solid", color="blue", weight=9]; 4906 -> 3152[label="",style="solid", color="blue", weight=3]; 4907[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4907[label="",style="solid", color="blue", weight=9]; 4907 -> 3153[label="",style="solid", color="blue", weight=3]; 4908[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4908[label="",style="solid", color="blue", weight=9]; 4908 -> 3154[label="",style="solid", color="blue", weight=3]; 4909[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4909[label="",style="solid", color="blue", weight=9]; 4909 -> 3155[label="",style="solid", color="blue", weight=3]; 4910[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4910[label="",style="solid", color="blue", weight=9]; 4910 -> 3156[label="",style="solid", color="blue", weight=3]; 4911[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4911[label="",style="solid", color="blue", weight=9]; 4911 -> 3157[label="",style="solid", color="blue", weight=3]; 4912[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4912[label="",style="solid", color="blue", weight=9]; 4912 -> 3158[label="",style="solid", color="blue", weight=3]; 4913[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4913[label="",style="solid", color="blue", weight=9]; 4913 -> 3159[label="",style="solid", color="blue", weight=3]; 4914[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4914[label="",style="solid", color="blue", weight=9]; 4914 -> 3160[label="",style="solid", color="blue", weight=3]; 2903[label="True",fontsize=16,color="green",shape="box"];2904[label="True",fontsize=16,color="green",shape="box"];2905[label="True",fontsize=16,color="green",shape="box"];2906[label="False",fontsize=16,color="green",shape="box"];2907[label="True",fontsize=16,color="green",shape="box"];2908[label="True",fontsize=16,color="green",shape="box"];2909[label="False",fontsize=16,color="green",shape="box"];2910[label="False",fontsize=16,color="green",shape="box"];2911[label="True",fontsize=16,color="green",shape="box"];2885[label="yvy101",fontsize=16,color="green",shape="box"];2886[label="yvy100",fontsize=16,color="green",shape="box"];2887[label="yvy101",fontsize=16,color="green",shape="box"];2888[label="yvy100",fontsize=16,color="green",shape="box"];2942[label="Pos (primPlusNat Zero Zero)",fontsize=16,color="green",shape="box"];2942 -> 3161[label="",style="dashed", color="green", weight=3]; 2943[label="primPlusInt (Pos Zero) (Pos yvy5420)",fontsize=16,color="black",shape="box"];2943 -> 3162[label="",style="solid", color="black", weight=3]; 2944[label="primPlusInt (Pos Zero) (Neg yvy5420)",fontsize=16,color="black",shape="box"];2944 -> 3163[label="",style="solid", color="black", weight=3]; 2945[label="primPlusInt (Pos yvy11820) (Pos Zero)",fontsize=16,color="black",shape="box"];2945 -> 3164[label="",style="solid", color="black", weight=3]; 2946[label="primPlusInt (Pos yvy11820) yvy542",fontsize=16,color="burlywood",shape="triangle"];4915[label="yvy542/Pos yvy5420",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4915[label="",style="solid", color="burlywood", weight=9]; 4915 -> 3165[label="",style="solid", color="burlywood", weight=3]; 4916[label="yvy542/Neg yvy5420",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4916[label="",style="solid", color="burlywood", weight=9]; 4916 -> 3166[label="",style="solid", color="burlywood", weight=3]; 2947[label="primPlusInt (Neg yvy11820) (Pos Zero)",fontsize=16,color="black",shape="box"];2947 -> 3167[label="",style="solid", color="black", weight=3]; 2948[label="primPlusInt (Neg yvy11820) yvy542",fontsize=16,color="burlywood",shape="triangle"];4917[label="yvy542/Pos yvy5420",fontsize=10,color="white",style="solid",shape="box"];2948 -> 4917[label="",style="solid", color="burlywood", weight=9]; 4917 -> 3168[label="",style="solid", color="burlywood", weight=3]; 4918[label="yvy542/Neg yvy5420",fontsize=10,color="white",style="solid",shape="box"];2948 -> 4918[label="",style="solid", color="burlywood", weight=9]; 4918 -> 3169[label="",style="solid", color="burlywood", weight=3]; 4052 -> 4054[label="",style="dashed", color="red", weight=0]; 4052[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy349 yvy346 yvy348) (FiniteMap.mkBranchRight_size yvy349 yvy346 yvy348)",fontsize=16,color="magenta"];4052 -> 4055[label="",style="dashed", color="magenta", weight=3]; 3181[label="yvy118",fontsize=16,color="green",shape="box"];2976 -> 1239[label="",style="dashed", color="red", weight=0]; 2976[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2977 -> 2962[label="",style="dashed", color="red", weight=0]; 2977[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];3113[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 otherwise",fontsize=16,color="black",shape="box"];3113 -> 3185[label="",style="solid", color="black", weight=3]; 3114[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy118 yvy54 yvy118 yvy54 yvy118",fontsize=16,color="burlywood",shape="box"];4919[label="yvy118/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3114 -> 4919[label="",style="solid", color="burlywood", weight=9]; 4919 -> 3186[label="",style="solid", color="burlywood", weight=3]; 4920[label="yvy118/FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184",fontsize=10,color="white",style="solid",shape="box"];3114 -> 4920[label="",style="solid", color="burlywood", weight=9]; 4920 -> 3187[label="",style="solid", color="burlywood", weight=3]; 2978 -> 3188[label="",style="dashed", color="red", weight=0]; 2978[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 (FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544)",fontsize=16,color="magenta"];2978 -> 3189[label="",style="dashed", color="magenta", weight=3]; 2983[label="compare0 (yvy201,yvy202) (yvy203,yvy204) True",fontsize=16,color="black",shape="box"];2983 -> 3198[label="",style="solid", color="black", weight=3]; 2984[label="yvy90",fontsize=16,color="green",shape="box"];2985[label="yvy93",fontsize=16,color="green",shape="box"];2986[label="yvy90",fontsize=16,color="green",shape="box"];2987[label="yvy93",fontsize=16,color="green",shape="box"];2988[label="yvy90",fontsize=16,color="green",shape="box"];2989[label="yvy93",fontsize=16,color="green",shape="box"];2990[label="yvy90",fontsize=16,color="green",shape="box"];2991[label="yvy93",fontsize=16,color="green",shape="box"];2992[label="yvy90",fontsize=16,color="green",shape="box"];2993[label="yvy93",fontsize=16,color="green",shape="box"];2994[label="yvy90",fontsize=16,color="green",shape="box"];2995[label="yvy93",fontsize=16,color="green",shape="box"];2996[label="yvy90",fontsize=16,color="green",shape="box"];2997[label="yvy93",fontsize=16,color="green",shape="box"];2998[label="yvy90",fontsize=16,color="green",shape="box"];2999[label="yvy93",fontsize=16,color="green",shape="box"];3000[label="yvy90",fontsize=16,color="green",shape="box"];3001[label="yvy93",fontsize=16,color="green",shape="box"];3002[label="yvy90",fontsize=16,color="green",shape="box"];3003[label="yvy93",fontsize=16,color="green",shape="box"];3004[label="yvy90",fontsize=16,color="green",shape="box"];3005[label="yvy93",fontsize=16,color="green",shape="box"];3006[label="yvy90",fontsize=16,color="green",shape="box"];3007[label="yvy93",fontsize=16,color="green",shape="box"];3008[label="yvy90",fontsize=16,color="green",shape="box"];3009[label="yvy93",fontsize=16,color="green",shape="box"];3010[label="yvy90",fontsize=16,color="green",shape="box"];3011[label="yvy93",fontsize=16,color="green",shape="box"];3012[label="yvy94",fontsize=16,color="green",shape="box"];3013[label="yvy91",fontsize=16,color="green",shape="box"];3014[label="yvy94",fontsize=16,color="green",shape="box"];3015[label="yvy91",fontsize=16,color="green",shape="box"];3016[label="yvy94",fontsize=16,color="green",shape="box"];3017[label="yvy91",fontsize=16,color="green",shape="box"];3018[label="yvy94",fontsize=16,color="green",shape="box"];3019[label="yvy91",fontsize=16,color="green",shape="box"];3020[label="yvy94",fontsize=16,color="green",shape="box"];3021[label="yvy91",fontsize=16,color="green",shape="box"];3022[label="yvy94",fontsize=16,color="green",shape="box"];3023[label="yvy91",fontsize=16,color="green",shape="box"];3024[label="yvy94",fontsize=16,color="green",shape="box"];3025[label="yvy91",fontsize=16,color="green",shape="box"];3026[label="yvy94",fontsize=16,color="green",shape="box"];3027[label="yvy91",fontsize=16,color="green",shape="box"];3028[label="yvy94",fontsize=16,color="green",shape="box"];3029[label="yvy91",fontsize=16,color="green",shape="box"];3030[label="yvy94",fontsize=16,color="green",shape="box"];3031[label="yvy91",fontsize=16,color="green",shape="box"];3032[label="yvy94",fontsize=16,color="green",shape="box"];3033[label="yvy91",fontsize=16,color="green",shape="box"];3034[label="yvy94",fontsize=16,color="green",shape="box"];3035[label="yvy91",fontsize=16,color="green",shape="box"];3036[label="yvy94",fontsize=16,color="green",shape="box"];3037[label="yvy91",fontsize=16,color="green",shape="box"];3038[label="yvy94",fontsize=16,color="green",shape="box"];3039[label="yvy91",fontsize=16,color="green",shape="box"];3040[label="compare0 (yvy216,yvy217,yvy218) (yvy219,yvy220,yvy221) True",fontsize=16,color="black",shape="box"];3040 -> 3199[label="",style="solid", color="black", weight=3]; 3041[label="yvy40001",fontsize=16,color="green",shape="box"];3042[label="yvy30001",fontsize=16,color="green",shape="box"];3043[label="yvy40001",fontsize=16,color="green",shape="box"];3044[label="yvy30001",fontsize=16,color="green",shape="box"];3045[label="yvy40001",fontsize=16,color="green",shape="box"];3046[label="yvy30001",fontsize=16,color="green",shape="box"];3047[label="yvy40001",fontsize=16,color="green",shape="box"];3048[label="yvy30001",fontsize=16,color="green",shape="box"];3049[label="yvy40001",fontsize=16,color="green",shape="box"];3050[label="yvy30001",fontsize=16,color="green",shape="box"];3051[label="yvy40001",fontsize=16,color="green",shape="box"];3052[label="yvy30001",fontsize=16,color="green",shape="box"];3053[label="yvy40001",fontsize=16,color="green",shape="box"];3054[label="yvy30001",fontsize=16,color="green",shape="box"];3055[label="yvy40001",fontsize=16,color="green",shape="box"];3056[label="yvy30001",fontsize=16,color="green",shape="box"];3057[label="yvy40001",fontsize=16,color="green",shape="box"];3058[label="yvy30001",fontsize=16,color="green",shape="box"];3059[label="yvy40001",fontsize=16,color="green",shape="box"];3060[label="yvy30001",fontsize=16,color="green",shape="box"];3061[label="yvy40001",fontsize=16,color="green",shape="box"];3062[label="yvy30001",fontsize=16,color="green",shape="box"];3063[label="yvy40001",fontsize=16,color="green",shape="box"];3064[label="yvy30001",fontsize=16,color="green",shape="box"];3065[label="yvy40001",fontsize=16,color="green",shape="box"];3066[label="yvy30001",fontsize=16,color="green",shape="box"];3067[label="yvy40001",fontsize=16,color="green",shape="box"];3068[label="yvy30001",fontsize=16,color="green",shape="box"];3069[label="yvy40002",fontsize=16,color="green",shape="box"];3070[label="yvy30002",fontsize=16,color="green",shape="box"];3071[label="yvy40002",fontsize=16,color="green",shape="box"];3072[label="yvy30002",fontsize=16,color="green",shape="box"];3073[label="yvy40002",fontsize=16,color="green",shape="box"];3074[label="yvy30002",fontsize=16,color="green",shape="box"];3075[label="yvy40002",fontsize=16,color="green",shape="box"];3076[label="yvy30002",fontsize=16,color="green",shape="box"];3077[label="yvy40002",fontsize=16,color="green",shape="box"];3078[label="yvy30002",fontsize=16,color="green",shape="box"];3079[label="yvy40002",fontsize=16,color="green",shape="box"];3080[label="yvy30002",fontsize=16,color="green",shape="box"];3081[label="yvy40002",fontsize=16,color="green",shape="box"];3082[label="yvy30002",fontsize=16,color="green",shape="box"];3083[label="yvy40002",fontsize=16,color="green",shape="box"];3084[label="yvy30002",fontsize=16,color="green",shape="box"];3085[label="yvy40002",fontsize=16,color="green",shape="box"];3086[label="yvy30002",fontsize=16,color="green",shape="box"];3087[label="yvy40002",fontsize=16,color="green",shape="box"];3088[label="yvy30002",fontsize=16,color="green",shape="box"];3089[label="yvy40002",fontsize=16,color="green",shape="box"];3090[label="yvy30002",fontsize=16,color="green",shape="box"];3091[label="yvy40002",fontsize=16,color="green",shape="box"];3092[label="yvy30002",fontsize=16,color="green",shape="box"];3093[label="yvy40002",fontsize=16,color="green",shape="box"];3094[label="yvy30002",fontsize=16,color="green",shape="box"];3095[label="yvy40002",fontsize=16,color="green",shape="box"];3096[label="yvy30002",fontsize=16,color="green",shape="box"];3097[label="yvy300000",fontsize=16,color="green",shape="box"];3098[label="yvy400000",fontsize=16,color="green",shape="box"];3099[label="yvy300000",fontsize=16,color="green",shape="box"];3100[label="yvy400000",fontsize=16,color="green",shape="box"];3101 -> 2115[label="",style="dashed", color="red", weight=0]; 3101[label="primEqNat yvy400000 yvy300000",fontsize=16,color="magenta"];3101 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3102[label="False",fontsize=16,color="green",shape="box"];3103[label="False",fontsize=16,color="green",shape="box"];3104[label="True",fontsize=16,color="green",shape="box"];3106 -> 895[label="",style="dashed", color="red", weight=0]; 3106[label="yvy291 == GT",fontsize=16,color="magenta"];3106 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3106 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3105[label="not yvy299",fontsize=16,color="burlywood",shape="triangle"];4921[label="yvy299/False",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4921[label="",style="solid", color="burlywood", weight=9]; 4921 -> 3204[label="",style="solid", color="burlywood", weight=3]; 4922[label="yvy299/True",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4922[label="",style="solid", color="burlywood", weight=9]; 4922 -> 3205[label="",style="solid", color="burlywood", weight=3]; 3115[label="yvy1000 < yvy1010",fontsize=16,color="blue",shape="box"];4923[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4923[label="",style="solid", color="blue", weight=9]; 4923 -> 3206[label="",style="solid", color="blue", weight=3]; 4924[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4924[label="",style="solid", color="blue", weight=9]; 4924 -> 3207[label="",style="solid", color="blue", weight=3]; 4925[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4925[label="",style="solid", color="blue", weight=9]; 4925 -> 3208[label="",style="solid", color="blue", weight=3]; 4926[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4926[label="",style="solid", color="blue", weight=9]; 4926 -> 3209[label="",style="solid", color="blue", weight=3]; 4927[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4927[label="",style="solid", color="blue", weight=9]; 4927 -> 3210[label="",style="solid", color="blue", weight=3]; 4928[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4928[label="",style="solid", color="blue", weight=9]; 4928 -> 3211[label="",style="solid", color="blue", weight=3]; 4929[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4929[label="",style="solid", color="blue", weight=9]; 4929 -> 3212[label="",style="solid", color="blue", weight=3]; 4930[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4930[label="",style="solid", color="blue", weight=9]; 4930 -> 3213[label="",style="solid", color="blue", weight=3]; 4931[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4931[label="",style="solid", color="blue", weight=9]; 4931 -> 3214[label="",style="solid", color="blue", weight=3]; 4932[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4932[label="",style="solid", color="blue", weight=9]; 4932 -> 3215[label="",style="solid", color="blue", weight=3]; 4933[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4933[label="",style="solid", color="blue", weight=9]; 4933 -> 3216[label="",style="solid", color="blue", weight=3]; 4934[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4934[label="",style="solid", color="blue", weight=9]; 4934 -> 3217[label="",style="solid", color="blue", weight=3]; 4935[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4935[label="",style="solid", color="blue", weight=9]; 4935 -> 3218[label="",style="solid", color="blue", weight=3]; 4936[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4936[label="",style="solid", color="blue", weight=9]; 4936 -> 3219[label="",style="solid", color="blue", weight=3]; 3116 -> 1398[label="",style="dashed", color="red", weight=0]; 3116[label="yvy1000 == yvy1010 && yvy1001 <= yvy1011",fontsize=16,color="magenta"];3116 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3116 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3117[label="yvy1000 < yvy1010",fontsize=16,color="blue",shape="box"];4937[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4937[label="",style="solid", color="blue", weight=9]; 4937 -> 3222[label="",style="solid", color="blue", weight=3]; 4938[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4938[label="",style="solid", color="blue", weight=9]; 4938 -> 3223[label="",style="solid", color="blue", weight=3]; 4939[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4939[label="",style="solid", color="blue", weight=9]; 4939 -> 3224[label="",style="solid", color="blue", weight=3]; 4940[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4940[label="",style="solid", color="blue", weight=9]; 4940 -> 3225[label="",style="solid", color="blue", weight=3]; 4941[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4941[label="",style="solid", color="blue", weight=9]; 4941 -> 3226[label="",style="solid", color="blue", weight=3]; 4942[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4942[label="",style="solid", color="blue", weight=9]; 4942 -> 3227[label="",style="solid", color="blue", weight=3]; 4943[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4943[label="",style="solid", color="blue", weight=9]; 4943 -> 3228[label="",style="solid", color="blue", weight=3]; 4944[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4944[label="",style="solid", color="blue", weight=9]; 4944 -> 3229[label="",style="solid", color="blue", weight=3]; 4945[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4945[label="",style="solid", color="blue", weight=9]; 4945 -> 3230[label="",style="solid", color="blue", weight=3]; 4946[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4946[label="",style="solid", color="blue", weight=9]; 4946 -> 3231[label="",style="solid", color="blue", weight=3]; 4947[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4947[label="",style="solid", color="blue", weight=9]; 4947 -> 3232[label="",style="solid", color="blue", weight=3]; 4948[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4948[label="",style="solid", color="blue", weight=9]; 4948 -> 3233[label="",style="solid", color="blue", weight=3]; 4949[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4949[label="",style="solid", color="blue", weight=9]; 4949 -> 3234[label="",style="solid", color="blue", weight=3]; 4950[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3117 -> 4950[label="",style="solid", color="blue", weight=9]; 4950 -> 3235[label="",style="solid", color="blue", weight=3]; 3118 -> 1398[label="",style="dashed", color="red", weight=0]; 3118[label="yvy1000 == yvy1010 && (yvy1001 < yvy1011 || yvy1001 == yvy1011 && yvy1002 <= yvy1012)",fontsize=16,color="magenta"];3118 -> 3236[label="",style="dashed", color="magenta", weight=3]; 3118 -> 3237[label="",style="dashed", color="magenta", weight=3]; 3119 -> 1835[label="",style="dashed", color="red", weight=0]; 3119[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3119 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3120 -> 1836[label="",style="dashed", color="red", weight=0]; 3120[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3120 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3121 -> 1837[label="",style="dashed", color="red", weight=0]; 3121[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3121 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3122 -> 1838[label="",style="dashed", color="red", weight=0]; 3122[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3122 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3123 -> 1839[label="",style="dashed", color="red", weight=0]; 3123[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3123 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3123 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3124 -> 1840[label="",style="dashed", color="red", weight=0]; 3124[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3124 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3124 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3125 -> 1841[label="",style="dashed", color="red", weight=0]; 3125[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3125 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3125 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3126 -> 1842[label="",style="dashed", color="red", weight=0]; 3126[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3126 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3126 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3127 -> 1843[label="",style="dashed", color="red", weight=0]; 3127[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3127 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3127 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3128 -> 1844[label="",style="dashed", color="red", weight=0]; 3128[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3128 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3128 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3129 -> 1845[label="",style="dashed", color="red", weight=0]; 3129[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3129 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3129 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3130 -> 1846[label="",style="dashed", color="red", weight=0]; 3130[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3130 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3130 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3131 -> 1847[label="",style="dashed", color="red", weight=0]; 3131[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3131 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3131 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3132 -> 1848[label="",style="dashed", color="red", weight=0]; 3132[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3132 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3132 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3133 -> 1835[label="",style="dashed", color="red", weight=0]; 3133[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3133 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3133 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3134 -> 1836[label="",style="dashed", color="red", weight=0]; 3134[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3134 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3134 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3135 -> 1837[label="",style="dashed", color="red", weight=0]; 3135[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3135 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3135 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3136 -> 1838[label="",style="dashed", color="red", weight=0]; 3136[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3136 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3136 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3137 -> 1839[label="",style="dashed", color="red", weight=0]; 3137[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3137 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3137 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3138 -> 1840[label="",style="dashed", color="red", weight=0]; 3138[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3138 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3139 -> 1841[label="",style="dashed", color="red", weight=0]; 3139[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3139 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3139 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3140 -> 1842[label="",style="dashed", color="red", weight=0]; 3140[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3140 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3141 -> 1843[label="",style="dashed", color="red", weight=0]; 3141[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3141 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3142 -> 1844[label="",style="dashed", color="red", weight=0]; 3142[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3142 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3142 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3143 -> 1845[label="",style="dashed", color="red", weight=0]; 3143[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3143 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3143 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3144 -> 1846[label="",style="dashed", color="red", weight=0]; 3144[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3144 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3145 -> 1847[label="",style="dashed", color="red", weight=0]; 3145[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3145 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3145 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3146 -> 1848[label="",style="dashed", color="red", weight=0]; 3146[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3146 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3146 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3147 -> 1835[label="",style="dashed", color="red", weight=0]; 3147[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3147 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3148 -> 1836[label="",style="dashed", color="red", weight=0]; 3148[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3148 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3149 -> 1837[label="",style="dashed", color="red", weight=0]; 3149[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3149 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3149 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3150 -> 1838[label="",style="dashed", color="red", weight=0]; 3150[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3150 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3150 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3151 -> 1839[label="",style="dashed", color="red", weight=0]; 3151[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3151 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3152 -> 1840[label="",style="dashed", color="red", weight=0]; 3152[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3152 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3152 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3153 -> 1841[label="",style="dashed", color="red", weight=0]; 3153[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3153 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3154 -> 1842[label="",style="dashed", color="red", weight=0]; 3154[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3154 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3155 -> 1843[label="",style="dashed", color="red", weight=0]; 3155[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3155 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3156 -> 1844[label="",style="dashed", color="red", weight=0]; 3156[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3156 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3157 -> 1845[label="",style="dashed", color="red", weight=0]; 3157[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3157 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3158 -> 1846[label="",style="dashed", color="red", weight=0]; 3158[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3158 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3159 -> 1847[label="",style="dashed", color="red", weight=0]; 3159[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3159 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3160 -> 1848[label="",style="dashed", color="red", weight=0]; 3160[label="yvy1000 <= yvy1010",fontsize=16,color="magenta"];3160 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3160 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3161 -> 2968[label="",style="dashed", color="red", weight=0]; 3161[label="primPlusNat Zero Zero",fontsize=16,color="magenta"];3161 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3162[label="Pos (primPlusNat Zero yvy5420)",fontsize=16,color="green",shape="box"];3162 -> 3324[label="",style="dashed", color="green", weight=3]; 3163[label="primMinusNat Zero yvy5420",fontsize=16,color="burlywood",shape="triangle"];4951[label="yvy5420/Succ yvy54200",fontsize=10,color="white",style="solid",shape="box"];3163 -> 4951[label="",style="solid", color="burlywood", weight=9]; 4951 -> 3325[label="",style="solid", color="burlywood", weight=3]; 4952[label="yvy5420/Zero",fontsize=10,color="white",style="solid",shape="box"];3163 -> 4952[label="",style="solid", color="burlywood", weight=9]; 4952 -> 3326[label="",style="solid", color="burlywood", weight=3]; 3164[label="Pos (primPlusNat yvy11820 Zero)",fontsize=16,color="green",shape="box"];3164 -> 3327[label="",style="dashed", color="green", weight=3]; 3165[label="primPlusInt (Pos yvy11820) (Pos yvy5420)",fontsize=16,color="black",shape="box"];3165 -> 3328[label="",style="solid", color="black", weight=3]; 3166[label="primPlusInt (Pos yvy11820) (Neg yvy5420)",fontsize=16,color="black",shape="box"];3166 -> 3329[label="",style="solid", color="black", weight=3]; 3167 -> 3163[label="",style="dashed", color="red", weight=0]; 3167[label="primMinusNat Zero yvy11820",fontsize=16,color="magenta"];3167 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3168[label="primPlusInt (Neg yvy11820) (Pos yvy5420)",fontsize=16,color="black",shape="box"];3168 -> 3331[label="",style="solid", color="black", weight=3]; 3169[label="primPlusInt (Neg yvy11820) (Neg yvy5420)",fontsize=16,color="black",shape="box"];3169 -> 3332[label="",style="solid", color="black", weight=3]; 4055[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy349 yvy346 yvy348",fontsize=16,color="black",shape="box"];4055 -> 4057[label="",style="solid", color="black", weight=3]; 4054[label="primPlusInt yvy350 (FiniteMap.mkBranchRight_size yvy349 yvy346 yvy348)",fontsize=16,color="burlywood",shape="triangle"];4953[label="yvy350/Pos yvy3500",fontsize=10,color="white",style="solid",shape="box"];4054 -> 4953[label="",style="solid", color="burlywood", weight=9]; 4953 -> 4058[label="",style="solid", color="burlywood", weight=3]; 4954[label="yvy350/Neg yvy3500",fontsize=10,color="white",style="solid",shape="box"];4054 -> 4954[label="",style="solid", color="burlywood", weight=9]; 4954 -> 4059[label="",style="solid", color="burlywood", weight=3]; 3185[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy118 yvy54 yvy50 yvy51 yvy118 yvy54 True",fontsize=16,color="black",shape="box"];3185 -> 3337[label="",style="solid", color="black", weight=3]; 3186[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3186 -> 3338[label="",style="solid", color="black", weight=3]; 3187[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184)",fontsize=16,color="black",shape="box"];3187 -> 3339[label="",style="solid", color="black", weight=3]; 3189 -> 1745[label="",style="dashed", color="red", weight=0]; 3189[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3189 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3189 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3188[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 yvy301",fontsize=16,color="burlywood",shape="triangle"];4955[label="yvy301/False",fontsize=10,color="white",style="solid",shape="box"];3188 -> 4955[label="",style="solid", color="burlywood", weight=9]; 4955 -> 3342[label="",style="solid", color="burlywood", weight=3]; 4956[label="yvy301/True",fontsize=10,color="white",style="solid",shape="box"];3188 -> 4956[label="",style="solid", color="burlywood", weight=9]; 4956 -> 3343[label="",style="solid", color="burlywood", weight=3]; 3198[label="GT",fontsize=16,color="green",shape="box"];3199[label="GT",fontsize=16,color="green",shape="box"];3200[label="yvy300000",fontsize=16,color="green",shape="box"];3201[label="yvy400000",fontsize=16,color="green",shape="box"];3202[label="yvy291",fontsize=16,color="green",shape="box"];3203[label="GT",fontsize=16,color="green",shape="box"];3204[label="not False",fontsize=16,color="black",shape="box"];3204 -> 3349[label="",style="solid", color="black", weight=3]; 3205[label="not True",fontsize=16,color="black",shape="box"];3205 -> 3350[label="",style="solid", color="black", weight=3]; 3206 -> 1743[label="",style="dashed", color="red", weight=0]; 3206[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3206 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3206 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3207 -> 1744[label="",style="dashed", color="red", weight=0]; 3207[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3207 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3208 -> 1745[label="",style="dashed", color="red", weight=0]; 3208[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3208 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3208 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3209 -> 1746[label="",style="dashed", color="red", weight=0]; 3209[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3209 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3210 -> 1747[label="",style="dashed", color="red", weight=0]; 3210[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3210 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3211 -> 1748[label="",style="dashed", color="red", weight=0]; 3211[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3211 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3212 -> 1749[label="",style="dashed", color="red", weight=0]; 3212[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3212 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3213 -> 1750[label="",style="dashed", color="red", weight=0]; 3213[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3213 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3214 -> 1751[label="",style="dashed", color="red", weight=0]; 3214[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3214 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3214 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3215 -> 1752[label="",style="dashed", color="red", weight=0]; 3215[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3215 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3215 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3216 -> 1753[label="",style="dashed", color="red", weight=0]; 3216[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3216 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3217 -> 1754[label="",style="dashed", color="red", weight=0]; 3217[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3217 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3218 -> 1755[label="",style="dashed", color="red", weight=0]; 3218[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3218 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3218 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3219 -> 1756[label="",style="dashed", color="red", weight=0]; 3219[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3219 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3220[label="yvy1000 == yvy1010",fontsize=16,color="blue",shape="box"];4957[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4957[label="",style="solid", color="blue", weight=9]; 4957 -> 3379[label="",style="solid", color="blue", weight=3]; 4958[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4958[label="",style="solid", color="blue", weight=9]; 4958 -> 3380[label="",style="solid", color="blue", weight=3]; 4959[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4959[label="",style="solid", color="blue", weight=9]; 4959 -> 3381[label="",style="solid", color="blue", weight=3]; 4960[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4960[label="",style="solid", color="blue", weight=9]; 4960 -> 3382[label="",style="solid", color="blue", weight=3]; 4961[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4961[label="",style="solid", color="blue", weight=9]; 4961 -> 3383[label="",style="solid", color="blue", weight=3]; 4962[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4962[label="",style="solid", color="blue", weight=9]; 4962 -> 3384[label="",style="solid", color="blue", weight=3]; 4963[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4963[label="",style="solid", color="blue", weight=9]; 4963 -> 3385[label="",style="solid", color="blue", weight=3]; 4964[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4964[label="",style="solid", color="blue", weight=9]; 4964 -> 3386[label="",style="solid", color="blue", weight=3]; 4965[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4965[label="",style="solid", color="blue", weight=9]; 4965 -> 3387[label="",style="solid", color="blue", weight=3]; 4966[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4966[label="",style="solid", color="blue", weight=9]; 4966 -> 3388[label="",style="solid", color="blue", weight=3]; 4967[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4967[label="",style="solid", color="blue", weight=9]; 4967 -> 3389[label="",style="solid", color="blue", weight=3]; 4968[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4968[label="",style="solid", color="blue", weight=9]; 4968 -> 3390[label="",style="solid", color="blue", weight=3]; 4969[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4969[label="",style="solid", color="blue", weight=9]; 4969 -> 3391[label="",style="solid", color="blue", weight=3]; 4970[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4970[label="",style="solid", color="blue", weight=9]; 4970 -> 3392[label="",style="solid", color="blue", weight=3]; 3221[label="yvy1001 <= yvy1011",fontsize=16,color="blue",shape="box"];4971[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4971[label="",style="solid", color="blue", weight=9]; 4971 -> 3393[label="",style="solid", color="blue", weight=3]; 4972[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4972[label="",style="solid", color="blue", weight=9]; 4972 -> 3394[label="",style="solid", color="blue", weight=3]; 4973[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4973[label="",style="solid", color="blue", weight=9]; 4973 -> 3395[label="",style="solid", color="blue", weight=3]; 4974[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4974[label="",style="solid", color="blue", weight=9]; 4974 -> 3396[label="",style="solid", color="blue", weight=3]; 4975[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4975[label="",style="solid", color="blue", weight=9]; 4975 -> 3397[label="",style="solid", color="blue", weight=3]; 4976[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4976[label="",style="solid", color="blue", weight=9]; 4976 -> 3398[label="",style="solid", color="blue", weight=3]; 4977[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4977[label="",style="solid", color="blue", weight=9]; 4977 -> 3399[label="",style="solid", color="blue", weight=3]; 4978[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4978[label="",style="solid", color="blue", weight=9]; 4978 -> 3400[label="",style="solid", color="blue", weight=3]; 4979[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4979[label="",style="solid", color="blue", weight=9]; 4979 -> 3401[label="",style="solid", color="blue", weight=3]; 4980[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4980[label="",style="solid", color="blue", weight=9]; 4980 -> 3402[label="",style="solid", color="blue", weight=3]; 4981[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4981[label="",style="solid", color="blue", weight=9]; 4981 -> 3403[label="",style="solid", color="blue", weight=3]; 4982[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4982[label="",style="solid", color="blue", weight=9]; 4982 -> 3404[label="",style="solid", color="blue", weight=3]; 4983[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4983[label="",style="solid", color="blue", weight=9]; 4983 -> 3405[label="",style="solid", color="blue", weight=3]; 4984[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4984[label="",style="solid", color="blue", weight=9]; 4984 -> 3406[label="",style="solid", color="blue", weight=3]; 3222 -> 1743[label="",style="dashed", color="red", weight=0]; 3222[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3222 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3223 -> 1744[label="",style="dashed", color="red", weight=0]; 3223[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3223 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3224 -> 1745[label="",style="dashed", color="red", weight=0]; 3224[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3224 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3225 -> 1746[label="",style="dashed", color="red", weight=0]; 3225[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3225 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3226 -> 1747[label="",style="dashed", color="red", weight=0]; 3226[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3226 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3227 -> 1748[label="",style="dashed", color="red", weight=0]; 3227[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3227 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3228 -> 1749[label="",style="dashed", color="red", weight=0]; 3228[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3228 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3229 -> 1750[label="",style="dashed", color="red", weight=0]; 3229[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3229 -> 3421[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3230 -> 1751[label="",style="dashed", color="red", weight=0]; 3230[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3230 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3424[label="",style="dashed", color="magenta", weight=3]; 3231 -> 1752[label="",style="dashed", color="red", weight=0]; 3231[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3231 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3231 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3232 -> 1753[label="",style="dashed", color="red", weight=0]; 3232[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3232 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3232 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3233 -> 1754[label="",style="dashed", color="red", weight=0]; 3233[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3233 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3233 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3234 -> 1755[label="",style="dashed", color="red", weight=0]; 3234[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3234 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3235 -> 1756[label="",style="dashed", color="red", weight=0]; 3235[label="yvy1000 < yvy1010",fontsize=16,color="magenta"];3235 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3235 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3236[label="yvy1000 == yvy1010",fontsize=16,color="blue",shape="box"];4985[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4985[label="",style="solid", color="blue", weight=9]; 4985 -> 3435[label="",style="solid", color="blue", weight=3]; 4986[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4986[label="",style="solid", color="blue", weight=9]; 4986 -> 3436[label="",style="solid", color="blue", weight=3]; 4987[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4987[label="",style="solid", color="blue", weight=9]; 4987 -> 3437[label="",style="solid", color="blue", weight=3]; 4988[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4988[label="",style="solid", color="blue", weight=9]; 4988 -> 3438[label="",style="solid", color="blue", weight=3]; 4989[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4989[label="",style="solid", color="blue", weight=9]; 4989 -> 3439[label="",style="solid", color="blue", weight=3]; 4990[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4990[label="",style="solid", color="blue", weight=9]; 4990 -> 3440[label="",style="solid", color="blue", weight=3]; 4991[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4991[label="",style="solid", color="blue", weight=9]; 4991 -> 3441[label="",style="solid", color="blue", weight=3]; 4992[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4992[label="",style="solid", color="blue", weight=9]; 4992 -> 3442[label="",style="solid", color="blue", weight=3]; 4993[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4993[label="",style="solid", color="blue", weight=9]; 4993 -> 3443[label="",style="solid", color="blue", weight=3]; 4994[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4994[label="",style="solid", color="blue", weight=9]; 4994 -> 3444[label="",style="solid", color="blue", weight=3]; 4995[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4995[label="",style="solid", color="blue", weight=9]; 4995 -> 3445[label="",style="solid", color="blue", weight=3]; 4996[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4996[label="",style="solid", color="blue", weight=9]; 4996 -> 3446[label="",style="solid", color="blue", weight=3]; 4997[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4997[label="",style="solid", color="blue", weight=9]; 4997 -> 3447[label="",style="solid", color="blue", weight=3]; 4998[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4998[label="",style="solid", color="blue", weight=9]; 4998 -> 3448[label="",style="solid", color="blue", weight=3]; 3237 -> 2356[label="",style="dashed", color="red", weight=0]; 3237[label="yvy1001 < yvy1011 || yvy1001 == yvy1011 && yvy1002 <= yvy1012",fontsize=16,color="magenta"];3237 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3237 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3238[label="yvy1010",fontsize=16,color="green",shape="box"];3239[label="yvy1000",fontsize=16,color="green",shape="box"];3240[label="yvy1010",fontsize=16,color="green",shape="box"];3241[label="yvy1000",fontsize=16,color="green",shape="box"];3242[label="yvy1010",fontsize=16,color="green",shape="box"];3243[label="yvy1000",fontsize=16,color="green",shape="box"];3244[label="yvy1010",fontsize=16,color="green",shape="box"];3245[label="yvy1000",fontsize=16,color="green",shape="box"];3246[label="yvy1010",fontsize=16,color="green",shape="box"];3247[label="yvy1000",fontsize=16,color="green",shape="box"];3248[label="yvy1010",fontsize=16,color="green",shape="box"];3249[label="yvy1000",fontsize=16,color="green",shape="box"];3250[label="yvy1010",fontsize=16,color="green",shape="box"];3251[label="yvy1000",fontsize=16,color="green",shape="box"];3252[label="yvy1010",fontsize=16,color="green",shape="box"];3253[label="yvy1000",fontsize=16,color="green",shape="box"];3254[label="yvy1010",fontsize=16,color="green",shape="box"];3255[label="yvy1000",fontsize=16,color="green",shape="box"];3256[label="yvy1010",fontsize=16,color="green",shape="box"];3257[label="yvy1000",fontsize=16,color="green",shape="box"];3258[label="yvy1010",fontsize=16,color="green",shape="box"];3259[label="yvy1000",fontsize=16,color="green",shape="box"];3260[label="yvy1010",fontsize=16,color="green",shape="box"];3261[label="yvy1000",fontsize=16,color="green",shape="box"];3262[label="yvy1010",fontsize=16,color="green",shape="box"];3263[label="yvy1000",fontsize=16,color="green",shape="box"];3264[label="yvy1010",fontsize=16,color="green",shape="box"];3265[label="yvy1000",fontsize=16,color="green",shape="box"];3266[label="yvy1010",fontsize=16,color="green",shape="box"];3267[label="yvy1000",fontsize=16,color="green",shape="box"];3268[label="yvy1010",fontsize=16,color="green",shape="box"];3269[label="yvy1000",fontsize=16,color="green",shape="box"];3270[label="yvy1010",fontsize=16,color="green",shape="box"];3271[label="yvy1000",fontsize=16,color="green",shape="box"];3272[label="yvy1010",fontsize=16,color="green",shape="box"];3273[label="yvy1000",fontsize=16,color="green",shape="box"];3274[label="yvy1010",fontsize=16,color="green",shape="box"];3275[label="yvy1000",fontsize=16,color="green",shape="box"];3276[label="yvy1010",fontsize=16,color="green",shape="box"];3277[label="yvy1000",fontsize=16,color="green",shape="box"];3278[label="yvy1010",fontsize=16,color="green",shape="box"];3279[label="yvy1000",fontsize=16,color="green",shape="box"];3280[label="yvy1010",fontsize=16,color="green",shape="box"];3281[label="yvy1000",fontsize=16,color="green",shape="box"];3282[label="yvy1010",fontsize=16,color="green",shape="box"];3283[label="yvy1000",fontsize=16,color="green",shape="box"];3284[label="yvy1010",fontsize=16,color="green",shape="box"];3285[label="yvy1000",fontsize=16,color="green",shape="box"];3286[label="yvy1010",fontsize=16,color="green",shape="box"];3287[label="yvy1000",fontsize=16,color="green",shape="box"];3288[label="yvy1010",fontsize=16,color="green",shape="box"];3289[label="yvy1000",fontsize=16,color="green",shape="box"];3290[label="yvy1010",fontsize=16,color="green",shape="box"];3291[label="yvy1000",fontsize=16,color="green",shape="box"];3292[label="yvy1010",fontsize=16,color="green",shape="box"];3293[label="yvy1000",fontsize=16,color="green",shape="box"];3294[label="yvy1010",fontsize=16,color="green",shape="box"];3295[label="yvy1000",fontsize=16,color="green",shape="box"];3296[label="yvy1010",fontsize=16,color="green",shape="box"];3297[label="yvy1000",fontsize=16,color="green",shape="box"];3298[label="yvy1010",fontsize=16,color="green",shape="box"];3299[label="yvy1000",fontsize=16,color="green",shape="box"];3300[label="yvy1010",fontsize=16,color="green",shape="box"];3301[label="yvy1000",fontsize=16,color="green",shape="box"];3302[label="yvy1010",fontsize=16,color="green",shape="box"];3303[label="yvy1000",fontsize=16,color="green",shape="box"];3304[label="yvy1010",fontsize=16,color="green",shape="box"];3305[label="yvy1000",fontsize=16,color="green",shape="box"];3306[label="yvy1010",fontsize=16,color="green",shape="box"];3307[label="yvy1000",fontsize=16,color="green",shape="box"];3308[label="yvy1010",fontsize=16,color="green",shape="box"];3309[label="yvy1000",fontsize=16,color="green",shape="box"];3310[label="yvy1010",fontsize=16,color="green",shape="box"];3311[label="yvy1000",fontsize=16,color="green",shape="box"];3312[label="yvy1010",fontsize=16,color="green",shape="box"];3313[label="yvy1000",fontsize=16,color="green",shape="box"];3314[label="yvy1010",fontsize=16,color="green",shape="box"];3315[label="yvy1000",fontsize=16,color="green",shape="box"];3316[label="yvy1010",fontsize=16,color="green",shape="box"];3317[label="yvy1000",fontsize=16,color="green",shape="box"];3318[label="yvy1010",fontsize=16,color="green",shape="box"];3319[label="yvy1000",fontsize=16,color="green",shape="box"];3320[label="yvy1010",fontsize=16,color="green",shape="box"];3321[label="yvy1000",fontsize=16,color="green",shape="box"];3322[label="Zero",fontsize=16,color="green",shape="box"];3323[label="Zero",fontsize=16,color="green",shape="box"];3324 -> 2968[label="",style="dashed", color="red", weight=0]; 3324[label="primPlusNat Zero yvy5420",fontsize=16,color="magenta"];3324 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3452[label="",style="dashed", color="magenta", weight=3]; 3325[label="primMinusNat Zero (Succ yvy54200)",fontsize=16,color="black",shape="box"];3325 -> 3453[label="",style="solid", color="black", weight=3]; 3326[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3326 -> 3454[label="",style="solid", color="black", weight=3]; 3327 -> 2968[label="",style="dashed", color="red", weight=0]; 3327[label="primPlusNat yvy11820 Zero",fontsize=16,color="magenta"];3327 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3327 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3328[label="Pos (primPlusNat yvy11820 yvy5420)",fontsize=16,color="green",shape="box"];3328 -> 3457[label="",style="dashed", color="green", weight=3]; 3329[label="primMinusNat yvy11820 yvy5420",fontsize=16,color="burlywood",shape="triangle"];4999[label="yvy11820/Succ yvy118200",fontsize=10,color="white",style="solid",shape="box"];3329 -> 4999[label="",style="solid", color="burlywood", weight=9]; 4999 -> 3458[label="",style="solid", color="burlywood", weight=3]; 5000[label="yvy11820/Zero",fontsize=10,color="white",style="solid",shape="box"];3329 -> 5000[label="",style="solid", color="burlywood", weight=9]; 5000 -> 3459[label="",style="solid", color="burlywood", weight=3]; 3330[label="yvy11820",fontsize=16,color="green",shape="box"];3331 -> 3329[label="",style="dashed", color="red", weight=0]; 3331[label="primMinusNat yvy5420 yvy11820",fontsize=16,color="magenta"];3331 -> 3460[label="",style="dashed", color="magenta", weight=3]; 3331 -> 3461[label="",style="dashed", color="magenta", weight=3]; 3332[label="Neg (primPlusNat yvy11820 yvy5420)",fontsize=16,color="green",shape="box"];3332 -> 3462[label="",style="dashed", color="green", weight=3]; 4057 -> 2946[label="",style="dashed", color="red", weight=0]; 4057[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size yvy349 yvy346 yvy348)",fontsize=16,color="magenta"];4057 -> 4060[label="",style="dashed", color="magenta", weight=3]; 4057 -> 4061[label="",style="dashed", color="magenta", weight=3]; 4058[label="primPlusInt (Pos yvy3500) (FiniteMap.mkBranchRight_size yvy349 yvy346 yvy348)",fontsize=16,color="black",shape="box"];4058 -> 4062[label="",style="solid", color="black", weight=3]; 4059[label="primPlusInt (Neg yvy3500) (FiniteMap.mkBranchRight_size yvy349 yvy346 yvy348)",fontsize=16,color="black",shape="box"];4059 -> 4063[label="",style="solid", color="black", weight=3]; 3337 -> 3922[label="",style="dashed", color="red", weight=0]; 3337[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy118 yvy54",fontsize=16,color="magenta"];3337 -> 3968[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3969[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3970[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3971[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3972[label="",style="dashed", color="magenta", weight=3]; 3338[label="error []",fontsize=16,color="red",shape="box"];3339[label="FiniteMap.mkBalBranch6MkBalBranch12 yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184)",fontsize=16,color="black",shape="box"];3339 -> 3469[label="",style="solid", color="black", weight=3]; 3340 -> 2969[label="",style="dashed", color="red", weight=0]; 3340[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];3340 -> 3470[label="",style="dashed", color="magenta", weight=3]; 3341 -> 694[label="",style="dashed", color="red", weight=0]; 3341[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3341 -> 3471[label="",style="dashed", color="magenta", weight=3]; 3341 -> 3472[label="",style="dashed", color="magenta", weight=3]; 3342[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 False",fontsize=16,color="black",shape="box"];3342 -> 3473[label="",style="solid", color="black", weight=3]; 3343[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];3343 -> 3474[label="",style="solid", color="black", weight=3]; 3349[label="True",fontsize=16,color="green",shape="box"];3350[label="False",fontsize=16,color="green",shape="box"];3351[label="yvy1000",fontsize=16,color="green",shape="box"];3352[label="yvy1010",fontsize=16,color="green",shape="box"];3353[label="yvy1000",fontsize=16,color="green",shape="box"];3354[label="yvy1010",fontsize=16,color="green",shape="box"];3355[label="yvy1000",fontsize=16,color="green",shape="box"];3356[label="yvy1010",fontsize=16,color="green",shape="box"];3357[label="yvy1000",fontsize=16,color="green",shape="box"];3358[label="yvy1010",fontsize=16,color="green",shape="box"];3359[label="yvy1000",fontsize=16,color="green",shape="box"];3360[label="yvy1010",fontsize=16,color="green",shape="box"];3361[label="yvy1000",fontsize=16,color="green",shape="box"];3362[label="yvy1010",fontsize=16,color="green",shape="box"];3363[label="yvy1000",fontsize=16,color="green",shape="box"];3364[label="yvy1010",fontsize=16,color="green",shape="box"];3365[label="yvy1000",fontsize=16,color="green",shape="box"];3366[label="yvy1010",fontsize=16,color="green",shape="box"];3367[label="yvy1000",fontsize=16,color="green",shape="box"];3368[label="yvy1010",fontsize=16,color="green",shape="box"];3369[label="yvy1000",fontsize=16,color="green",shape="box"];3370[label="yvy1010",fontsize=16,color="green",shape="box"];3371[label="yvy1000",fontsize=16,color="green",shape="box"];3372[label="yvy1010",fontsize=16,color="green",shape="box"];3373[label="yvy1000",fontsize=16,color="green",shape="box"];3374[label="yvy1010",fontsize=16,color="green",shape="box"];3375[label="yvy1000",fontsize=16,color="green",shape="box"];3376[label="yvy1010",fontsize=16,color="green",shape="box"];3377[label="yvy1000",fontsize=16,color="green",shape="box"];3378[label="yvy1010",fontsize=16,color="green",shape="box"];3379 -> 896[label="",style="dashed", color="red", weight=0]; 3379[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3379 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3379 -> 3482[label="",style="dashed", color="magenta", weight=3]; 3380 -> 902[label="",style="dashed", color="red", weight=0]; 3380[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3380 -> 3483[label="",style="dashed", color="magenta", weight=3]; 3380 -> 3484[label="",style="dashed", color="magenta", weight=3]; 3381 -> 901[label="",style="dashed", color="red", weight=0]; 3381[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3381 -> 3485[label="",style="dashed", color="magenta", weight=3]; 3381 -> 3486[label="",style="dashed", color="magenta", weight=3]; 3382 -> 903[label="",style="dashed", color="red", weight=0]; 3382[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3382 -> 3487[label="",style="dashed", color="magenta", weight=3]; 3382 -> 3488[label="",style="dashed", color="magenta", weight=3]; 3383 -> 898[label="",style="dashed", color="red", weight=0]; 3383[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3383 -> 3489[label="",style="dashed", color="magenta", weight=3]; 3383 -> 3490[label="",style="dashed", color="magenta", weight=3]; 3384 -> 892[label="",style="dashed", color="red", weight=0]; 3384[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3384 -> 3491[label="",style="dashed", color="magenta", weight=3]; 3384 -> 3492[label="",style="dashed", color="magenta", weight=3]; 3385 -> 897[label="",style="dashed", color="red", weight=0]; 3385[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3385 -> 3493[label="",style="dashed", color="magenta", weight=3]; 3385 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3386 -> 891[label="",style="dashed", color="red", weight=0]; 3386[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3386 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3386 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3387 -> 893[label="",style="dashed", color="red", weight=0]; 3387[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3387 -> 3497[label="",style="dashed", color="magenta", weight=3]; 3387 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3388 -> 894[label="",style="dashed", color="red", weight=0]; 3388[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3388 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3388 -> 3500[label="",style="dashed", color="magenta", weight=3]; 3389 -> 900[label="",style="dashed", color="red", weight=0]; 3389[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3389 -> 3501[label="",style="dashed", color="magenta", weight=3]; 3389 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3390 -> 895[label="",style="dashed", color="red", weight=0]; 3390[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3390 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3390 -> 3504[label="",style="dashed", color="magenta", weight=3]; 3391 -> 904[label="",style="dashed", color="red", weight=0]; 3391[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3391 -> 3505[label="",style="dashed", color="magenta", weight=3]; 3391 -> 3506[label="",style="dashed", color="magenta", weight=3]; 3392 -> 899[label="",style="dashed", color="red", weight=0]; 3392[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3392 -> 3507[label="",style="dashed", color="magenta", weight=3]; 3392 -> 3508[label="",style="dashed", color="magenta", weight=3]; 3393 -> 1835[label="",style="dashed", color="red", weight=0]; 3393[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3393 -> 3509[label="",style="dashed", color="magenta", weight=3]; 3393 -> 3510[label="",style="dashed", color="magenta", weight=3]; 3394 -> 1836[label="",style="dashed", color="red", weight=0]; 3394[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3394 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3394 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3395 -> 1837[label="",style="dashed", color="red", weight=0]; 3395[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3395 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3395 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3396 -> 1838[label="",style="dashed", color="red", weight=0]; 3396[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3396 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3396 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3397 -> 1839[label="",style="dashed", color="red", weight=0]; 3397[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3397 -> 3517[label="",style="dashed", color="magenta", weight=3]; 3397 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3398 -> 1840[label="",style="dashed", color="red", weight=0]; 3398[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3398 -> 3519[label="",style="dashed", color="magenta", weight=3]; 3398 -> 3520[label="",style="dashed", color="magenta", weight=3]; 3399 -> 1841[label="",style="dashed", color="red", weight=0]; 3399[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3399 -> 3521[label="",style="dashed", color="magenta", weight=3]; 3399 -> 3522[label="",style="dashed", color="magenta", weight=3]; 3400 -> 1842[label="",style="dashed", color="red", weight=0]; 3400[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3400 -> 3523[label="",style="dashed", color="magenta", weight=3]; 3400 -> 3524[label="",style="dashed", color="magenta", weight=3]; 3401 -> 1843[label="",style="dashed", color="red", weight=0]; 3401[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3401 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3401 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3402 -> 1844[label="",style="dashed", color="red", weight=0]; 3402[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3402 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3402 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3403 -> 1845[label="",style="dashed", color="red", weight=0]; 3403[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3403 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3403 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3404 -> 1846[label="",style="dashed", color="red", weight=0]; 3404[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3404 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3404 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3405 -> 1847[label="",style="dashed", color="red", weight=0]; 3405[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3405 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3405 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3406 -> 1848[label="",style="dashed", color="red", weight=0]; 3406[label="yvy1001 <= yvy1011",fontsize=16,color="magenta"];3406 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3406 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3407[label="yvy1000",fontsize=16,color="green",shape="box"];3408[label="yvy1010",fontsize=16,color="green",shape="box"];3409[label="yvy1000",fontsize=16,color="green",shape="box"];3410[label="yvy1010",fontsize=16,color="green",shape="box"];3411[label="yvy1000",fontsize=16,color="green",shape="box"];3412[label="yvy1010",fontsize=16,color="green",shape="box"];3413[label="yvy1000",fontsize=16,color="green",shape="box"];3414[label="yvy1010",fontsize=16,color="green",shape="box"];3415[label="yvy1000",fontsize=16,color="green",shape="box"];3416[label="yvy1010",fontsize=16,color="green",shape="box"];3417[label="yvy1000",fontsize=16,color="green",shape="box"];3418[label="yvy1010",fontsize=16,color="green",shape="box"];3419[label="yvy1000",fontsize=16,color="green",shape="box"];3420[label="yvy1010",fontsize=16,color="green",shape="box"];3421[label="yvy1000",fontsize=16,color="green",shape="box"];3422[label="yvy1010",fontsize=16,color="green",shape="box"];3423[label="yvy1000",fontsize=16,color="green",shape="box"];3424[label="yvy1010",fontsize=16,color="green",shape="box"];3425[label="yvy1000",fontsize=16,color="green",shape="box"];3426[label="yvy1010",fontsize=16,color="green",shape="box"];3427[label="yvy1000",fontsize=16,color="green",shape="box"];3428[label="yvy1010",fontsize=16,color="green",shape="box"];3429[label="yvy1000",fontsize=16,color="green",shape="box"];3430[label="yvy1010",fontsize=16,color="green",shape="box"];3431[label="yvy1000",fontsize=16,color="green",shape="box"];3432[label="yvy1010",fontsize=16,color="green",shape="box"];3433[label="yvy1000",fontsize=16,color="green",shape="box"];3434[label="yvy1010",fontsize=16,color="green",shape="box"];3435 -> 896[label="",style="dashed", color="red", weight=0]; 3435[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3435 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3435 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3436 -> 902[label="",style="dashed", color="red", weight=0]; 3436[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3436 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3436 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3437 -> 901[label="",style="dashed", color="red", weight=0]; 3437[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3437 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3437 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3438 -> 903[label="",style="dashed", color="red", weight=0]; 3438[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3438 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3438 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3439 -> 898[label="",style="dashed", color="red", weight=0]; 3439[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3439 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3439 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3440 -> 892[label="",style="dashed", color="red", weight=0]; 3440[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3440 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3440 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3441 -> 897[label="",style="dashed", color="red", weight=0]; 3441[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3441 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3441 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3442 -> 891[label="",style="dashed", color="red", weight=0]; 3442[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3442 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3442 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3443 -> 893[label="",style="dashed", color="red", weight=0]; 3443[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3443 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3443 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3444 -> 894[label="",style="dashed", color="red", weight=0]; 3444[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3444 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3444 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3445 -> 900[label="",style="dashed", color="red", weight=0]; 3445[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3445 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3558[label="",style="dashed", color="magenta", weight=3]; 3446 -> 895[label="",style="dashed", color="red", weight=0]; 3446[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3446 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3446 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3447 -> 904[label="",style="dashed", color="red", weight=0]; 3447[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3447 -> 3561[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3562[label="",style="dashed", color="magenta", weight=3]; 3448 -> 899[label="",style="dashed", color="red", weight=0]; 3448[label="yvy1000 == yvy1010",fontsize=16,color="magenta"];3448 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3448 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3449[label="yvy1001 < yvy1011",fontsize=16,color="blue",shape="box"];5001[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5001[label="",style="solid", color="blue", weight=9]; 5001 -> 3565[label="",style="solid", color="blue", weight=3]; 5002[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5002[label="",style="solid", color="blue", weight=9]; 5002 -> 3566[label="",style="solid", color="blue", weight=3]; 5003[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5003[label="",style="solid", color="blue", weight=9]; 5003 -> 3567[label="",style="solid", color="blue", weight=3]; 5004[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5004[label="",style="solid", color="blue", weight=9]; 5004 -> 3568[label="",style="solid", color="blue", weight=3]; 5005[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5005[label="",style="solid", color="blue", weight=9]; 5005 -> 3569[label="",style="solid", color="blue", weight=3]; 5006[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5006[label="",style="solid", color="blue", weight=9]; 5006 -> 3570[label="",style="solid", color="blue", weight=3]; 5007[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5007[label="",style="solid", color="blue", weight=9]; 5007 -> 3571[label="",style="solid", color="blue", weight=3]; 5008[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5008[label="",style="solid", color="blue", weight=9]; 5008 -> 3572[label="",style="solid", color="blue", weight=3]; 5009[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5009[label="",style="solid", color="blue", weight=9]; 5009 -> 3573[label="",style="solid", color="blue", weight=3]; 5010[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5010[label="",style="solid", color="blue", weight=9]; 5010 -> 3574[label="",style="solid", color="blue", weight=3]; 5011[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5011[label="",style="solid", color="blue", weight=9]; 5011 -> 3575[label="",style="solid", color="blue", weight=3]; 5012[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5012[label="",style="solid", color="blue", weight=9]; 5012 -> 3576[label="",style="solid", color="blue", weight=3]; 5013[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5013[label="",style="solid", color="blue", weight=9]; 5013 -> 3577[label="",style="solid", color="blue", weight=3]; 5014[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5014[label="",style="solid", color="blue", weight=9]; 5014 -> 3578[label="",style="solid", color="blue", weight=3]; 3450 -> 1398[label="",style="dashed", color="red", weight=0]; 3450[label="yvy1001 == yvy1011 && yvy1002 <= yvy1012",fontsize=16,color="magenta"];3450 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3450 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3451[label="yvy5420",fontsize=16,color="green",shape="box"];3452[label="Zero",fontsize=16,color="green",shape="box"];3453[label="Neg (Succ yvy54200)",fontsize=16,color="green",shape="box"];3454[label="Pos Zero",fontsize=16,color="green",shape="box"];3455[label="Zero",fontsize=16,color="green",shape="box"];3456[label="yvy11820",fontsize=16,color="green",shape="box"];3457 -> 2968[label="",style="dashed", color="red", weight=0]; 3457[label="primPlusNat yvy11820 yvy5420",fontsize=16,color="magenta"];3457 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3458[label="primMinusNat (Succ yvy118200) yvy5420",fontsize=16,color="burlywood",shape="box"];5015[label="yvy5420/Succ yvy54200",fontsize=10,color="white",style="solid",shape="box"];3458 -> 5015[label="",style="solid", color="burlywood", weight=9]; 5015 -> 3583[label="",style="solid", color="burlywood", weight=3]; 5016[label="yvy5420/Zero",fontsize=10,color="white",style="solid",shape="box"];3458 -> 5016[label="",style="solid", color="burlywood", weight=9]; 5016 -> 3584[label="",style="solid", color="burlywood", weight=3]; 3459[label="primMinusNat Zero yvy5420",fontsize=16,color="burlywood",shape="box"];5017[label="yvy5420/Succ yvy54200",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5017[label="",style="solid", color="burlywood", weight=9]; 5017 -> 3585[label="",style="solid", color="burlywood", weight=3]; 5018[label="yvy5420/Zero",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5018[label="",style="solid", color="burlywood", weight=9]; 5018 -> 3586[label="",style="solid", color="burlywood", weight=3]; 3460[label="yvy5420",fontsize=16,color="green",shape="box"];3461[label="yvy11820",fontsize=16,color="green",shape="box"];3462 -> 2968[label="",style="dashed", color="red", weight=0]; 3462[label="primPlusNat yvy11820 yvy5420",fontsize=16,color="magenta"];3462 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3588[label="",style="dashed", color="magenta", weight=3]; 4060[label="FiniteMap.mkBranchLeft_size yvy349 yvy346 yvy348",fontsize=16,color="black",shape="box"];4060 -> 4064[label="",style="solid", color="black", weight=3]; 4061[label="Succ Zero",fontsize=16,color="green",shape="box"];4062 -> 2946[label="",style="dashed", color="red", weight=0]; 4062[label="primPlusInt (Pos yvy3500) (FiniteMap.sizeFM yvy349)",fontsize=16,color="magenta"];4062 -> 4065[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4066[label="",style="dashed", color="magenta", weight=3]; 4063 -> 2948[label="",style="dashed", color="red", weight=0]; 4063[label="primPlusInt (Neg yvy3500) (FiniteMap.sizeFM yvy349)",fontsize=16,color="magenta"];4063 -> 4067[label="",style="dashed", color="magenta", weight=3]; 4063 -> 4068[label="",style="dashed", color="magenta", weight=3]; 3968[label="yvy51",fontsize=16,color="green",shape="box"];3969[label="yvy118",fontsize=16,color="green",shape="box"];3970[label="yvy50",fontsize=16,color="green",shape="box"];3971[label="yvy54",fontsize=16,color="green",shape="box"];3972[label="Succ Zero",fontsize=16,color="green",shape="box"];3469 -> 3590[label="",style="dashed", color="red", weight=0]; 3469[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 yvy1180 yvy1181 yvy1182 yvy1183 yvy1184 (FiniteMap.sizeFM yvy1184 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1183)",fontsize=16,color="magenta"];3469 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3470[label="yvy543",fontsize=16,color="green",shape="box"];3471[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3472 -> 2969[label="",style="dashed", color="red", weight=0]; 3472[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3472 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3473[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 otherwise",fontsize=16,color="black",shape="box"];3473 -> 3593[label="",style="solid", color="black", weight=3]; 3474[label="FiniteMap.mkBalBranch6Single_L yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];3474 -> 3594[label="",style="solid", color="black", weight=3]; 3481[label="yvy1000",fontsize=16,color="green",shape="box"];3482[label="yvy1010",fontsize=16,color="green",shape="box"];3483[label="yvy1000",fontsize=16,color="green",shape="box"];3484[label="yvy1010",fontsize=16,color="green",shape="box"];3485[label="yvy1000",fontsize=16,color="green",shape="box"];3486[label="yvy1010",fontsize=16,color="green",shape="box"];3487[label="yvy1000",fontsize=16,color="green",shape="box"];3488[label="yvy1010",fontsize=16,color="green",shape="box"];3489[label="yvy1000",fontsize=16,color="green",shape="box"];3490[label="yvy1010",fontsize=16,color="green",shape="box"];3491[label="yvy1000",fontsize=16,color="green",shape="box"];3492[label="yvy1010",fontsize=16,color="green",shape="box"];3493[label="yvy1000",fontsize=16,color="green",shape="box"];3494[label="yvy1010",fontsize=16,color="green",shape="box"];3495[label="yvy1000",fontsize=16,color="green",shape="box"];3496[label="yvy1010",fontsize=16,color="green",shape="box"];3497[label="yvy1000",fontsize=16,color="green",shape="box"];3498[label="yvy1010",fontsize=16,color="green",shape="box"];3499[label="yvy1000",fontsize=16,color="green",shape="box"];3500[label="yvy1010",fontsize=16,color="green",shape="box"];3501[label="yvy1000",fontsize=16,color="green",shape="box"];3502[label="yvy1010",fontsize=16,color="green",shape="box"];3503[label="yvy1000",fontsize=16,color="green",shape="box"];3504[label="yvy1010",fontsize=16,color="green",shape="box"];3505[label="yvy1000",fontsize=16,color="green",shape="box"];3506[label="yvy1010",fontsize=16,color="green",shape="box"];3507[label="yvy1000",fontsize=16,color="green",shape="box"];3508[label="yvy1010",fontsize=16,color="green",shape="box"];3509[label="yvy1011",fontsize=16,color="green",shape="box"];3510[label="yvy1001",fontsize=16,color="green",shape="box"];3511[label="yvy1011",fontsize=16,color="green",shape="box"];3512[label="yvy1001",fontsize=16,color="green",shape="box"];3513[label="yvy1011",fontsize=16,color="green",shape="box"];3514[label="yvy1001",fontsize=16,color="green",shape="box"];3515[label="yvy1011",fontsize=16,color="green",shape="box"];3516[label="yvy1001",fontsize=16,color="green",shape="box"];3517[label="yvy1011",fontsize=16,color="green",shape="box"];3518[label="yvy1001",fontsize=16,color="green",shape="box"];3519[label="yvy1011",fontsize=16,color="green",shape="box"];3520[label="yvy1001",fontsize=16,color="green",shape="box"];3521[label="yvy1011",fontsize=16,color="green",shape="box"];3522[label="yvy1001",fontsize=16,color="green",shape="box"];3523[label="yvy1011",fontsize=16,color="green",shape="box"];3524[label="yvy1001",fontsize=16,color="green",shape="box"];3525[label="yvy1011",fontsize=16,color="green",shape="box"];3526[label="yvy1001",fontsize=16,color="green",shape="box"];3527[label="yvy1011",fontsize=16,color="green",shape="box"];3528[label="yvy1001",fontsize=16,color="green",shape="box"];3529[label="yvy1011",fontsize=16,color="green",shape="box"];3530[label="yvy1001",fontsize=16,color="green",shape="box"];3531[label="yvy1011",fontsize=16,color="green",shape="box"];3532[label="yvy1001",fontsize=16,color="green",shape="box"];3533[label="yvy1011",fontsize=16,color="green",shape="box"];3534[label="yvy1001",fontsize=16,color="green",shape="box"];3535[label="yvy1011",fontsize=16,color="green",shape="box"];3536[label="yvy1001",fontsize=16,color="green",shape="box"];3537[label="yvy1000",fontsize=16,color="green",shape="box"];3538[label="yvy1010",fontsize=16,color="green",shape="box"];3539[label="yvy1000",fontsize=16,color="green",shape="box"];3540[label="yvy1010",fontsize=16,color="green",shape="box"];3541[label="yvy1000",fontsize=16,color="green",shape="box"];3542[label="yvy1010",fontsize=16,color="green",shape="box"];3543[label="yvy1000",fontsize=16,color="green",shape="box"];3544[label="yvy1010",fontsize=16,color="green",shape="box"];3545[label="yvy1000",fontsize=16,color="green",shape="box"];3546[label="yvy1010",fontsize=16,color="green",shape="box"];3547[label="yvy1000",fontsize=16,color="green",shape="box"];3548[label="yvy1010",fontsize=16,color="green",shape="box"];3549[label="yvy1000",fontsize=16,color="green",shape="box"];3550[label="yvy1010",fontsize=16,color="green",shape="box"];3551[label="yvy1000",fontsize=16,color="green",shape="box"];3552[label="yvy1010",fontsize=16,color="green",shape="box"];3553[label="yvy1000",fontsize=16,color="green",shape="box"];3554[label="yvy1010",fontsize=16,color="green",shape="box"];3555[label="yvy1000",fontsize=16,color="green",shape="box"];3556[label="yvy1010",fontsize=16,color="green",shape="box"];3557[label="yvy1000",fontsize=16,color="green",shape="box"];3558[label="yvy1010",fontsize=16,color="green",shape="box"];3559[label="yvy1000",fontsize=16,color="green",shape="box"];3560[label="yvy1010",fontsize=16,color="green",shape="box"];3561[label="yvy1000",fontsize=16,color="green",shape="box"];3562[label="yvy1010",fontsize=16,color="green",shape="box"];3563[label="yvy1000",fontsize=16,color="green",shape="box"];3564[label="yvy1010",fontsize=16,color="green",shape="box"];3565 -> 1743[label="",style="dashed", color="red", weight=0]; 3565[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3565 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3566 -> 1744[label="",style="dashed", color="red", weight=0]; 3566[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3566 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3566 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3567 -> 1745[label="",style="dashed", color="red", weight=0]; 3567[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3567 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3568 -> 1746[label="",style="dashed", color="red", weight=0]; 3568[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3568 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3568 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3569 -> 1747[label="",style="dashed", color="red", weight=0]; 3569[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3569 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3570 -> 1748[label="",style="dashed", color="red", weight=0]; 3570[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3570 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3570 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3571 -> 1749[label="",style="dashed", color="red", weight=0]; 3571[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3571 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3572 -> 1750[label="",style="dashed", color="red", weight=0]; 3572[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3572 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3572 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3573 -> 1751[label="",style="dashed", color="red", weight=0]; 3573[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3573 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3573 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3574 -> 1752[label="",style="dashed", color="red", weight=0]; 3574[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3574 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3574 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3575 -> 1753[label="",style="dashed", color="red", weight=0]; 3575[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3575 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3576 -> 1754[label="",style="dashed", color="red", weight=0]; 3576[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3576 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3577 -> 1755[label="",style="dashed", color="red", weight=0]; 3577[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3577 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3577 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3578 -> 1756[label="",style="dashed", color="red", weight=0]; 3578[label="yvy1001 < yvy1011",fontsize=16,color="magenta"];3578 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3579[label="yvy1001 == yvy1011",fontsize=16,color="blue",shape="box"];5019[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5019[label="",style="solid", color="blue", weight=9]; 5019 -> 3647[label="",style="solid", color="blue", weight=3]; 5020[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 3648[label="",style="solid", color="blue", weight=3]; 5021[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5021[label="",style="solid", color="blue", weight=9]; 5021 -> 3649[label="",style="solid", color="blue", weight=3]; 5022[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5022[label="",style="solid", color="blue", weight=9]; 5022 -> 3650[label="",style="solid", color="blue", weight=3]; 5023[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5023[label="",style="solid", color="blue", weight=9]; 5023 -> 3651[label="",style="solid", color="blue", weight=3]; 5024[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5024[label="",style="solid", color="blue", weight=9]; 5024 -> 3652[label="",style="solid", color="blue", weight=3]; 5025[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5025[label="",style="solid", color="blue", weight=9]; 5025 -> 3653[label="",style="solid", color="blue", weight=3]; 5026[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5026[label="",style="solid", color="blue", weight=9]; 5026 -> 3654[label="",style="solid", color="blue", weight=3]; 5027[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5027[label="",style="solid", color="blue", weight=9]; 5027 -> 3655[label="",style="solid", color="blue", weight=3]; 5028[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5028[label="",style="solid", color="blue", weight=9]; 5028 -> 3656[label="",style="solid", color="blue", weight=3]; 5029[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5029[label="",style="solid", color="blue", weight=9]; 5029 -> 3657[label="",style="solid", color="blue", weight=3]; 5030[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5030[label="",style="solid", color="blue", weight=9]; 5030 -> 3658[label="",style="solid", color="blue", weight=3]; 5031[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5031[label="",style="solid", color="blue", weight=9]; 5031 -> 3659[label="",style="solid", color="blue", weight=3]; 5032[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5032[label="",style="solid", color="blue", weight=9]; 5032 -> 3660[label="",style="solid", color="blue", weight=3]; 3580[label="yvy1002 <= yvy1012",fontsize=16,color="blue",shape="box"];5033[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5033[label="",style="solid", color="blue", weight=9]; 5033 -> 3661[label="",style="solid", color="blue", weight=3]; 5034[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5034[label="",style="solid", color="blue", weight=9]; 5034 -> 3662[label="",style="solid", color="blue", weight=3]; 5035[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5035[label="",style="solid", color="blue", weight=9]; 5035 -> 3663[label="",style="solid", color="blue", weight=3]; 5036[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5036[label="",style="solid", color="blue", weight=9]; 5036 -> 3664[label="",style="solid", color="blue", weight=3]; 5037[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5037[label="",style="solid", color="blue", weight=9]; 5037 -> 3665[label="",style="solid", color="blue", weight=3]; 5038[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5038[label="",style="solid", color="blue", weight=9]; 5038 -> 3666[label="",style="solid", color="blue", weight=3]; 5039[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5039[label="",style="solid", color="blue", weight=9]; 5039 -> 3667[label="",style="solid", color="blue", weight=3]; 5040[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5040[label="",style="solid", color="blue", weight=9]; 5040 -> 3668[label="",style="solid", color="blue", weight=3]; 5041[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5041[label="",style="solid", color="blue", weight=9]; 5041 -> 3669[label="",style="solid", color="blue", weight=3]; 5042[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5042[label="",style="solid", color="blue", weight=9]; 5042 -> 3670[label="",style="solid", color="blue", weight=3]; 5043[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5043[label="",style="solid", color="blue", weight=9]; 5043 -> 3671[label="",style="solid", color="blue", weight=3]; 5044[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5044[label="",style="solid", color="blue", weight=9]; 5044 -> 3672[label="",style="solid", color="blue", weight=3]; 5045[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5045[label="",style="solid", color="blue", weight=9]; 5045 -> 3673[label="",style="solid", color="blue", weight=3]; 5046[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5046[label="",style="solid", color="blue", weight=9]; 5046 -> 3674[label="",style="solid", color="blue", weight=3]; 3581[label="yvy5420",fontsize=16,color="green",shape="box"];3582[label="yvy11820",fontsize=16,color="green",shape="box"];3583[label="primMinusNat (Succ yvy118200) (Succ yvy54200)",fontsize=16,color="black",shape="box"];3583 -> 3675[label="",style="solid", color="black", weight=3]; 3584[label="primMinusNat (Succ yvy118200) Zero",fontsize=16,color="black",shape="box"];3584 -> 3676[label="",style="solid", color="black", weight=3]; 3585[label="primMinusNat Zero (Succ yvy54200)",fontsize=16,color="black",shape="box"];3585 -> 3677[label="",style="solid", color="black", weight=3]; 3586[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3586 -> 3678[label="",style="solid", color="black", weight=3]; 3587[label="yvy5420",fontsize=16,color="green",shape="box"];3588[label="yvy11820",fontsize=16,color="green",shape="box"];4064[label="FiniteMap.sizeFM yvy348",fontsize=16,color="burlywood",shape="triangle"];5047[label="yvy348/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4064 -> 5047[label="",style="solid", color="burlywood", weight=9]; 5047 -> 4069[label="",style="solid", color="burlywood", weight=3]; 5048[label="yvy348/FiniteMap.Branch yvy3480 yvy3481 yvy3482 yvy3483 yvy3484",fontsize=10,color="white",style="solid",shape="box"];4064 -> 5048[label="",style="solid", color="burlywood", weight=9]; 5048 -> 4070[label="",style="solid", color="burlywood", weight=3]; 4065 -> 4064[label="",style="dashed", color="red", weight=0]; 4065[label="FiniteMap.sizeFM yvy349",fontsize=16,color="magenta"];4065 -> 4071[label="",style="dashed", color="magenta", weight=3]; 4066[label="yvy3500",fontsize=16,color="green",shape="box"];4067 -> 4064[label="",style="dashed", color="red", weight=0]; 4067[label="FiniteMap.sizeFM yvy349",fontsize=16,color="magenta"];4067 -> 4072[label="",style="dashed", color="magenta", weight=3]; 4068[label="yvy3500",fontsize=16,color="green",shape="box"];3591 -> 1745[label="",style="dashed", color="red", weight=0]; 3591[label="FiniteMap.sizeFM yvy1184 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1183",fontsize=16,color="magenta"];3591 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3591 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3590[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 yvy1180 yvy1181 yvy1182 yvy1183 yvy1184 yvy305",fontsize=16,color="burlywood",shape="triangle"];5049[label="yvy305/False",fontsize=10,color="white",style="solid",shape="box"];3590 -> 5049[label="",style="solid", color="burlywood", weight=9]; 5049 -> 3681[label="",style="solid", color="burlywood", weight=3]; 5050[label="yvy305/True",fontsize=10,color="white",style="solid",shape="box"];3590 -> 5050[label="",style="solid", color="burlywood", weight=9]; 5050 -> 3682[label="",style="solid", color="burlywood", weight=3]; 3592[label="yvy544",fontsize=16,color="green",shape="box"];3593[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];3593 -> 3683[label="",style="solid", color="black", weight=3]; 3594 -> 3922[label="",style="dashed", color="red", weight=0]; 3594[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy118 yvy543) yvy544",fontsize=16,color="magenta"];3594 -> 3973[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3974[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3975[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3619[label="yvy1001",fontsize=16,color="green",shape="box"];3620[label="yvy1011",fontsize=16,color="green",shape="box"];3621[label="yvy1001",fontsize=16,color="green",shape="box"];3622[label="yvy1011",fontsize=16,color="green",shape="box"];3623[label="yvy1001",fontsize=16,color="green",shape="box"];3624[label="yvy1011",fontsize=16,color="green",shape="box"];3625[label="yvy1001",fontsize=16,color="green",shape="box"];3626[label="yvy1011",fontsize=16,color="green",shape="box"];3627[label="yvy1001",fontsize=16,color="green",shape="box"];3628[label="yvy1011",fontsize=16,color="green",shape="box"];3629[label="yvy1001",fontsize=16,color="green",shape="box"];3630[label="yvy1011",fontsize=16,color="green",shape="box"];3631[label="yvy1001",fontsize=16,color="green",shape="box"];3632[label="yvy1011",fontsize=16,color="green",shape="box"];3633[label="yvy1001",fontsize=16,color="green",shape="box"];3634[label="yvy1011",fontsize=16,color="green",shape="box"];3635[label="yvy1001",fontsize=16,color="green",shape="box"];3636[label="yvy1011",fontsize=16,color="green",shape="box"];3637[label="yvy1001",fontsize=16,color="green",shape="box"];3638[label="yvy1011",fontsize=16,color="green",shape="box"];3639[label="yvy1001",fontsize=16,color="green",shape="box"];3640[label="yvy1011",fontsize=16,color="green",shape="box"];3641[label="yvy1001",fontsize=16,color="green",shape="box"];3642[label="yvy1011",fontsize=16,color="green",shape="box"];3643[label="yvy1001",fontsize=16,color="green",shape="box"];3644[label="yvy1011",fontsize=16,color="green",shape="box"];3645[label="yvy1001",fontsize=16,color="green",shape="box"];3646[label="yvy1011",fontsize=16,color="green",shape="box"];3647 -> 896[label="",style="dashed", color="red", weight=0]; 3647[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3647 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3647 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3648 -> 902[label="",style="dashed", color="red", weight=0]; 3648[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3648 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3649 -> 901[label="",style="dashed", color="red", weight=0]; 3649[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3649 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3649 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3650 -> 903[label="",style="dashed", color="red", weight=0]; 3650[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3650 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3650 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3651 -> 898[label="",style="dashed", color="red", weight=0]; 3651[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3651 -> 3709[label="",style="dashed", color="magenta", weight=3]; 3651 -> 3710[label="",style="dashed", color="magenta", weight=3]; 3652 -> 892[label="",style="dashed", color="red", weight=0]; 3652[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3652 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3652 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3653 -> 897[label="",style="dashed", color="red", weight=0]; 3653[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3653 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3653 -> 3714[label="",style="dashed", color="magenta", weight=3]; 3654 -> 891[label="",style="dashed", color="red", weight=0]; 3654[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3654 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3654 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3655 -> 893[label="",style="dashed", color="red", weight=0]; 3655[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3655 -> 3717[label="",style="dashed", color="magenta", weight=3]; 3655 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3656 -> 894[label="",style="dashed", color="red", weight=0]; 3656[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3656 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3656 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3657 -> 900[label="",style="dashed", color="red", weight=0]; 3657[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3657 -> 3721[label="",style="dashed", color="magenta", weight=3]; 3657 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3658 -> 895[label="",style="dashed", color="red", weight=0]; 3658[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3658 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3658 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3659 -> 904[label="",style="dashed", color="red", weight=0]; 3659[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3659 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3659 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3660 -> 899[label="",style="dashed", color="red", weight=0]; 3660[label="yvy1001 == yvy1011",fontsize=16,color="magenta"];3660 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3660 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3661 -> 1835[label="",style="dashed", color="red", weight=0]; 3661[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3661 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3661 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3662 -> 1836[label="",style="dashed", color="red", weight=0]; 3662[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3662 -> 3731[label="",style="dashed", color="magenta", weight=3]; 3662 -> 3732[label="",style="dashed", color="magenta", weight=3]; 3663 -> 1837[label="",style="dashed", color="red", weight=0]; 3663[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3663 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3663 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3664 -> 1838[label="",style="dashed", color="red", weight=0]; 3664[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3664 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3664 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3665 -> 1839[label="",style="dashed", color="red", weight=0]; 3665[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3665 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3666 -> 1840[label="",style="dashed", color="red", weight=0]; 3666[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3666 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3666 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3667 -> 1841[label="",style="dashed", color="red", weight=0]; 3667[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3667 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3667 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3668 -> 1842[label="",style="dashed", color="red", weight=0]; 3668[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3668 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3669 -> 1843[label="",style="dashed", color="red", weight=0]; 3669[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3669 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3669 -> 3746[label="",style="dashed", color="magenta", weight=3]; 3670 -> 1844[label="",style="dashed", color="red", weight=0]; 3670[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3670 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3670 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3671 -> 1845[label="",style="dashed", color="red", weight=0]; 3671[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3671 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3671 -> 3750[label="",style="dashed", color="magenta", weight=3]; 3672 -> 1846[label="",style="dashed", color="red", weight=0]; 3672[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3672 -> 3751[label="",style="dashed", color="magenta", weight=3]; 3672 -> 3752[label="",style="dashed", color="magenta", weight=3]; 3673 -> 1847[label="",style="dashed", color="red", weight=0]; 3673[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3673 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3673 -> 3754[label="",style="dashed", color="magenta", weight=3]; 3674 -> 1848[label="",style="dashed", color="red", weight=0]; 3674[label="yvy1002 <= yvy1012",fontsize=16,color="magenta"];3674 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3674 -> 3756[label="",style="dashed", color="magenta", weight=3]; 3675 -> 3329[label="",style="dashed", color="red", weight=0]; 3675[label="primMinusNat yvy118200 yvy54200",fontsize=16,color="magenta"];3675 -> 3757[label="",style="dashed", color="magenta", weight=3]; 3675 -> 3758[label="",style="dashed", color="magenta", weight=3]; 3676[label="Pos (Succ yvy118200)",fontsize=16,color="green",shape="box"];3677[label="Neg (Succ yvy54200)",fontsize=16,color="green",shape="box"];3678[label="Pos Zero",fontsize=16,color="green",shape="box"];4069[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4069 -> 4073[label="",style="solid", color="black", weight=3]; 4070[label="FiniteMap.sizeFM (FiniteMap.Branch yvy3480 yvy3481 yvy3482 yvy3483 yvy3484)",fontsize=16,color="black",shape="box"];4070 -> 4074[label="",style="solid", color="black", weight=3]; 4071[label="yvy349",fontsize=16,color="green",shape="box"];4072[label="yvy349",fontsize=16,color="green",shape="box"];3679 -> 2969[label="",style="dashed", color="red", weight=0]; 3679[label="FiniteMap.sizeFM yvy1184",fontsize=16,color="magenta"];3679 -> 3759[label="",style="dashed", color="magenta", weight=3]; 3680 -> 694[label="",style="dashed", color="red", weight=0]; 3680[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1183",fontsize=16,color="magenta"];3680 -> 3760[label="",style="dashed", color="magenta", weight=3]; 3680 -> 3761[label="",style="dashed", color="magenta", weight=3]; 3681[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 yvy1180 yvy1181 yvy1182 yvy1183 yvy1184 False",fontsize=16,color="black",shape="box"];3681 -> 3762[label="",style="solid", color="black", weight=3]; 3682[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 yvy1180 yvy1181 yvy1182 yvy1183 yvy1184 True",fontsize=16,color="black",shape="box"];3682 -> 3763[label="",style="solid", color="black", weight=3]; 3683[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="burlywood",shape="box"];5051[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3683 -> 5051[label="",style="solid", color="burlywood", weight=9]; 5051 -> 3764[label="",style="solid", color="burlywood", weight=3]; 5052[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];3683 -> 5052[label="",style="solid", color="burlywood", weight=9]; 5052 -> 3765[label="",style="solid", color="burlywood", weight=3]; 3973[label="yvy541",fontsize=16,color="green",shape="box"];3974 -> 3922[label="",style="dashed", color="red", weight=0]; 3974[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy118 yvy543",fontsize=16,color="magenta"];3974 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4021[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4023[label="",style="dashed", color="magenta", weight=3]; 3975[label="yvy540",fontsize=16,color="green",shape="box"];3976[label="yvy544",fontsize=16,color="green",shape="box"];3977[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3701[label="yvy1001",fontsize=16,color="green",shape="box"];3702[label="yvy1011",fontsize=16,color="green",shape="box"];3703[label="yvy1001",fontsize=16,color="green",shape="box"];3704[label="yvy1011",fontsize=16,color="green",shape="box"];3705[label="yvy1001",fontsize=16,color="green",shape="box"];3706[label="yvy1011",fontsize=16,color="green",shape="box"];3707[label="yvy1001",fontsize=16,color="green",shape="box"];3708[label="yvy1011",fontsize=16,color="green",shape="box"];3709[label="yvy1001",fontsize=16,color="green",shape="box"];3710[label="yvy1011",fontsize=16,color="green",shape="box"];3711[label="yvy1001",fontsize=16,color="green",shape="box"];3712[label="yvy1011",fontsize=16,color="green",shape="box"];3713[label="yvy1001",fontsize=16,color="green",shape="box"];3714[label="yvy1011",fontsize=16,color="green",shape="box"];3715[label="yvy1001",fontsize=16,color="green",shape="box"];3716[label="yvy1011",fontsize=16,color="green",shape="box"];3717[label="yvy1001",fontsize=16,color="green",shape="box"];3718[label="yvy1011",fontsize=16,color="green",shape="box"];3719[label="yvy1001",fontsize=16,color="green",shape="box"];3720[label="yvy1011",fontsize=16,color="green",shape="box"];3721[label="yvy1001",fontsize=16,color="green",shape="box"];3722[label="yvy1011",fontsize=16,color="green",shape="box"];3723[label="yvy1001",fontsize=16,color="green",shape="box"];3724[label="yvy1011",fontsize=16,color="green",shape="box"];3725[label="yvy1001",fontsize=16,color="green",shape="box"];3726[label="yvy1011",fontsize=16,color="green",shape="box"];3727[label="yvy1001",fontsize=16,color="green",shape="box"];3728[label="yvy1011",fontsize=16,color="green",shape="box"];3729[label="yvy1012",fontsize=16,color="green",shape="box"];3730[label="yvy1002",fontsize=16,color="green",shape="box"];3731[label="yvy1012",fontsize=16,color="green",shape="box"];3732[label="yvy1002",fontsize=16,color="green",shape="box"];3733[label="yvy1012",fontsize=16,color="green",shape="box"];3734[label="yvy1002",fontsize=16,color="green",shape="box"];3735[label="yvy1012",fontsize=16,color="green",shape="box"];3736[label="yvy1002",fontsize=16,color="green",shape="box"];3737[label="yvy1012",fontsize=16,color="green",shape="box"];3738[label="yvy1002",fontsize=16,color="green",shape="box"];3739[label="yvy1012",fontsize=16,color="green",shape="box"];3740[label="yvy1002",fontsize=16,color="green",shape="box"];3741[label="yvy1012",fontsize=16,color="green",shape="box"];3742[label="yvy1002",fontsize=16,color="green",shape="box"];3743[label="yvy1012",fontsize=16,color="green",shape="box"];3744[label="yvy1002",fontsize=16,color="green",shape="box"];3745[label="yvy1012",fontsize=16,color="green",shape="box"];3746[label="yvy1002",fontsize=16,color="green",shape="box"];3747[label="yvy1012",fontsize=16,color="green",shape="box"];3748[label="yvy1002",fontsize=16,color="green",shape="box"];3749[label="yvy1012",fontsize=16,color="green",shape="box"];3750[label="yvy1002",fontsize=16,color="green",shape="box"];3751[label="yvy1012",fontsize=16,color="green",shape="box"];3752[label="yvy1002",fontsize=16,color="green",shape="box"];3753[label="yvy1012",fontsize=16,color="green",shape="box"];3754[label="yvy1002",fontsize=16,color="green",shape="box"];3755[label="yvy1012",fontsize=16,color="green",shape="box"];3756[label="yvy1002",fontsize=16,color="green",shape="box"];3757[label="yvy118200",fontsize=16,color="green",shape="box"];3758[label="yvy54200",fontsize=16,color="green",shape="box"];4073[label="Pos Zero",fontsize=16,color="green",shape="box"];4074[label="yvy3482",fontsize=16,color="green",shape="box"];3759[label="yvy1184",fontsize=16,color="green",shape="box"];3760[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3761 -> 2969[label="",style="dashed", color="red", weight=0]; 3761[label="FiniteMap.sizeFM yvy1183",fontsize=16,color="magenta"];3761 -> 3790[label="",style="dashed", color="magenta", weight=3]; 3762[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 yvy1180 yvy1181 yvy1182 yvy1183 yvy1184 otherwise",fontsize=16,color="black",shape="box"];3762 -> 3791[label="",style="solid", color="black", weight=3]; 3763[label="FiniteMap.mkBalBranch6Single_R yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54",fontsize=16,color="black",shape="box"];3763 -> 3792[label="",style="solid", color="black", weight=3]; 3764[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544)",fontsize=16,color="black",shape="box"];3764 -> 3793[label="",style="solid", color="black", weight=3]; 3765[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544) yvy118 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544)",fontsize=16,color="black",shape="box"];3765 -> 3794[label="",style="solid", color="black", weight=3]; 4019[label="yvy51",fontsize=16,color="green",shape="box"];4020[label="yvy118",fontsize=16,color="green",shape="box"];4021[label="yvy50",fontsize=16,color="green",shape="box"];4022[label="yvy543",fontsize=16,color="green",shape="box"];4023[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3790[label="yvy1183",fontsize=16,color="green",shape="box"];3791[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 yvy1180 yvy1181 yvy1182 yvy1183 yvy1184 True",fontsize=16,color="black",shape="box"];3791 -> 3843[label="",style="solid", color="black", weight=3]; 3792 -> 3922[label="",style="dashed", color="red", weight=0]; 3792[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) yvy1180 yvy1181 yvy1183 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy1184 yvy54)",fontsize=16,color="magenta"];3792 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3793[label="error []",fontsize=16,color="red",shape="box"];3794 -> 3922[label="",style="dashed", color="red", weight=0]; 3794[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy5430 yvy5431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy118 yvy5433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544)",fontsize=16,color="magenta"];3794 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3843[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 yvy1184) yvy54",fontsize=16,color="burlywood",shape="box"];5053[label="yvy1184/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3843 -> 5053[label="",style="solid", color="burlywood", weight=9]; 5053 -> 3866[label="",style="solid", color="burlywood", weight=3]; 5054[label="yvy1184/FiniteMap.Branch yvy11840 yvy11841 yvy11842 yvy11843 yvy11844",fontsize=10,color="white",style="solid",shape="box"];3843 -> 5054[label="",style="solid", color="burlywood", weight=9]; 5054 -> 3867[label="",style="solid", color="burlywood", weight=3]; 3983[label="yvy1181",fontsize=16,color="green",shape="box"];3984[label="yvy1183",fontsize=16,color="green",shape="box"];3985[label="yvy1180",fontsize=16,color="green",shape="box"];3986 -> 3922[label="",style="dashed", color="red", weight=0]; 3986[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy1184 yvy54",fontsize=16,color="magenta"];3986 -> 4024[label="",style="dashed", color="magenta", weight=3]; 3986 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3986 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3986 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3986 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3987[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3988[label="yvy5431",fontsize=16,color="green",shape="box"];3989 -> 3922[label="",style="dashed", color="red", weight=0]; 3989[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy118 yvy5433",fontsize=16,color="magenta"];3989 -> 4029[label="",style="dashed", color="magenta", weight=3]; 3989 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3989 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3989 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3989 -> 4033[label="",style="dashed", color="magenta", weight=3]; 3990[label="yvy5430",fontsize=16,color="green",shape="box"];3991 -> 3922[label="",style="dashed", color="red", weight=0]; 3991[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544",fontsize=16,color="magenta"];3991 -> 4034[label="",style="dashed", color="magenta", weight=3]; 3991 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3991 -> 4036[label="",style="dashed", color="magenta", weight=3]; 3991 -> 4037[label="",style="dashed", color="magenta", weight=3]; 3991 -> 4038[label="",style="dashed", color="magenta", weight=3]; 3992[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3866[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 FiniteMap.EmptyFM) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 FiniteMap.EmptyFM) yvy54",fontsize=16,color="black",shape="box"];3866 -> 3907[label="",style="solid", color="black", weight=3]; 3867[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 (FiniteMap.Branch yvy11840 yvy11841 yvy11842 yvy11843 yvy11844)) yvy54 (FiniteMap.Branch yvy1180 yvy1181 yvy1182 yvy1183 (FiniteMap.Branch yvy11840 yvy11841 yvy11842 yvy11843 yvy11844)) yvy54",fontsize=16,color="black",shape="box"];3867 -> 3908[label="",style="solid", color="black", weight=3]; 4024[label="yvy51",fontsize=16,color="green",shape="box"];4025[label="yvy1184",fontsize=16,color="green",shape="box"];4026[label="yvy50",fontsize=16,color="green",shape="box"];4027[label="yvy54",fontsize=16,color="green",shape="box"];4028[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4029[label="yvy51",fontsize=16,color="green",shape="box"];4030[label="yvy118",fontsize=16,color="green",shape="box"];4031[label="yvy50",fontsize=16,color="green",shape="box"];4032[label="yvy5433",fontsize=16,color="green",shape="box"];4033[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4034[label="yvy541",fontsize=16,color="green",shape="box"];4035[label="yvy5434",fontsize=16,color="green",shape="box"];4036[label="yvy540",fontsize=16,color="green",shape="box"];4037[label="yvy544",fontsize=16,color="green",shape="box"];4038[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3907[label="error []",fontsize=16,color="red",shape="box"];3908 -> 3922[label="",style="dashed", color="red", weight=0]; 3908[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) yvy11840 yvy11841 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy1180 yvy1181 yvy1183 yvy11843) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy11844 yvy54)",fontsize=16,color="magenta"];3908 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4006[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4007[label="",style="dashed", color="magenta", weight=3]; 4003[label="yvy11841",fontsize=16,color="green",shape="box"];4004 -> 3922[label="",style="dashed", color="red", weight=0]; 4004[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy1180 yvy1181 yvy1183 yvy11843",fontsize=16,color="magenta"];4004 -> 4039[label="",style="dashed", color="magenta", weight=3]; 4004 -> 4040[label="",style="dashed", color="magenta", weight=3]; 4004 -> 4041[label="",style="dashed", color="magenta", weight=3]; 4004 -> 4042[label="",style="dashed", color="magenta", weight=3]; 4004 -> 4043[label="",style="dashed", color="magenta", weight=3]; 4005[label="yvy11840",fontsize=16,color="green",shape="box"];4006 -> 3922[label="",style="dashed", color="red", weight=0]; 4006[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy11844 yvy54",fontsize=16,color="magenta"];4006 -> 4044[label="",style="dashed", color="magenta", weight=3]; 4006 -> 4045[label="",style="dashed", color="magenta", weight=3]; 4006 -> 4046[label="",style="dashed", color="magenta", weight=3]; 4006 -> 4047[label="",style="dashed", color="magenta", weight=3]; 4006 -> 4048[label="",style="dashed", color="magenta", weight=3]; 4007[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4039[label="yvy1181",fontsize=16,color="green",shape="box"];4040[label="yvy1183",fontsize=16,color="green",shape="box"];4041[label="yvy1180",fontsize=16,color="green",shape="box"];4042[label="yvy11843",fontsize=16,color="green",shape="box"];4043[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4044[label="yvy51",fontsize=16,color="green",shape="box"];4045[label="yvy11844",fontsize=16,color="green",shape="box"];4046[label="yvy50",fontsize=16,color="green",shape="box"];4047[label="yvy54",fontsize=16,color="green",shape="box"];4048[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat(yvy40000, yvy30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat(yvy40000, yvy30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt24(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Pos(new_primPlusNat0(new_primMulNat0(Succ(Succ(Succ(Succ(Zero)))), Succ(yvy6200)), yvy6200)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Zero), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch25(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Zero), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch23(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Neg(Zero), new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Zero), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Pos(Zero), new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt26(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch23(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Zero), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch24(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt25(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt25(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt24(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch24(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) new_mkVBalBranch3MkVBalBranch25(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt26(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch23(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch26(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) new_mkVBalBranch3MkVBalBranch26(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt27(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Neg(new_primPlusNat0(new_primMulNat0(Succ(Succ(Succ(Succ(Zero)))), Succ(yvy6200)), yvy6200)), new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) new_mkVBalBranch3MkVBalBranch23(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt27(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_lt27(yvy142, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy142, new_sizeFM(yvy60, yvy61, Neg(Zero), yvy63, yvy64, h, ba)), LT) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs12(LT, LT) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_lt24(yvy130, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy130, new_sizeFM(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64, h, ba)), LT) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs12(GT, GT) -> True new_lt25(yvy134, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy134, new_sizeFM(yvy60, yvy61, Pos(Zero), yvy63, yvy64, h, ba)), LT) new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_lt26(yvy138, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy138, new_sizeFM(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64, h, ba)), LT) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs12(EQ, EQ) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) The set Q consists of the following terms: new_sr(x0, x1) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sIZE_RATIO new_primPlusNat0(Zero, x0) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_lt24(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs12(EQ, EQ) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primPlusNat0(Succ(x0), x1) new_primMulInt(Neg(x0), Neg(x1)) new_primCmpNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_lt25(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_primPlusNat1(Zero, Zero) new_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat1(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpNat0(Succ(x0), Zero) new_esEs12(LT, GT) new_esEs12(GT, LT) new_lt26(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat1(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_compare6(x0, x1) new_mkVBalBranch3Size_r2(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPOrderProof (EQUIVALENT) We use the reduction pair processor [LPAR04,JAR06]. The following pairs can be oriented strictly and are deleted. new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Pos(new_primPlusNat0(new_primMulNat0(Succ(Succ(Succ(Succ(Zero)))), Succ(yvy6200)), yvy6200)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Zero), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Pos(Zero), new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch23(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Zero), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch23(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch26(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Neg(new_primPlusNat0(new_primMulNat0(Succ(Succ(Succ(Succ(Zero)))), Succ(yvy6200)), yvy6200)), new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch23(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt27(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) The remaining pairs can at least be oriented weakly. Used ordering: Polynomial interpretation [POLO]: POL(Branch(x_1, x_2, x_3, x_4, x_5)) = 1 + x_1 + x_2 + x_4 + x_5 POL(EQ) = 1 POL(False) = 1 POL(GT) = 1 POL(LT) = 1 POL(Neg(x_1)) = 0 POL(Pos(x_1)) = 0 POL(Succ(x_1)) = 0 POL(True) = 0 POL(Zero) = 0 POL(new_compare6(x_1, x_2)) = x_1 POL(new_esEs12(x_1, x_2)) = 0 POL(new_lt24(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = 1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_lt25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = 1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_lt26(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = 1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_lt27(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = 1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_3 + x_4 + x_5 + x_6 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_10 + x_14 + x_15 + x_2 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14)) = 1 + x_1 + x_13 + x_14 + x_2 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3MkVBalBranch11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_10 + x_14 + x_15 + x_2 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14)) = 1 + x_1 + x_13 + x_14 + x_2 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3MkVBalBranch2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_10 + x_14 + x_15 + x_2 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14)) = 1 + x_1 + x_10 + x_13 + x_14 + x_2 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14)) = 1 + x_1 + x_13 + x_14 + x_2 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3MkVBalBranch22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_1 + x_10 + x_13 + x_14 + x_15 + x_2 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch23(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14)) = 1 + x_1 + x_12 + x_13 + x_14 + x_2 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3MkVBalBranch24(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = 1 + x_1 + x_12 + x_13 + x_2 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3MkVBalBranch25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14)) = 1 + x_1 + x_10 + x_13 + x_14 + x_2 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch26(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = 1 + x_1 + x_12 + x_13 + x_2 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3Size_r(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3Size_r0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11)) = x_1 + x_10 + x_11 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3Size_r1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_mkVBalBranch3Size_r2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11)) = x_1 + x_10 + x_11 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpInt(x_1, x_2)) = 1 POL(new_primCmpNat0(x_1, x_2)) = 1 POL(new_primMulInt(x_1, x_2)) = 0 POL(new_primMulNat0(x_1, x_2)) = 0 POL(new_primPlusNat0(x_1, x_2)) = 0 POL(new_primPlusNat1(x_1, x_2)) = 0 POL(new_sIZE_RATIO) = 0 POL(new_sizeFM(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_1 + x_2 + x_4 + x_5 + x_6 + x_7 POL(new_sr(x_1, x_2)) = 0 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_primCmpNat0(Zero, Zero) -> EQ ---------------------------------------- (22) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt24(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Zero), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch25(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Zero), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch23(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Neg(Zero), new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt26(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch24(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt25(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt25(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt24(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch24(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) new_mkVBalBranch3MkVBalBranch25(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt26(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch26(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt27(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_lt27(yvy142, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy142, new_sizeFM(yvy60, yvy61, Neg(Zero), yvy63, yvy64, h, ba)), LT) new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs12(LT, LT) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_lt24(yvy130, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy130, new_sizeFM(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64, h, ba)), LT) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs12(GT, GT) -> True new_lt25(yvy134, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy134, new_sizeFM(yvy60, yvy61, Pos(Zero), yvy63, yvy64, h, ba)), LT) new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_lt26(yvy138, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy138, new_sizeFM(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64, h, ba)), LT) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs12(EQ, EQ) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) The set Q consists of the following terms: new_sr(x0, x1) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sIZE_RATIO new_primPlusNat0(Zero, x0) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_lt24(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs12(EQ, EQ) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primPlusNat0(Succ(x0), x1) new_primMulInt(Neg(x0), Neg(x1)) new_primCmpNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_lt25(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_primPlusNat1(Zero, Zero) new_esEs12(GT, GT) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat1(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpNat0(Succ(x0), Zero) new_esEs12(LT, GT) new_esEs12(GT, LT) new_lt26(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs12(LT, LT) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat1(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_compare6(x0, x1) new_mkVBalBranch3Size_r2(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (23) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 0 SCCs with 18 less nodes. ---------------------------------------- (24) TRUE ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(app(app(ty_@3, bdg), bdh), bea)), bdc), bdd)) -> new_lt1(yvy1000, yvy1010, bdg, bdh, bea) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(app(ty_@2, beg), beh), bdd) -> new_lt0(yvy1001, yvy1011, beg, beh) new_ltEs(yvy100, yvy101, bae) -> new_compare(yvy100, yvy101, bae) new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(app(ty_Either, db), dc), cb) -> new_compare5(yvy150, yvy152, db, dc) new_ltEs2(Just(yvy1000), Just(yvy1010), app(app(ty_@2, bha), bhb)) -> new_ltEs0(yvy1000, yvy1010, bha, bhb) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(app(app(ty_@3, gf), gg), gh), eh) -> new_lt1(yvy90, yvy93, gf, gg, gh) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(app(ty_@2, bcb), bcc)) -> new_ltEs0(yvy1001, yvy1011, bcb, bcc) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(app(app(ty_@3, bfa), bfb), bfc), bdd) -> new_lt1(yvy1001, yvy1011, bfa, bfb, bfc) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(app(app(ty_@3, bbb), bbc), bbd), bag) -> new_lt1(yvy1000, yvy1010, bbb, bbc, bbd) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(app(ty_Either, bbf), bbg), bag) -> new_lt3(yvy1000, yvy1010, bbf, bbg) new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(ty_[], de)) -> new_ltEs(yvy151, yvy153, de) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs1(yvy1001, yvy1011, bcd, bce, bcf) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(app(ty_@2, bcb), bcc))) -> new_ltEs0(yvy1001, yvy1011, bcb, bcc) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(app(ty_Either, bec), bed)), bdc), bdd)) -> new_lt3(yvy1000, yvy1010, bec, bed) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(app(ty_@2, bah), bba)), bag)) -> new_lt0(yvy1000, yvy1010, bah, bba) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(app(ty_@2, bfh), bga))) -> new_ltEs0(yvy1002, yvy1012, bfh, bga) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(app(ty_@2, beg), beh)), bdd)) -> new_lt0(yvy1001, yvy1011, beg, beh) new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(ty_Maybe, cah)), cab)) -> new_ltEs2(yvy1000, yvy1010, cah) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(ty_Maybe, bab)) -> new_ltEs2(yvy91, yvy94, bab) new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(app(ty_@2, df), dg)) -> new_ltEs0(yvy151, yvy153, df, dg) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(ty_[], bef), bdd) -> new_lt(yvy1001, yvy1011, bef) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(app(ty_@2, he), hf)) -> new_ltEs0(yvy91, yvy94, he, hf) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(ty_[], bdb)), bdc), bdd)) -> new_lt(yvy1000, yvy1010, bdb) new_primCompAux(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), yvy51, app(app(app(ty_@3, bc), bd), be)) -> new_compare20(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bc), new_asAs(new_esEs7(yvy4001, yvy3001, bd), new_esEs8(yvy4002, yvy3002, be))), bc, bd, be) new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(app(app(ty_@3, cbg), cbh), cca))) -> new_ltEs1(yvy1000, yvy1010, cbg, cbh, cca) new_compare1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ba, bb) -> new_compare2(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, ba), new_esEs5(yvy4001, yvy3001, bb)), ba, bb) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(app(ty_@2, gd), ge), eh) -> new_lt0(yvy90, yvy93, gd, ge) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(app(ty_@2, fa), fb), eg, eh) -> new_lt0(yvy89, yvy92, fa, fb) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(ty_Maybe, bfd), bdd) -> new_lt2(yvy1001, yvy1011, bfd) new_primCompAux(Left(yvy4000), Left(yvy3000), yvy51, app(app(ty_Either, bg), bh)) -> new_compare22(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bg), bg, bh) new_compare5(Left(yvy4000), Left(yvy3000), bg, bh) -> new_compare22(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bg), bg, bh) new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs1(yvy151, yvy153, dh, ea, eb) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(ty_Maybe, fg), eg, eh) -> new_lt2(yvy89, yvy92, fg) new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(ty_[], cbd))) -> new_ltEs(yvy1000, yvy1010, cbd) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(app(ty_Either, bch), bda))) -> new_ltEs3(yvy1001, yvy1011, bch, bda) new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(ty_Maybe, bhf))) -> new_ltEs2(yvy1000, yvy1010, bhf) new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(app(ty_@2, cc), cd), cb) -> new_compare1(yvy150, yvy152, cc, cd) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(app(app(ty_@3, bfa), bfb), bfc)), bdd)) -> new_lt1(yvy1001, yvy1011, bfa, bfb, bfc) new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(app(ty_Either, bhg), bhh))) -> new_ltEs3(yvy1000, yvy1010, bhg, bhh) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(app(ty_Either, bbf), bbg)), bag)) -> new_lt3(yvy1000, yvy1010, bbf, bbg) new_lt3(yvy150, yvy152, db, dc) -> new_compare5(yvy150, yvy152, db, dc) new_ltEs3(Left(yvy1000), Left(yvy1010), app(app(ty_@2, cac), cad), cab) -> new_ltEs0(yvy1000, yvy1010, cac, cad) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(app(ty_Either, bfe), bff), bdd) -> new_lt3(yvy1001, yvy1011, bfe, bff) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(app(ty_Either, hb), hc), eh) -> new_lt3(yvy90, yvy93, hb, hc) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(ty_[], gc), eh) -> new_lt(yvy90, yvy93, gc) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(ty_Maybe, bbe)), bag)) -> new_lt2(yvy1000, yvy1010, bbe) new_ltEs3(Left(yvy1000), Left(yvy1010), app(ty_Maybe, cah), cab) -> new_ltEs2(yvy1000, yvy1010, cah) new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(ty_[], cbd)) -> new_ltEs(yvy1000, yvy1010, cbd) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(app(ty_@2, bah), bba), bag) -> new_lt0(yvy1000, yvy1010, bah, bba) new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(app(ty_@2, bha), bhb))) -> new_ltEs0(yvy1000, yvy1010, bha, bhb) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(ty_Maybe, beb), bdc, bdd) -> new_lt2(yvy1000, yvy1010, beb) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(app(app(ty_@3, bdg), bdh), bea), bdc, bdd) -> new_lt1(yvy1000, yvy1010, bdg, bdh, bea) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(ty_Maybe, bge)) -> new_ltEs2(yvy1002, yvy1012, bge) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(ty_Maybe, bge))) -> new_ltEs2(yvy1002, yvy1012, bge) new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(ty_Maybe, ccb)) -> new_ltEs2(yvy1000, yvy1010, ccb) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(ty_Maybe, bcg))) -> new_ltEs2(yvy1001, yvy1011, bcg) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(app(app(ty_@3, bgb), bgc), bgd))) -> new_ltEs1(yvy1002, yvy1012, bgb, bgc, bgd) new_ltEs2(Just(yvy1000), Just(yvy1010), app(ty_[], bgh)) -> new_ltEs(yvy1000, yvy1010, bgh) new_compare23(yvy114, yvy115, False, cdg, app(app(ty_@2, cea), ceb)) -> new_ltEs0(yvy114, yvy115, cea, ceb) new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(app(app(ty_@3, cae), caf), cag)), cab)) -> new_ltEs1(yvy1000, yvy1010, cae, caf, cag) new_ltEs2(Just(yvy1000), Just(yvy1010), app(ty_Maybe, bhf)) -> new_ltEs2(yvy1000, yvy1010, bhf) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(app(ty_Either, bec), bed), bdc, bdd) -> new_lt3(yvy1000, yvy1010, bec, bed) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(app(ty_@2, bfh), bga)) -> new_ltEs0(yvy1002, yvy1012, bfh, bga) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(ty_Maybe, bfd)), bdd)) -> new_lt2(yvy1001, yvy1011, bfd) new_ltEs3(Left(yvy1000), Left(yvy1010), app(ty_[], caa), cab) -> new_ltEs(yvy1000, yvy1010, caa) new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(ty_Maybe, da), cb) -> new_compare4(yvy150, yvy152, da) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(ty_Maybe, bcg)) -> new_ltEs2(yvy1001, yvy1011, bcg) new_ltEs3(Left(yvy1000), Left(yvy1010), app(app(ty_Either, cba), cbb), cab) -> new_ltEs3(yvy1000, yvy1010, cba, cbb) new_compare23(yvy114, yvy115, False, cdg, app(ty_Maybe, cef)) -> new_ltEs2(yvy114, yvy115, cef) new_primCompAux(Just(yvy4000), Just(yvy3000), yvy51, app(ty_Maybe, bf)) -> new_compare21(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), bf) new_compare22(yvy107, yvy108, False, app(app(app(ty_@3, cda), cdb), cdc), ccf) -> new_ltEs1(yvy107, yvy108, cda, cdb, cdc) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(ty_[], baf), bag) -> new_lt(yvy1000, yvy1010, baf) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(app(ty_Either, bgf), bgg))) -> new_ltEs3(yvy1002, yvy1012, bgf, bgg) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(ty_[], hd)) -> new_ltEs(yvy91, yvy94, hd) new_compare23(yvy114, yvy115, False, cdg, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(yvy114, yvy115, cec, ced, cee) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(app(app(ty_@3, bbb), bbc), bbd)), bag)) -> new_lt1(yvy1000, yvy1010, bbb, bbc, bbd) new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(app(ty_@2, cbe), cbf)) -> new_ltEs0(yvy1000, yvy1010, cbe, cbf) new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(app(app(ty_@3, bhc), bhd), bhe))) -> new_ltEs1(yvy1000, yvy1010, bhc, bhd, bhe) new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs1(yvy1000, yvy1010, cbg, cbh, cca) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(app(ty_@2, bde), bdf)), bdc), bdd)) -> new_lt0(yvy1000, yvy1010, bde, bdf) new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(ty_Maybe, ec)) -> new_ltEs2(yvy151, yvy153, ec) new_compare22(yvy107, yvy108, False, app(app(ty_Either, cde), cdf), ccf) -> new_ltEs3(yvy107, yvy108, cde, cdf) new_compare21(yvy100, yvy101, False, app(ty_[], bae)) -> new_compare(yvy100, yvy101, bae) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(ty_[], bfg)) -> new_ltEs(yvy1002, yvy1012, bfg) new_lt1(yvy150, yvy152, ce, cf, cg) -> new_compare3(yvy150, yvy152, ce, cf, cg) new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(app(ty_Either, ccc), ccd)) -> new_ltEs3(yvy1000, yvy1010, ccc, ccd) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(app(app(ty_@3, fc), fd), ff), eg, eh) -> new_lt1(yvy89, yvy92, fc, fd, ff) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(ty_Maybe, beb)), bdc), bdd)) -> new_lt2(yvy1000, yvy1010, beb) new_compare23(yvy114, yvy115, False, cdg, app(app(ty_Either, ceg), ceh)) -> new_ltEs3(yvy114, yvy115, ceg, ceh) new_lt0(yvy150, yvy152, cc, cd) -> new_compare1(yvy150, yvy152, cc, cd) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(ty_[], bca))) -> new_ltEs(yvy1001, yvy1011, bca) new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(ty_Maybe, ccb))) -> new_ltEs2(yvy1000, yvy1010, ccb) new_lt(yvy150, yvy152, ca) -> new_compare(yvy150, yvy152, ca) new_compare4(Just(yvy4000), Just(yvy3000), bf) -> new_compare21(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), bf) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(app(ty_Either, bgf), bgg)) -> new_ltEs3(yvy1002, yvy1012, bgf, bgg) new_compare(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_primCompAux(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, h), h) new_compare22(yvy107, yvy108, False, app(ty_Maybe, cdd), ccf) -> new_ltEs2(yvy107, yvy108, cdd) new_lt2(yvy150, yvy152, da) -> new_compare4(yvy150, yvy152, da) new_ltEs3(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, cae), caf), cag), cab) -> new_ltEs1(yvy1000, yvy1010, cae, caf, cag) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(app(ty_Either, fh), ga), eg, eh) -> new_lt3(yvy89, yvy92, fh, ga) new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(app(ty_Either, ccc), ccd))) -> new_ltEs3(yvy1000, yvy1010, ccc, ccd) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(ty_[], bca)) -> new_ltEs(yvy1001, yvy1011, bca) new_primCompAux(yvy400, yvy300, yvy51, app(ty_[], h)) -> new_compare(yvy400, yvy300, h) new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(app(ty_Either, cba), cbb)), cab)) -> new_ltEs3(yvy1000, yvy1010, cba, cbb) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(app(ty_@2, bde), bdf), bdc, bdd) -> new_lt0(yvy1000, yvy1010, bde, bdf) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(app(ty_Either, bch), bda)) -> new_ltEs3(yvy1001, yvy1011, bch, bda) new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(ty_[], ca), cb) -> new_compare(yvy150, yvy152, ca) new_compare3(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bc, bd, be) -> new_compare20(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bc), new_asAs(new_esEs7(yvy4001, yvy3001, bd), new_esEs8(yvy4002, yvy3002, be))), bc, bd, be) new_compare23(yvy114, yvy115, False, cdg, app(ty_[], cdh)) -> new_ltEs(yvy114, yvy115, cdh) new_compare22(yvy107, yvy108, False, app(ty_[], cce), ccf) -> new_ltEs(yvy107, yvy108, cce) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(ty_[], bfg))) -> new_ltEs(yvy1002, yvy1012, bfg) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(ty_[], ef), eg, eh) -> new_lt(yvy89, yvy92, ef) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_ltEs1(yvy1002, yvy1012, bgb, bgc, bgd) new_ltEs2(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs1(yvy1000, yvy1010, bhc, bhd, bhe) new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(ty_[], bgh))) -> new_ltEs(yvy1000, yvy1010, bgh) new_compare(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_compare(yvy4001, yvy3001, h) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(ty_Maybe, ha), eh) -> new_lt2(yvy90, yvy93, ha) new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(app(ty_@2, cbe), cbf))) -> new_ltEs0(yvy1000, yvy1010, cbe, cbf) new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(ty_[], caa)), cab)) -> new_ltEs(yvy1000, yvy1010, caa) new_primCompAux(Right(yvy4000), Right(yvy3000), yvy51, app(app(ty_Either, bg), bh)) -> new_compare23(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bh), bg, bh) new_compare5(Right(yvy4000), Right(yvy3000), bg, bh) -> new_compare23(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bh), bg, bh) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs1(yvy91, yvy94, hg, hh, baa) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(app(app(ty_@3, bcd), bce), bcf))) -> new_ltEs1(yvy1001, yvy1011, bcd, bce, bcf) new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(ty_Maybe, bbe), bag) -> new_lt2(yvy1000, yvy1010, bbe) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(ty_[], bef)), bdd)) -> new_lt(yvy1001, yvy1011, bef) new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(ty_[], bdb), bdc, bdd) -> new_lt(yvy1000, yvy1010, bdb) new_ltEs2(Just(yvy1000), Just(yvy1010), app(app(ty_Either, bhg), bhh)) -> new_ltEs3(yvy1000, yvy1010, bhg, bhh) new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(ty_[], baf)), bag)) -> new_lt(yvy1000, yvy1010, baf) new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(app(ty_@2, cac), cad)), cab)) -> new_ltEs0(yvy1000, yvy1010, cac, cad) new_primCompAux(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), yvy51, app(app(ty_@2, ba), bb)) -> new_compare2(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, ba), new_esEs5(yvy4001, yvy3001, bb)), ba, bb) new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(app(ty_Either, bac), bad)) -> new_ltEs3(yvy91, yvy94, bac, bad) new_compare22(yvy107, yvy108, False, app(app(ty_@2, ccg), cch), ccf) -> new_ltEs0(yvy107, yvy108, ccg, cch) new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(app(ty_Either, ed), ee)) -> new_ltEs3(yvy151, yvy153, ed, ee) new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(app(app(ty_@3, ce), cf), cg), cb) -> new_compare3(yvy150, yvy152, ce, cf, cg) new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(app(ty_Either, bfe), bff)), bdd)) -> new_lt3(yvy1001, yvy1011, bfe, bff) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], egh)) -> new_esEs24(yvy4000, yvy3000, egh) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, cfc) -> LT new_compare12(yvy191, yvy192, False, ffa, ffb) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, ec)) -> new_ltEs15(yvy151, yvy153, ec) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs15(yvy40000, yvy30000, dbe, dbf, dbg) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, dee), def)) -> new_esEs18(yvy40002, yvy30002, dee, def) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, beg), beh)) -> new_esEs18(yvy1001, yvy1011, beg, beh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, dah, dba) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, dah, dba) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, efa), efb)) -> new_esEs18(yvy4001, yvy3001, efa, efb) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, fef)) -> new_lt18(yvy1001, yvy1011, fef) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs13(yvy1000, yvy1010, bhc, bhd, bhe) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, ded)) -> new_esEs14(yvy40002, yvy30002, ded) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_ltEs13(yvy1002, yvy1012, bgb, bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Maybe, fg)) -> new_esEs14(yvy89, yvy92, fg) new_ltEs19(yvy100, yvy101, app(app(ty_@2, bbh), bag)) -> new_ltEs12(yvy100, yvy101, bbh, bag) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, bbf), bbg)) -> new_esEs21(yvy1000, yvy1010, bbf, bbg) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, ebf) -> new_esEs12(new_compare30(yvy150, yvy152, ebf), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt11(yvy150, yvy152, app(ty_[], ca)) -> new_lt5(yvy150, yvy152, ca) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_lt5(yvy150, yvy152, ca) -> new_esEs12(new_compare0(yvy150, yvy152, ca), LT) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], fbf)) -> new_esEs24(yvy40001, yvy30001, fbf) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, bfd)) -> new_esEs14(yvy1001, yvy1011, bfd) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, cab) -> new_ltEs4(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_[], chh)) -> new_esEs24(yvy4001, yvy3001, chh) new_compare18(yvy400, yvy300, app(ty_Maybe, bf)) -> new_compare14(yvy400, yvy300, bf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs15(yvy4001, yvy3001, cgg, cgh, cha) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, beb)) -> new_lt7(yvy1000, yvy1010, beb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs15(yvy40001, yvy30001, fae, faf, fag) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], cdh)) -> new_ltEs6(yvy114, yvy115, cdh) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs13(yvy114, yvy115, cec, ced, cee) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, eeh)) -> new_esEs14(yvy4001, yvy3001, eeh) new_compare29(Right(yvy4000), Right(yvy3000), bg, bh) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bh), bg, bh) new_esEs21(Left(yvy40000), Right(yvy30000), fdb, fcb) -> False new_esEs21(Right(yvy40000), Left(yvy30000), fdb, fcb) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, fee)) -> new_lt18(yvy1000, yvy1010, fee) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bae)) -> new_ltEs6(yvy100, yvy101, bae) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, bfd)) -> new_lt7(yvy1001, yvy1011, bfd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], bgh)) -> new_ltEs6(yvy1000, yvy1010, bgh) new_esEs26(yvy40000, yvy30000, app(ty_[], dcf)) -> new_esEs24(yvy40000, yvy30000, dcf) new_lt23(yvy90, yvy93, app(app(ty_@2, gd), ge)) -> new_lt10(yvy90, yvy93, gd, ge) new_ltEs19(yvy100, yvy101, app(app(ty_Either, cbc), cab)) -> new_ltEs16(yvy100, yvy101, cbc, cab) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, bhg), bhh)) -> new_ltEs16(yvy1000, yvy1010, bhg, bhh) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, app(app(ty_@2, cbe), cbf)) -> new_ltEs12(yvy1000, yvy1010, cbe, cbf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, dgg, dgh, dha) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ceg), ceh)) -> new_ltEs16(yvy114, yvy115, ceg, ceh) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, cba), cbb), cab) -> new_ltEs16(yvy1000, yvy1010, cba, cbb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], ebh) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bf) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, ba), bb)) -> new_compare26(yvy400, yvy300, ba, bb) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, feh)) -> new_ltEs18(yvy1000, yvy1010, feh) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, app(app(ty_Either, ccc), ccd)) -> new_ltEs16(yvy1000, yvy1010, ccc, ccd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], fda), fcb) -> new_esEs24(yvy40000, yvy30000, fda) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, bec), bed)) -> new_esEs21(yvy1000, yvy1010, bec, bed) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, ddf), ddg)) -> new_esEs21(yvy40001, yvy30001, ddf, ddg) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), eha, ehb) -> new_asAs(new_esEs31(yvy40000, yvy30000, eha), new_esEs32(yvy40001, yvy30001, ehb)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, cab) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ece), ecf)) -> new_esEs18(yvy40000, yvy30000, ece, ecf) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, cac), cad), cab) -> new_ltEs12(yvy1000, yvy1010, cac, cad) new_ltEs16(Left(yvy1000), Right(yvy1010), cbc, cab) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, bee), bdc), bdd)) -> new_ltEs13(yvy100, yvy101, bee, bdc, bdd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], ebh)) -> new_esEs24(yvy4000, yvy3000, ebh) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), fdb, app(ty_[], fed)) -> new_esEs24(yvy40000, yvy30000, fed) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, fcb) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs15(yvy1000, yvy1010, bbb, bbc, bbd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, bfh), bga)) -> new_ltEs12(yvy1002, yvy1012, bfh, bga) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, cfa, cfb) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bf) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), bf) new_compare25(yvy100, yvy101, False, dac) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, dac), dac) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], baf)) -> new_lt5(yvy1000, yvy1010, baf) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs15(yvy40000, yvy30000, ehc, ehd, ehe) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs13(yvy151, yvy153, dh, ea, eb) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, ecd)) -> new_esEs14(yvy40000, yvy30000, ecd) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bc), bd), be)) -> new_compare27(yvy400, yvy300, bc, bd, be) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, faa)) -> new_esEs20(yvy40000, yvy30000, faa) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cga), cgb)) -> new_esEs18(yvy40000, yvy30000, cga, cgb) new_lt22(yvy89, yvy92, app(ty_[], ef)) -> new_lt5(yvy89, yvy92, ef) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, cea), ceb)) -> new_ltEs12(yvy114, yvy115, cea, ceb) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, dhe)) -> new_esEs14(yvy4000, yvy3000, dhe) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, cef)) -> new_ltEs15(yvy114, yvy115, cef) new_compare17(yvy201, yvy202, yvy203, yvy204, True, dah, dba) -> LT new_esEs9(yvy4000, yvy3000, app(ty_[], eed)) -> new_esEs24(yvy4000, yvy3000, eed) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, dcd), dce)) -> new_esEs21(yvy40000, yvy30000, dcd, dce) new_compare18(yvy400, yvy300, app(ty_[], h)) -> new_compare0(yvy400, yvy300, h) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, fbd), fbe)) -> new_esEs21(yvy40001, yvy30001, fbd, fbe) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, dhf), dhg)) -> new_esEs18(yvy4000, yvy3000, dhf, dhg) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy40000, yvy30000, fdc, fdd, fde) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, eah), eba)) -> new_esEs18(yvy4002, yvy3002, eah, eba) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs15(yvy40001, yvy30001, dcg, dch, dda) new_esEs29(yvy150, yvy152, app(ty_Maybe, da)) -> new_esEs14(yvy150, yvy152, da) new_ltEs22(yvy107, yvy108, app(app(ty_Either, cde), cdf)) -> new_ltEs16(yvy107, yvy108, cde, cdf) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fh), ga)) -> new_esEs21(yvy89, yvy92, fh, ga) new_lt11(yvy150, yvy152, app(ty_Ratio, ebf)) -> new_lt18(yvy150, yvy152, ebf) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cfh)) -> new_esEs14(yvy40000, yvy30000, cfh) new_esEs10(yvy4000, yvy3000, app(ty_[], dgd)) -> new_esEs24(yvy4000, yvy3000, dgd) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt9(yvy1001, yvy1011, bfa, bfb, bfc) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, daf), cab) -> new_ltEs18(yvy1000, yvy1010, daf) new_lt11(yvy150, yvy152, app(app(ty_@2, cc), cd)) -> new_lt10(yvy150, yvy152, cc, cd) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs15(yvy4000, yvy3000, dhb, dhc, dhd) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, fcf), fcb) -> new_esEs20(yvy40000, yvy30000, fcf) new_esEs29(yvy150, yvy152, app(ty_[], ca)) -> new_esEs24(yvy150, yvy152, ca) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], ebe)) -> new_esEs24(yvy4002, yvy3002, ebe) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, hb), hc)) -> new_lt16(yvy90, yvy93, hb, hc) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, fcb) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, dad) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, ed), ee)) -> new_ltEs16(yvy151, yvy153, ed, ee) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, fab), fac)) -> new_esEs21(yvy40000, yvy30000, fab, fac) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, dad) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ba, bb) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, ba), new_esEs5(yvy4001, yvy3001, bb)), ba, bb) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bg), bh)) -> new_compare29(yvy400, yvy300, bg, bh) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs15(yvy150, yvy152, ce, cf, cg) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs15(yvy40000, yvy30000, cfe, cff, cfg) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, fdb), fcb)) -> new_esEs21(yvy4000, yvy3000, fdb, fcb) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, cae), caf), cag), cab) -> new_ltEs13(yvy1000, yvy1010, cae, caf, cag) new_esEs24(:(yvy40000, yvy40001), [], ebh) -> False new_esEs24([], :(yvy30000, yvy30001), ebh) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, fcb) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, bge)) -> new_ltEs15(yvy1002, yvy1012, bge) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, dah, dba) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, dah, dba) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, bbe)) -> new_esEs14(yvy1000, yvy1010, bbe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, fbc)) -> new_esEs20(yvy40001, yvy30001, fbc) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, dga)) -> new_esEs20(yvy4000, yvy3000, dga) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, df), dg)) -> new_ltEs12(yvy151, yvy153, df, dg) new_esEs30(yvy40000, yvy30000, app(ty_[], edb)) -> new_esEs24(yvy40000, yvy30000, edb) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, fee)) -> new_esEs20(yvy1000, yvy1010, fee) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs15(yvy90, yvy93, gf, gg, gh) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), ffe) -> new_asAs(new_esEs35(yvy40000, yvy30000, ffe), new_esEs36(yvy40001, yvy30001, ffe)) new_lt22(yvy89, yvy92, app(app(ty_@2, fa), fb)) -> new_lt10(yvy89, yvy92, fa, fb) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, eaa), eab)) -> new_esEs21(yvy4000, yvy3000, eaa, eab) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, ebb)) -> new_esEs20(yvy4002, yvy3002, ebb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, ege)) -> new_esEs20(yvy4000, yvy3000, ege) new_esEs31(yvy40000, yvy30000, app(ty_[], fad)) -> new_esEs24(yvy40000, yvy30000, fad) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, bah), bba)) -> new_lt10(yvy1000, yvy1010, bah, bba) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, deh), dfa)) -> new_esEs21(yvy40002, yvy30002, deh, dfa) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, cfd)) -> new_esEs14(yvy4000, yvy3000, cfd) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), fdb, app(ty_Maybe, fdf)) -> new_esEs14(yvy40000, yvy30000, fdf) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, fef)) -> new_esEs20(yvy1001, yvy1011, fef) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, dd, cb) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, dd), new_asAs(new_esEs29(yvy150, yvy152, dd), new_ltEs20(yvy151, yvy153, cb)), dd, cb) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, ddb)) -> new_esEs14(yvy40001, yvy30001, ddb) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, fff)) -> new_lt18(yvy1000, yvy1010, fff) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], cgf)) -> new_esEs24(yvy40000, yvy30000, cgf) new_compare210(yvy150, yvy151, yvy152, yvy153, True, dd, cb) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, db), dc)) -> new_esEs21(yvy150, yvy152, db, dc) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, ha)) -> new_esEs14(yvy90, yvy93, ha) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bg, bh) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, dac) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, dgf)) -> new_compare30(yvy400, yvy300, dgf) new_compare14(Just(yvy4000), Nothing, bf) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, bha), bhb)) -> new_ltEs12(yvy1000, yvy1010, bha, bhb) new_ltEs18(yvy100, yvy101, dae) -> new_fsEs(new_compare30(yvy100, yvy101, dae)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, bgf), bgg)) -> new_ltEs16(yvy1002, yvy1012, bgf, bgg) new_ltEs19(yvy100, yvy101, app(ty_Maybe, dad)) -> new_ltEs15(yvy100, yvy101, dad) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs15(yvy40002, yvy30002, dea, deb, dec) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, dfg), dfh)) -> new_esEs18(yvy4000, yvy3000, dfg, dfh) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare14(Nothing, Nothing, bf) -> EQ new_esEs5(yvy4001, yvy3001, app(app(ty_Either, chf), chg)) -> new_esEs21(yvy4001, yvy3001, chf, chg) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, bde), bdf)) -> new_esEs18(yvy1000, yvy1010, bde, bdf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], eac)) -> new_esEs24(yvy4000, yvy3000, eac) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy4000, yvy3000, dbb, dbc, dbd) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bc, bd, be) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bc), new_asAs(new_esEs7(yvy4001, yvy3001, bd), new_esEs8(yvy4002, yvy3002, be))), bc, bd, be) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, bhf)) -> new_ltEs15(yvy1000, yvy1010, bhf) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, eea)) -> new_esEs20(yvy4000, yvy3000, eea) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs15(yvy4001, yvy3001, eee, eef, eeg) new_compare212(yvy107, yvy108, True, ffc, ccf) -> EQ new_compare11(yvy174, yvy175, False, cfc) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt9(yvy1000, yvy1010, bbb, bbc, bbd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, egc), egd)) -> new_esEs18(yvy4000, yvy3000, egc, egd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, cab) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs13(yvy1001, yvy1011, bcd, bce, bcf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs15(yvy1001, yvy1011, bfa, bfb, bfc) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], bef)) -> new_esEs24(yvy1001, yvy1011, bef) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, edf)) -> new_esEs14(yvy4000, yvy3000, edf) new_esEs7(yvy4001, yvy3001, app(ty_[], eff)) -> new_esEs24(yvy4001, yvy3001, eff) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs13(yvy1000, yvy1010, cbg, cbh, cca) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, dgg, dgh, dha) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, dgg, dgh, dha) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, edg), edh)) -> new_esEs18(yvy4000, yvy3000, edg, edh) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ech), eda)) -> new_esEs21(yvy40000, yvy30000, ech, eda) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, eh) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, gb), new_asAs(new_esEs38(yvy89, yvy92, gb), new_pePe(new_lt23(yvy90, yvy93, eg), new_asAs(new_esEs39(yvy90, yvy93, eg), new_ltEs24(yvy91, yvy94, eh)))), gb, eg, eh) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, dgg, dgh, dha) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bae) -> new_fsEs(new_compare0(yvy100, yvy101, bae)) new_esEs28(yvy40002, yvy30002, app(ty_[], dfb)) -> new_esEs24(yvy40002, yvy30002, dfb) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, bch), bda)) -> new_ltEs16(yvy1001, yvy1011, bch, bda) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, egb)) -> new_esEs14(yvy4000, yvy3000, egb) new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare7(GT, LT) -> GT new_compare29(Left(yvy4000), Left(yvy3000), bg, bh) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bg), bg, bh) new_esEs38(yvy89, yvy92, app(ty_Ratio, ffh)) -> new_esEs20(yvy89, yvy92, ffh) new_lt19(yvy1000, yvy1010, app(app(ty_@2, bde), bdf)) -> new_lt10(yvy1000, yvy1010, bde, bdf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cgd), cge)) -> new_esEs21(yvy40000, yvy30000, cgd, cge) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, dge) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, dge)) new_ltEs23(yvy1001, yvy1011, app(ty_[], bca)) -> new_ltEs6(yvy1001, yvy1011, bca) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], caa), cab) -> new_ltEs6(yvy1000, yvy1010, caa) new_compare0([], :(yvy3000, yvy3001), h) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, cfa, cfb) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, dca), dcb)) -> new_esEs18(yvy40000, yvy30000, dca, dcb) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, fba), fbb)) -> new_esEs18(yvy40001, yvy30001, fba, fbb) new_lt20(yvy1001, yvy1011, app(app(ty_@2, beg), beh)) -> new_lt10(yvy1001, yvy1011, beg, beh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), cbc, cab) -> False new_lt16(yvy150, yvy152, db, dc) -> new_esEs12(new_compare29(yvy150, yvy152, db, dc), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, dbh)) -> new_esEs14(yvy40000, yvy30000, dbh) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, app(ty_[], cbd)) -> new_ltEs6(yvy1000, yvy1010, cbd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, chc), chd)) -> new_esEs18(yvy4001, yvy3001, chc, chd) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, eca), ecb), ecc)) -> new_esEs15(yvy40000, yvy30000, eca, ecb, ecc) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, bcb), bcc)) -> new_ltEs12(yvy1001, yvy1011, bcb, bcc) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, hb), hc)) -> new_esEs21(yvy90, yvy93, hb, hc) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, cdg, daa) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, fbg), fbh), fca), fcb) -> new_esEs15(yvy40000, yvy30000, fbg, fbh, fca) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, gb, eg, eh) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs15(yvy89, yvy92, fc, fd, ff) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, ffh)) -> new_lt18(yvy89, yvy92, ffh) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), fdb, app(app(ty_Either, feb), fec)) -> new_esEs21(yvy40000, yvy30000, feb, fec) new_esEs12(EQ, EQ) -> True new_compare0([], [], h) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_esEs10(yvy4000, yvy3000, app(app(ty_Either, dgb), dgc)) -> new_esEs21(yvy4000, yvy3000, dgb, dgc) new_compare7(LT, GT) -> LT new_esEs39(yvy90, yvy93, app(ty_[], gc)) -> new_esEs24(yvy90, yvy93, gc) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, chb)) -> new_esEs14(yvy4001, yvy3001, chb) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, cab) -> new_ltEs9(yvy1000, yvy1010) new_lt23(yvy90, yvy93, app(ty_[], gc)) -> new_lt5(yvy90, yvy93, gc) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, fcg), fch), fcb) -> new_esEs21(yvy40000, yvy30000, fcg, fch) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, cah), cab) -> new_ltEs15(yvy1000, yvy1010, cah) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, dhh)) -> new_esEs20(yvy4000, yvy3000, dhh) new_lt23(yvy90, yvy93, app(ty_Ratio, fga)) -> new_lt18(yvy90, yvy93, fga) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs38(yvy89, yvy92, app(ty_[], ef)) -> new_esEs24(yvy89, yvy92, ef) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, dgg, dgh, dha) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, dgg, dgh, dha) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, bcg)) -> new_ltEs15(yvy1001, yvy1011, bcg) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, ehf)) -> new_esEs14(yvy40000, yvy30000, ehf) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt9(yvy1000, yvy1010, bdg, bdh, bea) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, ehg), ehh)) -> new_esEs18(yvy40000, yvy30000, ehg, ehh) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, efd), efe)) -> new_esEs21(yvy4001, yvy3001, efd, efe) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, efc)) -> new_esEs20(yvy4001, yvy3001, efc) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, cab) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, cdd)) -> new_ltEs15(yvy107, yvy108, cdd) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, ccg), cch)) -> new_ltEs12(yvy107, yvy108, ccg, cch) new_ltEs24(yvy91, yvy94, app(ty_Ratio, fgb)) -> new_ltEs18(yvy91, yvy94, fgb) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fh), ga)) -> new_lt16(yvy89, yvy92, fh, ga) new_ltEs24(yvy91, yvy94, app(ty_[], hd)) -> new_ltEs6(yvy91, yvy94, hd) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, ebc), ebd)) -> new_esEs21(yvy4002, yvy3002, ebc, ebd) new_lt11(yvy150, yvy152, app(app(ty_Either, db), dc)) -> new_lt16(yvy150, yvy152, db, dc) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, app(ty_Maybe, ccb)) -> new_ltEs15(yvy1000, yvy1010, ccb) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], bdb)) -> new_esEs24(yvy1000, yvy1010, bdb) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, fcb) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, fcb) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], ddh)) -> new_esEs24(yvy40001, yvy30001, ddh) new_ltEs19(yvy100, yvy101, app(ty_Ratio, dae)) -> new_ltEs18(yvy100, yvy101, dae) new_ltEs24(yvy91, yvy94, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy91, yvy94, he, hf) new_ltEs16(Right(yvy1000), Right(yvy1010), cbc, app(ty_Ratio, dag)) -> new_ltEs18(yvy1000, yvy1010, dag) new_ltEs22(yvy107, yvy108, app(ty_[], cce)) -> new_ltEs6(yvy107, yvy108, cce) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), ebh) -> new_asAs(new_esEs30(yvy40000, yvy30000, ebh), new_esEs24(yvy40001, yvy30001, ebh)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fga)) -> new_esEs20(yvy90, yvy93, fga) new_lt11(yvy150, yvy152, app(ty_Maybe, da)) -> new_lt7(yvy150, yvy152, da) new_lt10(yvy150, yvy152, cc, cd) -> new_esEs12(new_compare26(yvy150, yvy152, cc, cd), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs15(yvy4000, yvy3000, dfc, dfd, dfe) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bg, bh) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, cab) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, cc), cd)) -> new_esEs18(yvy150, yvy152, cc, cd) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ecg)) -> new_esEs20(yvy40000, yvy30000, ecg) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, fff)) -> new_esEs20(yvy1000, yvy1010, fff) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, fcd), fce), fcb) -> new_esEs18(yvy40000, yvy30000, fcd, fce) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy91, yvy94, hg, hh, baa) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs15(yvy1000, yvy1010, bdg, bdh, bea) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy91, yvy94, bac, bad) new_lt19(yvy1000, yvy1010, app(ty_[], bdb)) -> new_lt5(yvy1000, yvy1010, bdb) new_ltEs15(Nothing, Just(yvy1010), dad) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, eag)) -> new_esEs14(yvy4002, yvy3002, eag) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], h) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cgc)) -> new_esEs20(yvy40000, yvy30000, cgc) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), fdb, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, bah), bba)) -> new_esEs18(yvy1000, yvy1010, bah, bba) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, eeb), eec)) -> new_esEs21(yvy4000, yvy3000, eeb, eec) new_esEs37(yvy1000, yvy1010, app(ty_[], baf)) -> new_esEs24(yvy1000, yvy1010, baf) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_ltEs20(yvy151, yvy153, app(ty_Ratio, ebg)) -> new_ltEs18(yvy151, yvy153, ebg) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, cdg, daa) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, daa), cdg, daa) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, app(ty_Ratio, fea)) -> new_esEs20(yvy40000, yvy30000, fea) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], de)) -> new_ltEs6(yvy151, yvy153, de) new_esEs29(yvy150, yvy152, app(ty_Ratio, ebf)) -> new_esEs20(yvy150, yvy152, ebf) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], bef)) -> new_lt5(yvy1001, yvy1011, bef) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, fcb) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, ffg)) -> new_ltEs18(yvy1001, yvy1011, ffg) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fc), fd), ff)) -> new_lt9(yvy89, yvy92, fc, fd, ff) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), dbb, dbc, dbd) -> new_asAs(new_esEs26(yvy40000, yvy30000, dbb), new_asAs(new_esEs27(yvy40001, yvy30001, dbc), new_esEs28(yvy40002, yvy30002, dbd))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, h), h) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs15(yvy4002, yvy3002, ead, eae, eaf) new_lt21(yvy1000, yvy1010, app(app(ty_Either, bbf), bbg)) -> new_lt16(yvy1000, yvy1010, bbf, bbg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, che)) -> new_esEs20(yvy4001, yvy3001, che) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs13(yvy107, yvy108, cda, cdb, cdc) new_lt23(yvy90, yvy93, app(ty_Maybe, ha)) -> new_lt7(yvy90, yvy93, ha) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, dcc)) -> new_esEs20(yvy40000, yvy30000, dcc) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, da) -> new_esEs12(new_compare14(yvy150, yvy152, da), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, cab) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, fah)) -> new_esEs14(yvy40001, yvy30001, fah) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, ffd)) -> new_ltEs18(yvy107, yvy108, ffd) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, dah, dba) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, bab)) -> new_ltEs15(yvy91, yvy94, bab) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, dde)) -> new_esEs20(yvy40001, yvy30001, dde) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, bfe), bff)) -> new_lt16(yvy1001, yvy1011, bfe, bff) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, dab)) -> new_ltEs18(yvy114, yvy115, dab) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), cfd) -> False new_esEs14(Just(yvy40000), Nothing, cfd) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fa), fb)) -> new_esEs18(yvy89, yvy92, fa, fb) new_esEs14(Nothing, Nothing, cfd) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, egf), egg)) -> new_esEs21(yvy4000, yvy3000, egf, egg) new_lt22(yvy89, yvy92, app(ty_Maybe, fg)) -> new_lt7(yvy89, yvy92, fg) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, fcb) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, gd), ge)) -> new_esEs18(yvy90, yvy93, gd, ge) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, bdd) -> new_pePe(new_lt19(yvy1000, yvy1010, bee), new_asAs(new_esEs33(yvy1000, yvy1010, bee), new_pePe(new_lt20(yvy1001, yvy1011, bdc), new_asAs(new_esEs34(yvy1001, yvy1011, bdc), new_ltEs21(yvy1002, yvy1012, bdd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, eha), ehb)) -> new_esEs18(yvy4000, yvy3000, eha, ehb) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, bfe), bff)) -> new_esEs21(yvy1001, yvy1011, bfe, bff) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, feg)) -> new_ltEs18(yvy1002, yvy1012, feg) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, deg)) -> new_esEs20(yvy40002, yvy30002, deg) new_lt11(yvy150, yvy152, app(app(app(ty_@3, ce), cf), cg)) -> new_lt9(yvy150, yvy152, ce, cf, cg) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), fdb, app(app(ty_@2, fdg), fdh)) -> new_esEs18(yvy40000, yvy30000, fdg, fdh) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, gf), gg), gh)) -> new_lt9(yvy90, yvy93, gf, gg, gh) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, bag) -> new_pePe(new_lt21(yvy1000, yvy1010, bbh), new_asAs(new_esEs37(yvy1000, yvy1010, bbh), new_ltEs23(yvy1001, yvy1011, bag))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, bbe)) -> new_lt7(yvy1000, yvy1010, bbe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs15(yvy4000, yvy3000, edc, edd, ede) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, dff)) -> new_esEs14(yvy4000, yvy3000, dff) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, cab) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, ffe)) -> new_esEs20(yvy4000, yvy3000, ffe) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, fcc), fcb) -> new_esEs14(yvy40000, yvy30000, fcc) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, beb)) -> new_esEs14(yvy1000, yvy1010, beb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, fcb) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, ce, cf, cg) -> new_esEs12(new_compare27(yvy150, yvy152, ce, cf, cg), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs15(yvy4000, yvy3000, efg, efh, ega) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, ffa, ffb) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, ffc, ccf) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, ffc), ffc, ccf) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, ddc), ddd)) -> new_esEs18(yvy40001, yvy30001, ddc, ddd) new_lt19(yvy1000, yvy1010, app(app(ty_Either, bec), bed)) -> new_lt16(yvy1000, yvy1010, bec, bed) new_ltEs21(yvy1002, yvy1012, app(ty_[], bfg)) -> new_ltEs6(yvy1002, yvy1012, bfg) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs7(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Char) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt20(x0, x1, app(ty_[], x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_compare14(Nothing, Just(x0), x1) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt22(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_primPlusNat1(Zero, Zero) new_ltEs15(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt18(x0, x1, x2) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_lt20(x0, x1, ty_Bool) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_ltEs24(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_compare29(Right(x0), Right(x1), x2, x3) new_compare212(x0, x1, False, x2, x3) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, GT) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_compare24(x0, x1, False, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs14(Nothing, Nothing, x0) new_esEs4(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(x0, x1, ty_Integer) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs39(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Integer) new_lt9(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare14(Just(x0), Nothing, x1) new_ltEs18(x0, x1, x2) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_esEs11(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_ltEs15(Nothing, Just(x0), x1) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs8(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs38(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_compare0([], [], x0) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_esEs26(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_compare18(x0, x1, app(ty_Ratio, x2)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs7(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare12(x0, x1, False, x2, x3) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_compare212(x0, x1, True, x2, x3) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare7(EQ, GT) new_compare7(GT, EQ) new_ltEs7(x0, x1) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Char) new_lt6(x0, x1) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_ltEs11(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(False, False) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_compare11(x0, x1, True, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_compare10(x0, x1, True, x2, x3) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs24(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_lt23(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_compare0(:(x0, x1), [], x2) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_@0) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs29(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs24([], :(x0, x1), x2) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs28(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs7(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare6(x0, x1) new_primCompAux0(x0, x1, x2, x3) new_ltEs24(x0, x1, ty_Float) new_compare17(x0, x1, x2, x3, False, x4, x5) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_not(True) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare18(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs13(True, True) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare18(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Char) new_compare10(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Float) new_compare18(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_compare0([], :(x0, x1), x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs12(LT, LT) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs14(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs32(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(GT, LT) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_lt7(x0, x1, x2) new_lt5(x0, x1, x2) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Double) new_primPlusNat1(Zero, Succ(x0)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs6(x0, x1, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_lt10(x0, x1, x2, x3) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Ordering) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(EQ, EQ) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24([], [], x0) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, x0) new_compare14(Nothing, Nothing, x0) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(False) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), ty_Bool) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_lt8(x0, x1) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs15(Just(x0), Nothing, x1) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_compare18(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_esEs32(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1, True, x2, x3) new_lt16(x0, x1, x2, x3) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_compare25(x0, x1, False, x2) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(Char(x0), Char(x1)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (26) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_lt1(yvy150, yvy152, ce, cf, cg) -> new_compare3(yvy150, yvy152, ce, cf, cg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_lt0(yvy150, yvy152, cc, cd) -> new_compare1(yvy150, yvy152, cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs1(yvy1001, yvy1011, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(ty_[], bca)) -> new_ltEs(yvy1001, yvy1011, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(ty_Maybe, bcg)) -> new_ltEs2(yvy1001, yvy1011, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(app(ty_@2, bcb), bcc)) -> new_ltEs0(yvy1001, yvy1011, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt3(yvy150, yvy152, db, dc) -> new_compare5(yvy150, yvy152, db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_ltEs(yvy100, yvy101, bae) -> new_compare(yvy100, yvy101, bae) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_ltEs1(yvy1002, yvy1012, bgb, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(ty_[], bfg)) -> new_ltEs(yvy1002, yvy1012, bfg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(ty_Maybe, bge)) -> new_ltEs2(yvy1002, yvy1012, bge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(app(ty_@2, bfh), bga)) -> new_ltEs0(yvy1002, yvy1012, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs1(yvy1000, yvy1010, bhc, bhd, bhe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Just(yvy1000), Just(yvy1010), app(ty_[], bgh)) -> new_ltEs(yvy1000, yvy1010, bgh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Just(yvy1000), Just(yvy1010), app(ty_Maybe, bhf)) -> new_ltEs2(yvy1000, yvy1010, bhf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Just(yvy1000), Just(yvy1010), app(app(ty_@2, bha), bhb)) -> new_ltEs0(yvy1000, yvy1010, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(yvy1000), Just(yvy1010), app(app(ty_Either, bhg), bhh)) -> new_ltEs3(yvy1000, yvy1010, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt(yvy150, yvy152, ca) -> new_compare(yvy150, yvy152, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs1(yvy91, yvy94, hg, hh, baa) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_primCompAux(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_compare(yvy4001, yvy3001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(ty_[], hd)) -> new_ltEs(yvy91, yvy94, hd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(ty_Maybe, bab)) -> new_ltEs2(yvy91, yvy94, bab) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(app(ty_@2, he), hf)) -> new_ltEs0(yvy91, yvy94, he, hf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs1(yvy151, yvy153, dh, ea, eb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(ty_[], de)) -> new_ltEs(yvy151, yvy153, de) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(ty_Maybe, ec)) -> new_ltEs2(yvy151, yvy153, ec) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(app(ty_@2, df), dg)) -> new_ltEs0(yvy151, yvy153, df, dg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(app(ty_@2, cc), cd), cb) -> new_compare1(yvy150, yvy152, cc, cd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_lt2(yvy150, yvy152, da) -> new_compare4(yvy150, yvy152, da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare22(yvy107, yvy108, False, app(app(app(ty_@3, cda), cdb), cdc), ccf) -> new_ltEs1(yvy107, yvy108, cda, cdb, cdc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(yvy107, yvy108, False, app(ty_[], cce), ccf) -> new_ltEs(yvy107, yvy108, cce) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(yvy107, yvy108, False, app(ty_Maybe, cdd), ccf) -> new_ltEs2(yvy107, yvy108, cdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(yvy107, yvy108, False, app(app(ty_@2, ccg), cch), ccf) -> new_ltEs0(yvy107, yvy108, ccg, cch) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(yvy107, yvy108, False, app(app(ty_Either, cde), cdf), ccf) -> new_ltEs3(yvy107, yvy108, cde, cdf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(app(ty_Either, db), dc), cb) -> new_compare5(yvy150, yvy152, db, dc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ba, bb) -> new_compare2(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, ba), new_esEs5(yvy4001, yvy3001, bb)), ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_primCompAux(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), yvy51, app(app(ty_@2, ba), bb)) -> new_compare2(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, ba), new_esEs5(yvy4001, yvy3001, bb)), ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 4 > 6, 4 > 7 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(app(ty_Either, bbf), bbg), bag) -> new_lt3(yvy1000, yvy1010, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bbh, app(app(ty_Either, bch), bda)) -> new_ltEs3(yvy1001, yvy1011, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, bdc, app(app(ty_Either, bgf), bgg)) -> new_ltEs3(yvy1002, yvy1012, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, eg, app(app(ty_Either, bac), bad)) -> new_ltEs3(yvy91, yvy94, bac, bad) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, dd, app(app(ty_Either, ed), ee)) -> new_ltEs3(yvy151, yvy153, ed, ee) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare5(Right(yvy4000), Right(yvy3000), bg, bh) -> new_compare23(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bh), bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare5(Left(yvy4000), Left(yvy3000), bg, bh) -> new_compare22(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bg), bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(Right(yvy4000), Right(yvy3000), yvy51, app(app(ty_Either, bg), bh)) -> new_compare23(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bh), bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare4(Just(yvy4000), Just(yvy3000), bf) -> new_compare21(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), bf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(Just(yvy4000), Just(yvy3000), yvy51, app(ty_Maybe, bf)) -> new_compare21(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bf), bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare23(yvy114, yvy115, False, cdg, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(yvy114, yvy115, cec, ced, cee) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(yvy114, yvy115, False, cdg, app(ty_[], cdh)) -> new_ltEs(yvy114, yvy115, cdh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(yvy114, yvy115, False, cdg, app(ty_Maybe, cef)) -> new_ltEs2(yvy114, yvy115, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(yvy114, yvy115, False, cdg, app(app(ty_@2, cea), ceb)) -> new_ltEs0(yvy114, yvy115, cea, ceb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(yvy114, yvy115, False, cdg, app(app(ty_Either, ceg), ceh)) -> new_ltEs3(yvy114, yvy115, ceg, ceh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_primCompAux(Left(yvy4000), Left(yvy3000), yvy51, app(app(ty_Either, bg), bh)) -> new_compare22(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bg), bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(yvy400, yvy300, yvy51, app(ty_[], h)) -> new_compare(yvy400, yvy300, h) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(app(app(ty_@3, bbb), bbc), bbd), bag) -> new_lt1(yvy1000, yvy1010, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare3(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bc, bd, be) -> new_compare20(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bc), new_asAs(new_esEs7(yvy4001, yvy3001, bd), new_esEs8(yvy4002, yvy3002, be))), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_primCompAux(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), yvy51, app(app(app(ty_@3, bc), bd), be)) -> new_compare20(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bc), new_asAs(new_esEs7(yvy4001, yvy3001, bd), new_esEs8(yvy4002, yvy3002, be))), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 4 > 8, 4 > 9, 4 > 10 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(app(ty_@2, bah), bba), bag) -> new_lt0(yvy1000, yvy1010, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(ty_[], baf), bag) -> new_lt(yvy1000, yvy1010, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), app(ty_Maybe, bbe), bag) -> new_lt2(yvy1000, yvy1010, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(ty_Maybe, da), cb) -> new_compare4(yvy150, yvy152, da) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(ty_[], ca), cb) -> new_compare(yvy150, yvy152, ca) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare2(yvy150, yvy151, yvy152, yvy153, False, app(app(app(ty_@3, ce), cf), cg), cb) -> new_compare3(yvy150, yvy152, ce, cf, cg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare21(yvy100, yvy101, False, app(ty_[], bae)) -> new_compare(yvy100, yvy101, bae) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs1(yvy1000, yvy1010, cbg, cbh, cca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, cae), caf), cag), cab) -> new_ltEs1(yvy1000, yvy1010, cae, caf, cag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(app(app(ty_@3, cbg), cbh), cca))) -> new_ltEs1(yvy1000, yvy1010, cbg, cbh, cca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(app(app(ty_@3, bgb), bgc), bgd))) -> new_ltEs1(yvy1002, yvy1012, bgb, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(app(app(ty_@3, cae), caf), cag)), cab)) -> new_ltEs1(yvy1000, yvy1010, cae, caf, cag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(app(app(ty_@3, bhc), bhd), bhe))) -> new_ltEs1(yvy1000, yvy1010, bhc, bhd, bhe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(app(app(ty_@3, bcd), bce), bcf))) -> new_ltEs1(yvy1001, yvy1011, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(ty_[], cbd)) -> new_ltEs(yvy1000, yvy1010, cbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(yvy1000), Left(yvy1010), app(ty_[], caa), cab) -> new_ltEs(yvy1000, yvy1010, caa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(ty_[], cbd))) -> new_ltEs(yvy1000, yvy1010, cbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(ty_[], bca))) -> new_ltEs(yvy1001, yvy1011, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(ty_[], bfg))) -> new_ltEs(yvy1002, yvy1012, bfg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(ty_[], bgh))) -> new_ltEs(yvy1000, yvy1010, bgh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(ty_[], caa)), cab)) -> new_ltEs(yvy1000, yvy1010, caa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(yvy1000), Left(yvy1010), app(ty_Maybe, cah), cab) -> new_ltEs2(yvy1000, yvy1010, cah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(ty_Maybe, ccb)) -> new_ltEs2(yvy1000, yvy1010, ccb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(ty_Maybe, cah)), cab)) -> new_ltEs2(yvy1000, yvy1010, cah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(ty_Maybe, bhf))) -> new_ltEs2(yvy1000, yvy1010, bhf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(ty_Maybe, bge))) -> new_ltEs2(yvy1002, yvy1012, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(ty_Maybe, bcg))) -> new_ltEs2(yvy1001, yvy1011, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(ty_Maybe, ccb))) -> new_ltEs2(yvy1000, yvy1010, ccb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(yvy1000), Left(yvy1010), app(app(ty_@2, cac), cad), cab) -> new_ltEs0(yvy1000, yvy1010, cac, cad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(app(ty_@2, cbe), cbf)) -> new_ltEs0(yvy1000, yvy1010, cbe, cbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(app(ty_@2, bcb), bcc))) -> new_ltEs0(yvy1001, yvy1011, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(app(ty_@2, bfh), bga))) -> new_ltEs0(yvy1002, yvy1012, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(app(ty_@2, bha), bhb))) -> new_ltEs0(yvy1000, yvy1010, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(app(ty_@2, cbe), cbf))) -> new_ltEs0(yvy1000, yvy1010, cbe, cbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(app(ty_@2, cac), cad)), cab)) -> new_ltEs0(yvy1000, yvy1010, cac, cad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(app(ty_Either, bfe), bff), bdd) -> new_lt3(yvy1001, yvy1011, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(app(ty_Either, bec), bed), bdc, bdd) -> new_lt3(yvy1000, yvy1010, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(app(app(ty_@3, bfa), bfb), bfc), bdd) -> new_lt1(yvy1001, yvy1011, bfa, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(app(app(ty_@3, bdg), bdh), bea), bdc, bdd) -> new_lt1(yvy1000, yvy1010, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(app(ty_@2, beg), beh), bdd) -> new_lt0(yvy1001, yvy1011, beg, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(app(ty_@2, bde), bdf), bdc, bdd) -> new_lt0(yvy1000, yvy1010, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(ty_[], bef), bdd) -> new_lt(yvy1001, yvy1011, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(ty_[], bdb), bdc, bdd) -> new_lt(yvy1000, yvy1010, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bee, app(ty_Maybe, bfd), bdd) -> new_lt2(yvy1001, yvy1011, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), app(ty_Maybe, beb), bdc, bdd) -> new_lt2(yvy1000, yvy1010, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(app(ty_Either, hb), hc), eh) -> new_lt3(yvy90, yvy93, hb, hc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(app(ty_Either, fh), ga), eg, eh) -> new_lt3(yvy89, yvy92, fh, ga) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(app(app(ty_@3, gf), gg), gh), eh) -> new_lt1(yvy90, yvy93, gf, gg, gh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(app(app(ty_@3, fc), fd), ff), eg, eh) -> new_lt1(yvy89, yvy92, fc, fd, ff) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(app(ty_@2, gd), ge), eh) -> new_lt0(yvy90, yvy93, gd, ge) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(app(ty_@2, fa), fb), eg, eh) -> new_lt0(yvy89, yvy92, fa, fb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(ty_[], gc), eh) -> new_lt(yvy90, yvy93, gc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(ty_[], ef), eg, eh) -> new_lt(yvy89, yvy92, ef) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, app(ty_Maybe, fg), eg, eh) -> new_lt2(yvy89, yvy92, fg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, gb, app(ty_Maybe, ha), eh) -> new_lt2(yvy90, yvy93, ha) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_ltEs3(Left(yvy1000), Left(yvy1010), app(app(ty_Either, cba), cbb), cab) -> new_ltEs3(yvy1000, yvy1010, cba, cbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(yvy1000), Right(yvy1010), cbc, app(app(ty_Either, ccc), ccd)) -> new_ltEs3(yvy1000, yvy1010, ccc, ccd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(app(ty_Either, bec), bed)), bdc), bdd)) -> new_lt3(yvy1000, yvy1010, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(app(ty_Either, bbf), bbg)), bag)) -> new_lt3(yvy1000, yvy1010, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(app(ty_Either, bfe), bff)), bdd)) -> new_lt3(yvy1001, yvy1011, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, bbh), app(app(ty_Either, bch), bda))) -> new_ltEs3(yvy1001, yvy1011, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(yvy1000), Just(yvy1010), False, app(ty_Maybe, app(app(ty_Either, bhg), bhh))) -> new_ltEs3(yvy1000, yvy1010, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), bdc), app(app(ty_Either, bgf), bgg))) -> new_ltEs3(yvy1002, yvy1012, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(yvy1000), Right(yvy1010), False, app(app(ty_Either, cbc), app(app(ty_Either, ccc), ccd))) -> new_ltEs3(yvy1000, yvy1010, ccc, ccd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(yvy1000), Left(yvy1010), False, app(app(ty_Either, app(app(ty_Either, cba), cbb)), cab)) -> new_ltEs3(yvy1000, yvy1010, cba, cbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(app(app(ty_@3, bdg), bdh), bea)), bdc), bdd)) -> new_lt1(yvy1000, yvy1010, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(app(app(ty_@3, bfa), bfb), bfc)), bdd)) -> new_lt1(yvy1001, yvy1011, bfa, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(app(app(ty_@3, bbb), bbc), bbd)), bag)) -> new_lt1(yvy1000, yvy1010, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(app(ty_@2, bah), bba)), bag)) -> new_lt0(yvy1000, yvy1010, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(app(ty_@2, beg), beh)), bdd)) -> new_lt0(yvy1001, yvy1011, beg, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(app(ty_@2, bde), bdf)), bdc), bdd)) -> new_lt0(yvy1000, yvy1010, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(ty_[], bdb)), bdc), bdd)) -> new_lt(yvy1000, yvy1010, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(ty_[], bef)), bdd)) -> new_lt(yvy1001, yvy1011, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(ty_[], baf)), bag)) -> new_lt(yvy1000, yvy1010, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), False, app(app(ty_@2, app(ty_Maybe, bbe)), bag)) -> new_lt2(yvy1000, yvy1010, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, bee), app(ty_Maybe, bfd)), bdd)) -> new_lt2(yvy1001, yvy1011, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), False, app(app(app(ty_@3, app(ty_Maybe, beb)), bdc), bdd)) -> new_lt2(yvy1000, yvy1010, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (27) YES ---------------------------------------- (28) Obligation: Q DP problem: The TRS P consists of the following rules: new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) The TRS R consists of the following rules: new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_mkVBalBranch3MkVBalBranch16(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Pos(Zero), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(ty_[], h), ba) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_ltEs17(LT, EQ) -> True new_esEs11(yvy4000, yvy3000, app(ty_[], dch)) -> new_esEs24(yvy4000, yvy3000, dch) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_splitLT22(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, db, dc) -> new_splitLT21(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, db, dc) new_pePe(True, yvy290) -> True new_splitLT22(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, db, dc) -> new_splitLT21(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, db, dc) new_compare12(yvy191, yvy192, False, eec, eed) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cec)) -> new_ltEs15(yvy151, yvy153, cec) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs15(yvy40000, yvy30000, bgh, bha, bhb) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, ebh), eca)) -> new_esEs18(yvy1001, yvy1011, ebh, eca) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dhb, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_mkVBalBranch3MkVBalBranch27(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, cbg)) -> new_esEs14(yvy40002, yvy30002, cbg) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_splitGT16(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, dd, de) -> yvy22 new_esEs38(yvy89, yvy92, app(ty_Maybe, fch)) -> new_esEs14(yvy89, yvy92, fch) new_lt24(yvy130, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy130, new_sizeFM(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64, h, ba)), LT) new_ltEs19(yvy100, yvy101, app(app(ty_@2, bch), bda)) -> new_ltEs12(yvy100, yvy101, bch, bda) new_emptyFM(h, ba) -> EmptyFM new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_compare18(yvy400, yvy300, app(ty_Maybe, eh)) -> new_compare14(yvy400, yvy300, eh) new_esEs5(yvy4001, yvy3001, app(ty_[], ehb)) -> new_esEs24(yvy4001, yvy3001, ehb) new_compare19(@0, @0) -> EQ new_lt25(yvy134, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy134, new_sizeFM(yvy60, yvy61, Pos(Zero), yvy63, yvy64, h, ba)), LT) new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs15(yvy4001, yvy3001, ega, egb, egc) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, Branch(yvy1180, yvy1181, yvy1182, yvy1183, yvy1184), yvy54, True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy1180, yvy1181, yvy1182, yvy1183, yvy1184, yvy54, new_lt12(new_sizeFM1(yvy1184, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM1(yvy1183, h, ba))), h, ba) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(yvy114, yvy115, bbh, bca, bcb) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cgd)) -> new_esEs14(yvy4001, yvy3001, cgd) new_esEs21(Left(yvy40000), Right(yvy30000), dhb, dgb) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dhb, dgb) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, ebf)) -> new_lt18(yvy1000, yvy1010, ebf) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bbb)) -> new_ltEs6(yvy100, yvy101, bbb) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ece)) -> new_lt7(yvy1001, yvy1011, ece) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_esEs26(yvy40000, yvy30000, app(ty_[], caa)) -> new_esEs24(yvy40000, yvy30000, caa) new_ltEs19(yvy100, yvy101, app(app(ty_Either, bde), bdf)) -> new_ltEs16(yvy100, yvy101, bde, bdf) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, fd, ff, fg) -> LT new_ltEs16(Right(yvy1000), Right(yvy1010), bde, app(app(ty_@2, bfc), bfd)) -> new_ltEs12(yvy1000, yvy1010, bfc, bfd) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], fh) -> True new_ltEs17(LT, GT) -> True new_not(True) -> False new_compare18(yvy400, yvy300, app(app(ty_@2, ec), ed)) -> new_compare26(yvy400, yvy300, ec, ed) new_primCompAux00(yvy56, LT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_addToFM_C21(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C22(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, app(app(ty_Either, bga), bgb)) -> new_ltEs16(yvy1000, yvy1010, bga, bgb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dha), dgb) -> new_esEs24(yvy40000, yvy30000, dha) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, ebd), ebe)) -> new_esEs21(yvy1000, yvy1010, ebd, ebe) new_splitGT13(yvy31, yvy32, yvy33, yvy34, LT, h, ba) -> new_mkVBalBranch0([], yvy31, new_splitGT5(yvy33, h, ba), yvy34, h, ba) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_mkBranch(yvy345, yvy346, yvy347, yvy348, yvy349, df, dg) -> Branch(yvy346, yvy347, new_primPlusInt(new_primPlusInt0(Succ(Zero), new_sizeFM0(yvy348, df, dg)), yvy349, yvy346, yvy348, df, dg), yvy348, yvy349) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, edb), edc)) -> new_ltEs12(yvy1002, yvy1012, edb, edc) new_primPlusInt0(yvy11820, Neg(yvy5420)) -> new_primMinusNat0(yvy11820, yvy5420) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_compare7(EQ, EQ) -> EQ new_compare25(yvy100, yvy101, False, bcg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, bcg), bcg) new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs17(LT, LT) -> True new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_primPlusInt1(EmptyFM, yvy50, yvy51, EmptyFM, h, ba) -> Pos(new_primPlusNat1(Zero, Zero)) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs15(yvy40000, yvy30000, ddc, ddd, dde) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cdh), cea), ceb)) -> new_ltEs13(yvy151, yvy153, cdh, cea, ceb) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, gd)) -> new_esEs14(yvy40000, yvy30000, gd) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_splitLT5(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, db, dc) -> new_splitLT30(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), db, dc) new_lt22(yvy89, yvy92, app(ty_[], fcb)) -> new_lt5(yvy89, yvy92, fcb) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(ty_Maybe, bcc)) -> new_ltEs15(yvy114, yvy115, bcc) new_mkVBalBranch3MkVBalBranch28(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch211(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_compare18(yvy400, yvy300, app(ty_[], eb)) -> new_compare0(yvy400, yvy300, eb) new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bhg), bhh)) -> new_esEs21(yvy40000, yvy30000, bhg, bhh) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cfc), cfd)) -> new_esEs18(yvy4000, yvy3000, cfc, cfd) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs15(yvy40000, yvy30000, dhc, dhd, dhe) new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_splitLT21(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, db, dc) -> new_splitLT12(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), db), db, dc) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy1180, yvy1181, yvy1182, yvy1183, Branch(yvy11840, yvy11841, yvy11842, yvy11843, yvy11844), yvy54, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy11840, yvy11841, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy1180, yvy1181, yvy1183, yvy11843, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy11844, yvy54, app(ty_[], h), ba), app(ty_[], h), ba) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, chg), chh)) -> new_esEs18(yvy4002, yvy3002, chg, chh) new_splitGT30(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT21(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h), h, ba) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fda), fdb)) -> new_esEs21(yvy89, yvy92, fda, fdb) new_lt11(yvy150, yvy152, app(ty_Ratio, bba)) -> new_lt18(yvy150, yvy152, bba) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, ca)) -> new_esEs14(yvy40000, yvy30000, ca) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, bfa), bdf) -> new_ltEs18(yvy1000, yvy1010, bfa) new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_mkBalBranch([], yvy51, yvy53, new_addToFM_C0(yvy54, :(yvy400, yvy401), yvy41, h, ba), h, ba) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs29(yvy150, yvy152, app(ty_[], da)) -> new_esEs24(yvy150, yvy152, da) new_addToFM0(yvy51, yvy41, ba) -> yvy41 new_esEs8(yvy4002, yvy3002, app(ty_[], dad)) -> new_esEs24(yvy4002, yvy3002, dad) new_splitLT30(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitLT4(yvy33, h, ba) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(True, True) -> True new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy118, yvy540, yvy541, yvy542, EmptyFM, yvy544, False, h, ba) -> error([]) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, deb), dec)) -> new_esEs21(yvy40000, yvy30000, deb, dec) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs29(yvy150, yvy152, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy150, yvy152, ccf, ccg, cch) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_mkVBalBranch3MkVBalBranch214(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch15(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt26(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dgb) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_ltEs16(Right(yvy1000), Right(yvy1010), bde, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, dfc)) -> new_esEs20(yvy40001, yvy30001, dfc) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, dbc)) -> new_esEs20(yvy4000, yvy3000, dbc) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_mkVBalBranch3MkVBalBranch13(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_addToFM_C21(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C22(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs15(yvy90, yvy93, fdg, fdh, fea) new_lt22(yvy89, yvy92, app(app(ty_@2, fcc), fcd)) -> new_lt10(yvy89, yvy92, fcc, fcd) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy118, yvy54, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy118, yvy54, new_gt(new_mkBalBranch6Size_l(yvy50, yvy51, yvy118, yvy54, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy118, yvy54, h, ba))), h, ba) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs31(yvy40000, yvy30000, app(ty_[], ded)) -> new_esEs24(yvy40000, yvy30000, ded) new_esEs13(True, True) -> True new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40002, yvy30002, ccc, ccd) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, be)) -> new_esEs14(yvy4000, yvy3000, be) new_compare28(False, False) -> EQ new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, fad)) -> new_lt18(yvy1000, yvy1010, fad) new_compare210(yvy150, yvy151, yvy152, yvy153, True, cdc, cdd) -> EQ new_splitGT30([], yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitGT13(yvy31, yvy32, yvy33, yvy34, new_compare0([], [], h), h, ba) new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_gt(yvy296, yvy295) -> new_esEs12(new_compare6(yvy296, yvy295), GT) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch29(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Neg(new_primPlusNat0(new_primMulNat0(Succ(Succ(Succ(Succ(Zero)))), Succ(yvy6200)), yvy6200)), new_mkVBalBranch3Size_r1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), h, ba) new_esEs29(yvy150, yvy152, app(app(ty_Either, hc), hd)) -> new_esEs21(yvy150, yvy152, hc, hd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare25(yvy100, yvy101, True, bcg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, fc)) -> new_compare30(yvy400, yvy300, fc) new_compare14(Just(yvy4000), Nothing, eh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_ltEs18(yvy100, yvy101, bdg) -> new_fsEs(new_compare30(yvy100, yvy101, bdg)) new_primMinusNat1(Zero) -> Pos(Zero) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, edh), eea)) -> new_ltEs16(yvy1002, yvy1012, edh, eea) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40002, yvy30002, cbd, cbe, cbf) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, eh) -> EQ new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egh), eha)) -> new_esEs21(yvy4001, yvy3001, egh, eha) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy1180, yvy1181, yvy1182, yvy1183, EmptyFM, yvy54, False, h, ba) -> error([]) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ee, ef, eg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, ee), new_asAs(new_esEs7(yvy4001, yvy3001, ef), new_esEs8(yvy4002, yvy3002, eg))), ee, ef, eg) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgf)) -> new_esEs20(yvy4000, yvy3000, fgf) new_addToFM_C17(yvy51, yvy52, yvy53, yvy54, yvy41, h, ba) -> Branch([], new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_splitGT12(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, EQ, h, ba) -> new_splitGT14(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, h, ba) new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_lt9(yvy1000, yvy1010, ehf, ehg, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs15(yvy1001, yvy1011, ecb, ecc, ecd) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, app(ty_[], chb)) -> new_esEs24(yvy4001, yvy3001, chb) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_splitLT14(yvy31, yvy32, yvy33, yvy34, h, ba) -> yvy33 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fgd), fge)) -> new_esEs18(yvy4000, yvy3000, fgd, fge) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy118, yvy540, yvy541, yvy542, yvy543, yvy544, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), yvy540, yvy541, new_mkBranch(Succ(Succ(Succ(Zero))), yvy50, yvy51, yvy118, yvy543, app(ty_[], h), ba), yvy544, app(ty_[], h), ba) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, gh), ha)) -> new_esEs21(yvy40000, yvy30000, gh, ha) new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs6(yvy100, yvy101, bbb) -> new_fsEs(new_compare0(yvy100, yvy101, bbb)) new_esEs28(yvy40002, yvy30002, app(ty_[], cce)) -> new_esEs24(yvy40002, yvy30002, cce) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dcb)) -> new_esEs14(yvy4000, yvy3000, dcb) new_splitGT4(EmptyFM, yvy400, yvy401, h, ba) -> new_emptyFM(h, ba) new_compare29(Left(yvy4000), Left(yvy3000), fa, fb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, fa), fa, fb) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, ce), cf)) -> new_esEs21(yvy40000, yvy30000, ce, cf) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(ty_[], fae)) -> new_ltEs6(yvy1001, yvy1011, fae) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_compare0([], :(yvy3000, yvy3001), eb) -> LT new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bhd), bhe)) -> new_esEs18(yvy40000, yvy30000, bhd, bhe) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dfa), dfb)) -> new_esEs18(yvy40001, yvy30001, dfa, dfb) new_ltEs16(Right(yvy1000), Left(yvy1010), bde, bdf) -> False new_ltEs16(Right(yvy1000), Right(yvy1010), bde, app(ty_[], bfb)) -> new_ltEs6(yvy1000, yvy1010, bfb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_splitLT12(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, LT, db, dc) -> new_splitLT17(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, db, dc) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs15(yvy40000, yvy30000, ga, gb, gc) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, faf), fag)) -> new_ltEs12(yvy1001, yvy1011, faf, fag) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fec), fed)) -> new_esEs21(yvy90, yvy93, fec, fed) new_compare24(yvy114, yvy115, True, bbc, bbd) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs15(yvy89, yvy92, fce, fcf, fcg) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_primMinusNat1(Succ(yvy54200)) -> Neg(Succ(yvy54200)) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs12(EQ, EQ) -> True new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy118, EmptyFM, True, h, ba) -> error([]) new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) new_esEs10(yvy4000, yvy3000, app(app(ty_Either, dbd), dbe)) -> new_esEs21(yvy4000, yvy3000, dbd, dbe) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, bdf) -> new_ltEs9(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_mkVBalBranch3MkVBalBranch29(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch214(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_splitGT21(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, dd, de) -> new_splitGT4(yvy22, yvy23, yvy24, dd, de) new_splitLT15(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, LT, h, ba) -> new_splitLT16(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, h, ba) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_splitLT13(yvy31, yvy32, yvy33, yvy34, LT, h, ba) -> new_splitLT14(yvy31, yvy32, yvy33, yvy34, h, ba) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primPlusInt1(Branch(yvy1180, yvy1181, Pos(yvy11820), yvy1183, yvy1184), yvy50, yvy51, EmptyFM, h, ba) -> Pos(new_primPlusNat1(yvy11820, Zero)) new_mkVBalBranch3MkVBalBranch28(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Zero), yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_splitGT4(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_ltEs14(False, True) -> True new_esEs31(yvy40000, yvy30000, app(ty_Maybe, ddf)) -> new_esEs14(yvy40000, yvy30000, ddf) new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, eah), eba), ebb)) -> new_lt9(yvy1000, yvy1010, eah, eba, ebb) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, ddg), ddh)) -> new_esEs18(yvy40000, yvy30000, ddg, ddh) new_compare28(False, True) -> LT new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba) new_mkVBalBranch3MkVBalBranch15(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, bdf) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eeh), efa)) -> new_ltEs12(yvy107, yvy108, eeh, efa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, EmptyFM, yvy54, True, h, ba) -> error([]) new_mkVBalBranch3MkVBalBranch213(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch14(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt27(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_lt22(yvy89, yvy92, app(app(ty_Either, fda), fdb)) -> new_lt16(yvy89, yvy92, fda, fdb) new_ltEs24(yvy91, yvy94, app(ty_[], fef)) -> new_ltEs6(yvy91, yvy94, fef) new_mkVBalBranch3MkVBalBranch210(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch213(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_mkVBalBranch3MkVBalBranch212(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch13(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_lt24(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba), h, ba) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dgb) -> new_esEs23(yvy40000, yvy30000) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Zero), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch210(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Neg(Zero), new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), h, ba) new_compare28(True, True) -> EQ new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy118, yvy54, False, h, ba) -> new_mkBranch(Succ(Zero), yvy50, yvy51, yvy118, yvy54, app(ty_[], h), ba) new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], cbc)) -> new_esEs24(yvy40001, yvy30001, cbc) new_sizeFM0(Branch(yvy3480, yvy3481, yvy3482, yvy3483, yvy3484), df, dg) -> yvy3482 new_ltEs24(yvy91, yvy94, app(app(ty_@2, feg), feh)) -> new_ltEs12(yvy91, yvy94, feg, feh) new_sizeFM1(EmptyFM, h, ba) -> Pos(Zero) new_lt27(yvy142, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy142, new_sizeFM(yvy60, yvy61, Neg(Zero), yvy63, yvy64, h, ba)), LT) new_ltEs22(yvy107, yvy108, app(ty_[], eeg)) -> new_ltEs6(yvy107, yvy108, eeg) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), fh) -> new_asAs(new_esEs30(yvy40000, yvy30000, fh), new_esEs24(yvy40001, yvy30001, fh)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_mkVBalBranch3MkVBalBranch210(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch213(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs15(yvy4000, yvy3000, dae, daf, dag) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_splitLT13(yvy31, yvy32, yvy33, yvy34, GT, h, ba) -> new_mkVBalBranch0([], yvy31, yvy33, new_splitLT4(yvy34, h, ba), h, ba) new_splitLT30([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitLT15(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_compare0(:(yvy400, yvy401), [], h), h, ba) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, gg)) -> new_esEs20(yvy40000, yvy30000, gg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, bdf) -> new_ltEs14(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, app(app(ty_@2, cda), cdb)) -> new_esEs18(yvy150, yvy152, cda, cdb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_splitGT17(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, dd, de) -> new_splitGT16(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, dd, de) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_mkVBalBranch3MkVBalBranch211(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) -> new_mkVBalBranch3MkVBalBranch16(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_lt25(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), h, ba) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dgd), dge), dgb) -> new_esEs18(yvy40000, yvy30000, dgd, dge) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, eah), eba), ebb)) -> new_esEs15(yvy1000, yvy1010, eah, eba, ebb) new_ltEs15(Nothing, Just(yvy1010), he) -> True new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], eb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cd)) -> new_esEs20(yvy40000, yvy30000, cd) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C12(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_mkVBalBranch3MkVBalBranch27(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch212(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_primPlusInt1(Branch(yvy1180, yvy1181, Neg(yvy11820), yvy1183, yvy1184), yvy50, yvy51, EmptyFM, h, ba) -> new_primMinusNat1(yvy11820) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_mkVBalBranch3MkVBalBranch27(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch212(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_splitGT21(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, dd, de) -> new_splitGT22(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, dd, de) new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_compare24(yvy114, yvy115, False, bbc, bbd) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, bbd), bbc, bbd) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, app(ty_Ratio, eaa)) -> new_esEs20(yvy40000, yvy30000, eaa) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cde)) -> new_ltEs6(yvy151, yvy153, cde) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(ty_Ratio, bba)) -> new_esEs20(yvy150, yvy152, bba) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_splitLT5(EmptyFM, yvy42, yvy43, db, dc) -> new_emptyFM(db, dc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dgb) -> new_esEs17(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_lt22(yvy89, yvy92, app(app(app(ty_@3, fce), fcf), fcg)) -> new_lt9(yvy89, yvy92, fce, fcf, fcg) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), eb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, eb), eb) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_lt21(yvy1000, yvy1010, app(app(ty_Either, fab), fac)) -> new_lt16(yvy1000, yvy1010, fab, fac) new_lt23(yvy90, yvy93, app(ty_Maybe, feb)) -> new_lt7(yvy90, yvy93, feb) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bhf)) -> new_esEs20(yvy40000, yvy30000, bhf) new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_splitGT14(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, h, ba) -> yvy34 new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy118, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), yvy50, yvy51, yvy118, yvy5433, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, app(ty_[], h), ba), app(ty_[], h), ba) new_mkVBalBranch3MkVBalBranch29(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, EQ, h, ba) -> new_mkVBalBranch3MkVBalBranch214(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, h, ba) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, bdf) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, deh)) -> new_esEs14(yvy40001, yvy30001, deh) new_mkVBalBranch3Size_r2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, cah)) -> new_esEs20(yvy40001, yvy30001, cah) new_splitLT4(EmptyFM, h, ba) -> new_emptyFM(h, ba) new_ltEs14(False, False) -> True new_lt20(yvy1001, yvy1011, app(app(ty_Either, ecf), ecg)) -> new_lt16(yvy1001, yvy1011, ecf, ecg) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_primPlusInt2(yvy11820, Pos(yvy5420)) -> new_primMinusNat0(yvy5420, yvy11820) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), be) -> False new_esEs14(Just(yvy40000), Nothing, be) -> False new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs14(Nothing, Nothing, be) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dcf), dcg)) -> new_esEs21(yvy4000, yvy3000, dcf, dcg) new_lt22(yvy89, yvy92, app(ty_Maybe, fch)) -> new_lt7(yvy89, yvy92, fch) new_primMinusNat0(Zero, Succ(yvy54200)) -> Neg(Succ(yvy54200)) new_addToFM_C15(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C14(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C0(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), [], yvy41, h, ba) -> new_mkBalBranch(:(yvy500, yvy501), yvy51, new_addToFM_C0(yvy53, [], yvy41, h, ba), yvy54, h, ba) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, ecf), ecg)) -> new_esEs21(yvy1001, yvy1011, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Ratio, ccb)) -> new_esEs20(yvy40002, yvy30002, ccb) new_splitGT5(EmptyFM, h, ba) -> new_emptyFM(h, ba) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy40000, yvy30000, dhg, dhh) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdg), fdh), fea)) -> new_lt9(yvy90, yvy93, fdg, fdh, fea) new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), bch, bda) -> new_pePe(new_lt21(yvy1000, yvy1010, bch), new_asAs(new_esEs37(yvy1000, yvy1010, bch), new_ltEs23(yvy1001, yvy1011, bda))) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_primPlusInt1(EmptyFM, yvy50, yvy51, Branch(yvy540, yvy541, Pos(yvy5420), yvy543, yvy544), h, ba) -> Pos(new_primPlusNat1(Zero, yvy5420)) new_lt21(yvy1000, yvy1010, app(ty_Maybe, faa)) -> new_lt7(yvy1000, yvy1010, faa) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, dah)) -> new_esEs14(yvy4000, yvy3000, dah) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, bdf) -> new_ltEs10(yvy1000, yvy1010) new_ltEs14(True, False) -> False new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, dgc), dgb) -> new_esEs14(yvy40000, yvy30000, dgc) new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_lt26(yvy138, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_esEs12(new_compare6(yvy138, new_sizeFM(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64, h, ba)), LT) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, ebc)) -> new_esEs14(yvy1000, yvy1010, ebc) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_sizeFM1(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_sizeFM0(EmptyFM, df, dg) -> Pos(Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dgb) -> new_esEs19(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs15(yvy4000, yvy3000, dbg, dbh, dca) new_compare12(yvy191, yvy192, True, eec, eed) -> LT new_compare212(yvy107, yvy108, False, eee, eef) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, eee), eee, eef) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, caf), cag)) -> new_esEs18(yvy40001, yvy30001, caf, cag) new_lt19(yvy1000, yvy1010, app(app(ty_Either, ebd), ebe)) -> new_lt16(yvy1000, yvy1010, ebd, ebe) new_ltEs21(yvy1002, yvy1012, app(ty_[], eda)) -> new_ltEs6(yvy1002, yvy1012, eda) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_addToFM_C0(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), [], h), h, ba) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_splitGT15(yvy31, yvy32, yvy33, yvy34, h, ba) -> yvy34 new_compare11(yvy174, yvy175, True, bd) -> LT new_splitGT22(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, dd, de) -> new_splitGT17(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), dd), dd, de) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40002, yvy30002, cbh, cca) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, dh, ea) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, dh, ea) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cge), cgf)) -> new_esEs18(yvy4001, yvy3001, cge, cgf) new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_splitLT17(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, db, dc) -> yvy40 new_lt20(yvy1001, yvy1011, app(ty_Ratio, ech)) -> new_lt18(yvy1001, yvy1011, ech) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_splitLT12(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, db, dc) -> new_mkVBalBranch0(:(yvy36, yvy37), yvy38, yvy40, new_splitLT5(yvy41, yvy42, yvy43, db, dc), db, dc) new_splitGT12(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, LT, h, ba) -> new_mkVBalBranch0(:(yvy300, yvy301), yvy31, new_splitGT5(yvy33, h, ba), yvy34, h, ba) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, edd), ede), edf)) -> new_ltEs13(yvy1002, yvy1012, edd, ede, edf) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, fab), fac)) -> new_esEs21(yvy1000, yvy1010, fab, fac) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_lt18(yvy150, yvy152, bba) -> new_esEs12(new_compare30(yvy150, yvy152, bba), LT) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_addToFM_C14(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> Branch(:(yvy400, yvy401), new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], da)) -> new_lt5(yvy150, yvy152, da) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, da) -> new_esEs12(new_compare0(yvy150, yvy152, da), LT) new_esEs32(yvy40001, yvy30001, app(ty_[], dff)) -> new_esEs24(yvy40001, yvy30001, dff) new_splitLT16(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, h, ba) -> yvy33 new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ece)) -> new_esEs14(yvy1001, yvy1011, ece) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, bdf) -> new_ltEs4(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, ebc)) -> new_lt7(yvy1000, yvy1010, ebc) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dee), def), deg)) -> new_esEs15(yvy40001, yvy30001, dee, def, deg) new_ltEs8(yvy114, yvy115, app(ty_[], bbe)) -> new_ltEs6(yvy114, yvy115, bbe) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_compare29(Right(yvy4000), Right(yvy3000), fa, fb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, fb), fa, fb) new_primPlusInt1(Branch(yvy1180, yvy1181, Neg(yvy11820), yvy1183, yvy1184), yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> new_primPlusInt2(yvy11820, yvy542) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_splitGT13(yvy31, yvy32, yvy33, yvy34, GT, h, ba) -> new_splitGT15(yvy31, yvy32, yvy33, yvy34, h, ba) new_splitLT30(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitLT22(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h), h, ba) new_lt23(yvy90, yvy93, app(app(ty_@2, fde), fdf)) -> new_lt10(yvy90, yvy93, fde, fdf) new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, bcd), bce)) -> new_ltEs16(yvy114, yvy115, bcd, bce) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, beg), beh), bdf) -> new_ltEs16(yvy1000, yvy1010, beg, beh) new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_splitGT13(yvy31, yvy32, yvy33, yvy34, EQ, h, ba) -> new_splitGT15(yvy31, yvy32, yvy33, yvy34, h, ba) new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), eh) -> LT new_mkBalBranch6Size_l(yvy50, yvy51, yvy118, yvy54, h, ba) -> new_sizeFM1(yvy118, h, ba) new_mkVBalBranch3MkVBalBranch14(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Neg(Zero), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(ty_[], h), ba) new_primCmpNat0(Zero, Zero) -> EQ new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, cba), cbb)) -> new_esEs21(yvy40001, yvy30001, cba, cbb) new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C12(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dda, ddb) -> new_asAs(new_esEs31(yvy40000, yvy30000, dda), new_esEs32(yvy40001, yvy30001, ddb)) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, bdf) -> new_ltEs5(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ge), gf)) -> new_esEs18(yvy40000, yvy30000, ge, gf) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, bea), beb), bdf) -> new_ltEs12(yvy1000, yvy1010, bea, beb) new_ltEs16(Left(yvy1000), Right(yvy1010), bde, bdf) -> True new_esEs12(LT, LT) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs13(yvy100, yvy101, bdb, bdc, bdd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs24(yvy4000, yvy3000, fh) new_mkVBalBranch3MkVBalBranch210(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Zero), yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, app(ty_[], ead)) -> new_esEs24(yvy40000, yvy30000, ead) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dgb) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_splitLT22(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, LT, db, dc) -> new_splitLT5(yvy40, yvy42, yvy43, db, dc) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs15(yvy1000, yvy1010, ehf, ehg, ehh) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_primPlusInt(Pos(yvy3500), yvy349, yvy346, yvy348, df, dg) -> new_primPlusInt0(yvy3500, new_sizeFM0(yvy349, df, dg)) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_compare14(Just(yvy4000), Just(yvy3000), eh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, eh), eh) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ehc)) -> new_lt5(yvy1000, yvy1010, ehc) new_primMinusNat0(Succ(yvy118200), Zero) -> Pos(Succ(yvy118200)) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare18(yvy400, yvy300, app(app(app(ty_@3, ee), ef), eg)) -> new_compare27(yvy400, yvy300, ee, ef, eg) new_addToFM_C22(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C15(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) new_primPlusInt1(EmptyFM, yvy50, yvy51, Branch(yvy540, yvy541, Neg(yvy5420), yvy543, yvy544), h, ba) -> new_primMinusNat1(yvy5420) new_primPlusInt0(yvy11820, Pos(yvy5420)) -> Pos(new_primPlusNat1(yvy11820, yvy5420)) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dea)) -> new_esEs20(yvy40000, yvy30000, dea) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cb), cc)) -> new_esEs18(yvy40000, yvy30000, cb, cc) new_ltEs8(yvy114, yvy115, app(app(ty_@2, bbf), bbg)) -> new_ltEs12(yvy114, yvy115, bbf, bbg) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cfb)) -> new_esEs14(yvy4000, yvy3000, cfb) new_splitGT30([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT4(yvy34, yvy400, yvy401, h, ba) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_compare17(yvy201, yvy202, yvy203, yvy204, True, dh, ea) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fha)) -> new_esEs24(yvy4000, yvy3000, fha) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dfd), dfe)) -> new_esEs21(yvy40001, yvy30001, dfd, dfe) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs15(yvy40001, yvy30001, cab, cac, cad) new_esEs29(yvy150, yvy152, app(ty_Maybe, bgd)) -> new_esEs14(yvy150, yvy152, bgd) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eff), efg)) -> new_ltEs16(yvy107, yvy108, eff, efg) new_pePe(False, yvy290) -> yvy290 new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, app(ty_[], dbf)) -> new_esEs24(yvy4000, yvy3000, dbf) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_addToFM_C0(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C21(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_lt9(yvy1001, yvy1011, ecb, ecc, ecd) new_addToFM_C0(Branch([], yvy51, yvy52, yvy53, yvy54), [], yvy41, h, ba) -> new_addToFM_C16(yvy51, yvy52, yvy53, yvy54, yvy41, new_compare0([], [], h), h, ba) new_primMinusNat0(Succ(yvy118200), Succ(yvy54200)) -> new_primMinusNat0(yvy118200, yvy54200) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_lt11(yvy150, yvy152, app(app(ty_@2, cda), cdb)) -> new_lt10(yvy150, yvy152, cda, cdb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs15(yvy4000, yvy3000, ceg, ceh, cfa) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dgf), dgb) -> new_esEs20(yvy40000, yvy30000, dgf) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_compare7(EQ, GT) -> LT new_lt23(yvy90, yvy93, app(app(ty_Either, fec), fed)) -> new_lt16(yvy90, yvy93, fec, fed) new_splitGT17(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, dd, de) -> new_splitGT16(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, dd, de) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dgb) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, he) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, ced), cee)) -> new_ltEs16(yvy151, yvy153, ced, cee) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_splitGT17(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, dd, de) -> new_mkVBalBranch0(:(yvy17, yvy18), yvy19, new_splitGT4(yvy21, yvy23, yvy24, dd, de), yvy22, dd, de) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_ltEs15(Just(yvy1000), Nothing, he) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ec, ed) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, ec), new_esEs5(yvy4001, yvy3001, ed)), ec, ed) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_compare18(yvy400, yvy300, app(app(ty_Either, fa), fb)) -> new_compare29(yvy400, yvy300, fa, fb) new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs15(yvy40000, yvy30000, bf, bg, bh) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dhb), dgb)) -> new_esEs21(yvy4000, yvy3000, dhb, dgb) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs24(:(yvy40000, yvy40001), [], fh) -> False new_esEs24([], :(yvy30000, yvy30001), fh) -> False new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, bec), bed), bee), bdf) -> new_ltEs13(yvy1000, yvy1010, bec, bed, bee) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, edg)) -> new_ltEs15(yvy1002, yvy1012, edg) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, dh, ea) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, dh, ea) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, faa)) -> new_esEs14(yvy1000, yvy1010, faa) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_addToFM_C16(yvy51, yvy52, yvy53, yvy54, yvy41, GT, h, ba) -> new_mkBalBranch([], yvy51, yvy53, new_addToFM_C0(yvy54, [], yvy41, h, ba), h, ba) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, app(ty_[], hb)) -> new_esEs24(yvy40000, yvy30000, hb) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cdf), cdg)) -> new_ltEs12(yvy151, yvy153, cdf, cdg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, ebf)) -> new_esEs20(yvy1000, yvy1010, ebf) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_splitGT30(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitGT12(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, new_compare0([], :(yvy300, yvy301), h), h, ba) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), bah) -> new_asAs(new_esEs35(yvy40000, yvy30000, bah), new_esEs36(yvy40001, yvy30001, bah)) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cff), cfg)) -> new_esEs21(yvy4000, yvy3000, cff, cfg) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, daa)) -> new_esEs20(yvy4002, yvy3002, daa) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dce)) -> new_esEs20(yvy4000, yvy3000, dce) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy118, yvy54, GT, h, ba) -> new_mkBalBranch6MkBalBranch50(yvy50, yvy51, yvy118, yvy54, h, ba) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_addToFM_C16(yvy51, yvy52, yvy53, yvy54, yvy41, LT, h, ba) -> new_addToFM_C17(yvy51, yvy52, yvy53, yvy54, yvy41, h, ba) new_lt21(yvy1000, yvy1010, app(app(ty_@2, ehd), ehe)) -> new_lt10(yvy1000, yvy1010, ehd, ehe) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, app(ty_Maybe, dhf)) -> new_esEs14(yvy40000, yvy30000, dhf) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, ech)) -> new_esEs20(yvy1001, yvy1011, ech) new_mkBalBranch6Size_r(yvy50, yvy51, yvy118, yvy54, h, ba) -> new_sizeFM1(yvy54, h, ba) new_compare210(yvy150, yvy151, yvy152, yvy153, False, cdc, cdd) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, cdc), new_asAs(new_esEs29(yvy150, yvy152, cdc), new_ltEs20(yvy151, yvy153, cdd)), cdc, cdd) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, cae)) -> new_esEs14(yvy40001, yvy30001, cae) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], cg)) -> new_esEs24(yvy40000, yvy30000, cg) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy118, yvy54, LT, h, ba) -> new_mkBranch(Zero, yvy50, yvy51, yvy118, yvy54, app(ty_[], h), ba) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, feb)) -> new_esEs14(yvy90, yvy93, feb) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), fa, fb) -> LT new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_ltEs19(yvy100, yvy101, app(ty_Maybe, he)) -> new_ltEs15(yvy100, yvy101, he) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, dba), dbb)) -> new_esEs18(yvy4000, yvy3000, dba, dbb) new_addToFM_C16(yvy51, yvy52, yvy53, yvy54, yvy41, EQ, h, ba) -> new_addToFM_C17(yvy51, yvy52, yvy53, yvy54, yvy41, h, ba) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, eaf), eag)) -> new_esEs18(yvy1000, yvy1010, eaf, eag) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cfh)) -> new_esEs24(yvy4000, yvy3000, cfh) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs15(yvy4000, yvy3000, bge, bgf, bgg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_splitGT12(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, GT, h, ba) -> new_splitGT14(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, h, ba) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs15(yvy4001, yvy3001, cga, cgb, cgc) new_compare212(yvy107, yvy108, True, eee, eef) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dcc), dcd)) -> new_esEs18(yvy4000, yvy3000, dcc, dcd) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, bdf) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fah), fba), fbb)) -> new_ltEs13(yvy1001, yvy1011, fah, fba, fbb) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Zero), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch28(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Pos(Zero), new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba)), h, ba) new_esEs34(yvy1001, yvy1011, app(ty_[], ebg)) -> new_esEs24(yvy1001, yvy1011, ebg) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fgc)) -> new_esEs14(yvy4000, yvy3000, fgc) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, fd, ff, fg) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, fd, ff, fg) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs13(yvy1000, yvy1010, bfe, bff, bfg) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbg, fbh, fca) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbg), new_asAs(new_esEs38(yvy89, yvy92, fbg), new_pePe(new_lt23(yvy90, yvy93, fbh), new_asAs(new_esEs39(yvy90, yvy93, fbh), new_ltEs24(yvy91, yvy94, fca)))), fbg, fbh, fca) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, fd, ff, fg) -> GT new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_splitGT5(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitGT30(yvy330, yvy331, yvy332, yvy333, yvy334, [], h, ba) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fbd), fbe)) -> new_ltEs16(yvy1001, yvy1011, fbd, fbe) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy1180, yvy1181, yvy1182, yvy1183, yvy1184, yvy54, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy1180, yvy1181, yvy1183, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy1184, yvy54, app(ty_[], h), ba), app(ty_[], h), ba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_esEs38(yvy89, yvy92, app(ty_Ratio, fdc)) -> new_esEs20(yvy89, yvy92, fdc) new_lt19(yvy1000, yvy1010, app(app(ty_@2, eaf), eag)) -> new_lt10(yvy1000, yvy1010, eaf, eag) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], bdh), bdf) -> new_ltEs6(yvy1000, yvy1010, bdh) new_asAs(True, yvy168) -> yvy168 new_mkVBalBranch3MkVBalBranch13(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(ty_[], h), ba) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, app(app(ty_@2, ebh), eca)) -> new_lt10(yvy1001, yvy1011, ebh, eca) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_lt16(yvy150, yvy152, hc, hd) -> new_esEs12(new_compare29(yvy150, yvy152, hc, hd), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bhc)) -> new_esEs14(yvy40000, yvy30000, bhc) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ege), egf)) -> new_esEs18(yvy4001, yvy3001, ege, egf) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dhb, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, dfg), dfh), dga), dgb) -> new_esEs15(yvy40000, yvy30000, dfg, dfh, dga) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbg, fbh, fca) -> EQ new_primPlusInt2(yvy11820, Neg(yvy5420)) -> Neg(new_primPlusNat1(yvy11820, yvy5420)) new_splitLT13(yvy31, yvy32, yvy33, yvy34, EQ, h, ba) -> new_splitLT14(yvy31, yvy32, yvy33, yvy34, h, ba) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_lt22(yvy89, yvy92, app(ty_Ratio, fdc)) -> new_lt18(yvy89, yvy92, fdc) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare0([], [], eb) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dhb, app(app(ty_Either, eab), eac)) -> new_esEs21(yvy40000, yvy30000, eab, eac) new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs39(yvy90, yvy93, app(ty_[], fdd)) -> new_esEs24(yvy90, yvy93, fdd) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, egd)) -> new_esEs14(yvy4001, yvy3001, egd) new_lt23(yvy90, yvy93, app(ty_[], fdd)) -> new_lt5(yvy90, yvy93, fdd) new_compare7(LT, EQ) -> LT new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, dgg), dgh), dgb) -> new_esEs21(yvy40000, yvy30000, dgg, dgh) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, bef), bdf) -> new_ltEs15(yvy1000, yvy1010, bef) new_mkVBalBranch3MkVBalBranch29(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, LT, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy118, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy118, yvy540, yvy541, yvy542, yvy543, yvy544, new_lt12(new_sizeFM1(yvy543, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM1(yvy544, h, ba))), h, ba) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cfe)) -> new_esEs20(yvy4000, yvy3000, cfe) new_lt23(yvy90, yvy93, app(ty_Ratio, fee)) -> new_lt18(yvy90, yvy93, fee) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_mkVBalBranch3MkVBalBranch15(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Neg(Succ(yvy6200)), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(ty_[], h), ba) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fcb)) -> new_esEs24(yvy89, yvy92, fcb) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, fd, ff, fg) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, fd, ff, fg) new_splitLT12(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, db, dc) -> new_splitLT17(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, db, dc) new_addToFM_C15(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_mkBalBranch(:(yvy500, yvy501), yvy51, yvy53, new_addToFM_C0(yvy54, :(yvy400, yvy401), yvy41, h, ba), h, ba) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fbc)) -> new_ltEs15(yvy1001, yvy1011, fbc) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cgh), cha)) -> new_esEs21(yvy4001, yvy3001, cgh, cha) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cgg)) -> new_esEs20(yvy4001, yvy3001, cgg) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs22(yvy107, yvy108, app(ty_Maybe, efe)) -> new_ltEs15(yvy107, yvy108, efe) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffg)) -> new_ltEs18(yvy91, yvy94, ffg) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_splitLT30([], yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitLT13(yvy31, yvy32, yvy33, yvy34, new_compare0([], [], h), h, ba) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy118, yvy54, EQ, h, ba) -> new_mkBalBranch6MkBalBranch50(yvy50, yvy51, yvy118, yvy54, h, ba) new_lt11(yvy150, yvy152, app(app(ty_Either, hc), hd)) -> new_lt16(yvy150, yvy152, hc, hd) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, dab), dac)) -> new_esEs21(yvy4002, yvy3002, dab, dac) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_ltEs16(Right(yvy1000), Right(yvy1010), bde, app(ty_Maybe, bfh)) -> new_ltEs15(yvy1000, yvy1010, bfh) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], eae)) -> new_esEs24(yvy1000, yvy1010, eae) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_splitLT15(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, EQ, h, ba) -> new_splitLT16(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, h, ba) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dgb) -> new_esEs12(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_splitGT21(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, dd, de) -> new_splitGT22(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, dd, de) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primPlusInt1(Branch(yvy1180, yvy1181, Pos(yvy11820), yvy1183, yvy1184), yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> new_primPlusInt0(yvy11820, yvy542) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_addToFM_C15(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C14(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_primPlusInt(Neg(yvy3500), yvy349, yvy346, yvy348, df, dg) -> new_primPlusInt2(yvy3500, new_sizeFM0(yvy349, df, dg)) new_ltEs19(yvy100, yvy101, app(ty_Ratio, bdg)) -> new_ltEs18(yvy100, yvy101, bdg) new_ltEs16(Right(yvy1000), Right(yvy1010), bde, app(ty_Ratio, bgc)) -> new_ltEs18(yvy1000, yvy1010, bgc) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, app(ty_Ratio, fee)) -> new_esEs20(yvy90, yvy93, fee) new_lt11(yvy150, yvy152, app(ty_Maybe, bgd)) -> new_lt7(yvy150, yvy152, bgd) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_lt10(yvy150, yvy152, cda, cdb) -> new_esEs12(new_compare26(yvy150, yvy152, cda, cdb), LT) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_compare29(Right(yvy4000), Left(yvy3000), fa, fb) -> GT new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, fad)) -> new_esEs20(yvy1000, yvy1010, fad) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_not(False) -> True new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, ffa), ffb), ffc)) -> new_ltEs13(yvy91, yvy94, ffa, ffb, ffc) new_mkVBalBranch3MkVBalBranch14(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffe), fff)) -> new_ltEs16(yvy91, yvy94, ffe, fff) new_addToFM_C12(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> Branch(:(yvy400, yvy401), new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_lt19(yvy1000, yvy1010, app(ty_[], eae)) -> new_lt5(yvy1000, yvy1010, eae) new_esEs8(yvy4002, yvy3002, app(ty_Maybe, chf)) -> new_esEs14(yvy4002, yvy3002, chf) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dhb, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_mkBalBranch6MkBalBranch50(yvy50, yvy51, yvy118, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy118, yvy54, new_gt(new_mkBalBranch6Size_r(yvy50, yvy51, yvy118, yvy54, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy118, yvy54, h, ba))), h, ba) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, ehd), ehe)) -> new_esEs18(yvy1000, yvy1010, ehd, ehe) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgg), fgh)) -> new_esEs21(yvy4000, yvy3000, fgg, fgh) new_esEs37(yvy1000, yvy1010, app(ty_[], ehc)) -> new_esEs24(yvy1000, yvy1010, ehc) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cef)) -> new_ltEs18(yvy151, yvy153, cef) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, app(ty_[], ebg)) -> new_lt5(yvy1001, yvy1011, ebg) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_mkVBalBranch3MkVBalBranch16(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbf)) -> new_ltEs18(yvy1001, yvy1011, fbf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bge, bgf, bgg) -> new_asAs(new_esEs26(yvy40000, yvy30000, bge), new_asAs(new_esEs27(yvy40001, yvy30001, bgf), new_esEs28(yvy40002, yvy30002, bgg))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, chc), chd), che)) -> new_esEs15(yvy4002, yvy3002, chc, chd, che) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, efb), efc), efd)) -> new_ltEs13(yvy107, yvy108, efb, efc, efd) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egg)) -> new_esEs20(yvy4001, yvy3001, egg) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bgd) -> new_esEs12(new_compare14(yvy150, yvy152, bgd), LT) new_ltEs17(GT, EQ) -> False new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efh)) -> new_ltEs18(yvy107, yvy108, efh) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, dh, ea) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, ffd)) -> new_ltEs15(yvy91, yvy94, ffd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, bcf)) -> new_ltEs18(yvy114, yvy115, bcf) new_mkBalBranch(yvy50, yvy51, yvy118, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy118, yvy54, new_compare6(new_primPlusInt1(yvy118, yvy50, yvy51, yvy54, h, ba), Pos(Succ(Succ(Zero)))), h, ba) new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_esEs38(yvy89, yvy92, app(app(ty_@2, fcc), fcd)) -> new_esEs18(yvy89, yvy92, fcc, fcd) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dgb) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fde), fdf)) -> new_esEs18(yvy90, yvy93, fde, fdf) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), bdb, bdc, bdd) -> new_pePe(new_lt19(yvy1000, yvy1010, bdb), new_asAs(new_esEs33(yvy1000, yvy1010, bdb), new_pePe(new_lt20(yvy1001, yvy1011, bdc), new_asAs(new_esEs34(yvy1001, yvy1011, bdc), new_ltEs21(yvy1002, yvy1012, bdd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs18(yvy4000, yvy3000, dda, ddb) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eeb)) -> new_ltEs18(yvy1002, yvy1012, eeb) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt11(yvy150, yvy152, app(app(app(ty_@3, ccf), ccg), cch)) -> new_lt9(yvy150, yvy152, ccf, ccg, cch) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(Succ(yvy6200)), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch27(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, yvy40, yvy41, new_primCmpInt(Pos(new_primPlusNat0(new_primMulNat0(Succ(Succ(Succ(Succ(Zero)))), Succ(yvy6200)), yvy6200)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy6200, yvy63, yvy64, h, ba)), h, ba) new_primEqNat0(Zero, Zero) -> True new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_splitLT15(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, h, ba) -> new_mkVBalBranch0([], yvy31, yvy33, new_splitLT5(yvy34, yvy400, yvy401, h, ba), h, ba) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_splitLT4(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, [], h, ba) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs15(yvy4000, yvy3000, ffh, fga, fgb) new_esEs4(yvy4000, yvy3000, app(ty_Ratio, bah)) -> new_esEs20(yvy4000, yvy3000, bah) new_asAs(False, yvy168) -> False new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_addToFM_C21(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_mkBalBranch(:(yvy500, yvy501), yvy51, new_addToFM_C0(yvy53, :(yvy400, yvy401), yvy41, h, ba), yvy54, h, ba) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_mkVBalBranch3MkVBalBranch28(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, GT, h, ba) -> new_mkVBalBranch3MkVBalBranch211(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, yvy40, yvy41, h, ba) new_lt9(yvy150, yvy152, ccf, ccg, cch) -> new_esEs12(new_compare27(yvy150, yvy152, ccf, ccg, cch), LT) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusInt1(Branch(x0, x1, Pos(x2), x3, x4), x5, x6, Branch(x7, x8, x9, x10, x11), x12, x13) new_esEs38(x0, x1, ty_@0) new_esEs32(x0, x1, ty_@0) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkVBalBranch3MkVBalBranch29(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, GT, x12, x13) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_addToFM_C17(x0, x1, x2, x3, x4, x5, x6) new_esEs33(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_splitGT13(x0, x1, x2, x3, LT, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_splitLT12(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) new_lt20(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitLT13(x0, x1, x2, x3, GT, x4, x5) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, EQ, x7, x8) new_primMinusNat0(Zero, Succ(x0)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) new_primPlusInt0(x0, Pos(x1)) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4) new_splitGT30([], x0, x1, x2, x3, [], x4, x5) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_primMinusNat1(Zero) new_lt19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_mkVBalBranch3MkVBalBranch15(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusInt0(x0, Neg(x1)) new_esEs24([], [], x0) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Char) new_splitGT4(EmptyFM, x0, x1, x2, x3) new_lt21(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(Nothing, Just(x0), x1) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_[], x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs7(x0, x1, ty_Integer) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare212(x0, x1, False, x2, x3) new_esEs38(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_compare17(x0, x1, x2, x3, True, x4, x5) new_lt16(x0, x1, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs15(Nothing, Just(x0), x1) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_splitLT4(EmptyFM, x0, x1) new_lt24(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(Zero), x4, x5), Branch(x6, x7, x8, x9, x10), x11, x12) new_lt23(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_asAs(True, x0) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs38(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_lt20(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_splitGT13(x0, x1, x2, x3, EQ, x4, x5) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_splitLT16(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs11(x0, x1, ty_@0) new_pePe(False, x0) new_ltEs15(Just(x0), Just(x1), ty_Double) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs12(GT, GT) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitLT30([], x0, x1, x2, x3, [], x4, x5) new_esEs7(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_splitLT4(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs34(x0, x1, ty_Bool) new_compare7(GT, EQ) new_compare7(EQ, GT) new_ltEs7(x0, x1) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1) new_esEs37(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), [], x6, x7, x8) new_ltEs11(x0, x1) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs20(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_ltEs14(False, False) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Int) new_compare14(Just(x0), Just(x1), x2) new_compare12(x0, x1, False, x2, x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_mkVBalBranch3MkVBalBranch211(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt25(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_mkVBalBranch3MkVBalBranch14(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, False, x11, x12) new_lt23(x0, x1, app(ty_Ratio, x2)) new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs14(Just(x0), Just(x1), ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_ltEs8(x0, x1, ty_Float) new_mkVBalBranch3MkVBalBranch16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, True, x11, x12) new_ltEs21(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, LT, x7, x8) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(Succ(x4)), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Char) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_splitGT30(:(x0, x1), x2, x3, x4, x5, [], x6, x7) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(x0, x1) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs6(x0, x1, x2) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs23(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, GT, x4, x5) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_addToFM_C0(Branch([], x0, x1, x2, x3), :(x4, x5), x6, x7, x8) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Integer) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Char) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(False, False) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_splitLT30(:(x0, x1), x2, x3, x4, x5, :(x6, x7), x8, x9) new_esEs6(x0, x1, ty_Double) new_splitGT15(x0, x1, x2, x3, x4, x5) new_esEs11(x0, x1, ty_Float) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Ordering) new_primPlusInt1(Branch(x0, x1, Pos(x2), x3, x4), x5, x6, EmptyFM, x7, x8) new_primPlusInt1(Branch(x0, x1, Neg(x2), x3, x4), x5, x6, EmptyFM, x7, x8) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Integer) new_splitLT12(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) new_esEs30(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_splitLT13(x0, x1, x2, x3, EQ, x4, x5) new_addToFM_C0(Branch([], x0, x1, x2, x3), [], x4, x5, x6) new_splitLT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_compare18(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Int) new_esEs24(:(x0, x1), :(x2, x3), x4) new_not(True) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_primCompAux00(x0, LT) new_mkVBalBranch3MkVBalBranch27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, LT, x12, x13) new_mkVBalBranch3MkVBalBranch13(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_splitLT14(x0, x1, x2, x3, x4, x5) new_mkVBalBranch3MkVBalBranch214(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_splitLT30(:(x0, x1), x2, x3, x4, x5, [], x6, x7) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(:(x0, x1), :(x2, x3), x4) new_compare18(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare210(x0, x1, x2, x3, False, x4, x5) new_sizeFM1(Branch(x0, x1, x2, x3, x4), x5, x6) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Bool) new_esEs24([], :(x0, x1), x2) new_ltEs23(x0, x1, ty_Float) new_compare18(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primPlusInt1(EmptyFM, x0, x1, Branch(x2, x3, Neg(x4), x5, x6), x7, x8) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_esEs12(LT, LT) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_mkVBalBranch3MkVBalBranch29(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, EQ, x12, x13) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_splitLT22(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_primMinusNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_@0) new_splitLT21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_splitGT21(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) new_esEs32(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs14(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_lt22(x0, x1, app(ty_[], x2)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(Succ(x4)), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_esEs17(Float(x0, x1), Float(x2, x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, False, x2) new_compare18(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C16(x0, x1, x2, x3, x4, EQ, x5, x6) new_lt10(x0, x1, x2, x3) new_ltEs23(x0, x1, ty_Char) new_compare212(x0, x1, True, x2, x3) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_addToFM(x0, x1, x2, x3, x4) new_addToFM_C12(x0, x1, x2, x3, x4, x5, x6, x7, x8) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_esEs39(x0, x1, ty_Int) new_lt14(x0, x1) new_primPlusInt1(EmptyFM, x0, x1, EmptyFM, x2, x3) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1, True, x2, x3) new_not(False) new_compare0([], [], x0) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_splitGT5(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare24(x0, x1, True, x2, x3) new_splitGT14(x0, x1, x2, x3, x4, x5, x6, x7) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_mkVBalBranch3MkVBalBranch212(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_lt21(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_splitGT4(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_lt7(x0, x1, x2) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs11(x0, x1, ty_Bool) new_compare29(Right(x0), Right(x1), x2, x3) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch3Size_r1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_ltEs8(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_addToFM0(x0, x1, x2) new_esEs11(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_splitGT22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) new_esEs28(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Char) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs12(EQ, EQ) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C16(x0, x1, x2, x3, x4, LT, x5, x6) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_sizeFM1(EmptyFM, x0, x1) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Float) new_esEs16(Integer(x0), Integer(x1)) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_asAs(False, x0) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs34(x0, x1, ty_Double) new_lt11(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_primPlusInt2(x0, Neg(x1)) new_esEs10(x0, x1, ty_Float) new_primMinusNat0(Zero, Zero) new_mkVBalBranch3MkVBalBranch213(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_primCmpNat0(Succ(x0), Zero) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs18(x0, x1, x2) new_mkVBalBranch3MkVBalBranch14(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, True, x11, x12) new_emptyFM(x0, x1) new_compare24(x0, x1, False, x2, x3) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt11(x0, x1, ty_Double) new_gt(x0, x1) new_primMinusNat1(Succ(x0)) new_primEqNat0(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_splitGT12(x0, x1, x2, x3, x4, x5, EQ, x6, x7) new_primPlusInt1(Branch(x0, x1, Neg(x2), x3, x4), x5, x6, Branch(x7, x8, x9, x10, x11), x12, x13) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_mkVBalBranch3MkVBalBranch28(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, EQ, x11, x12) new_mkVBalBranch3MkVBalBranch210(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, EQ, x11, x12) new_mkVBalBranch3MkVBalBranch27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, GT, x12, x13) new_lt18(x0, x1, x2) new_esEs5(x0, x1, ty_Float) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_sr(x0, x1) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_sIZE_RATIO new_esEs39(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_lt13(x0, x1) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_splitGT17(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, EQ, x4, x5) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, LT, x4, x5) new_splitLT15(x0, x1, x2, x3, x4, x5, EQ, x6, x7) new_lt11(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Ordering) new_splitLT22(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_mkVBalBranch3MkVBalBranch16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, False, x11, x12) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(ty_[], x2)) new_splitGT12(x0, x1, x2, x3, x4, x5, LT, x6, x7) new_esEs8(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_compare0(:(x0, x1), [], x2) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Double) new_compare25(x0, x1, False, x2) new_lt20(x0, x1, ty_Char) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusInt(Neg(x0), x1, x2, x3, x4, x5) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitLT30([], x0, x1, x2, x3, :(x4, x5), x6, x7) new_splitGT17(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs14(Nothing, Just(x0), x1) new_compare14(Just(x0), Nothing, x1) new_splitLT15(x0, x1, x2, x3, x4, x5, LT, x6, x7) new_esEs27(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Int) new_compare18(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare18(x0, x1, app(ty_Maybe, x2)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(Zero), x4, x5), Branch(x6, x7, x8, x9, x10), x11, x12) new_lt22(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_splitGT16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) new_ltEs8(x0, x1, ty_Bool) new_fsEs(x0) new_ltEs15(Just(x0), Nothing, x1) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_lt11(x0, x1, ty_Char) new_lt22(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, ty_@0) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Nothing, Nothing, x0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_[], x2)) new_splitGT30(:(x0, x1), x2, x3, x4, x5, :(x6, x7), x8, x9) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_splitGT21(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) new_mkVBalBranch3MkVBalBranch15(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs8(x0, x1, ty_Int) new_addToFM_C16(x0, x1, x2, x3, x4, GT, x5, x6) new_ltEs24(x0, x1, ty_Integer) new_mkVBalBranch3MkVBalBranch210(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, LT, x11, x12) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_primPlusInt(Pos(x0), x1, x2, x3, x4, x5) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_lt17(x0, x1) new_esEs31(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_ltEs15(Nothing, Nothing, x0) new_lt23(x0, x1, ty_Int) new_ltEs17(GT, GT) new_esEs9(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Double) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_primPlusInt2(x0, Pos(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, EQ) new_splitLT17(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_splitGT30([], x0, x1, x2, x3, :(x4, x5), x6, x7) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs8(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_mkVBalBranch3MkVBalBranch13(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), ty_@0) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs29(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs5(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_compare18(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch3MkVBalBranch210(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, GT, x11, x12) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs21(x0, x1, ty_Double) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch3MkVBalBranch27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, EQ, x12, x13) new_esEs10(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, x4, x5) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) new_primPlusInt1(EmptyFM, x0, x1, Branch(x2, x3, Pos(x4), x5, x6), x7, x8) new_esEs8(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs14(True, True) new_splitLT5(EmptyFM, x0, x1, x2, x3) new_esEs24(:(x0, x1), [], x2) new_esEs4(x0, x1, ty_Int) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Ordering) new_splitGT12(x0, x1, x2, x3, x4, x5, GT, x6, x7) new_mkVBalBranch3MkVBalBranch29(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, LT, x12, x13) new_ltEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare28(False, True) new_compare28(True, False) new_mkVBalBranch3MkVBalBranch28(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, LT, x11, x12) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Char) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs29(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitLT13(x0, x1, x2, x3, LT, x4, x5) new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), :(x6, x7), x8, x9, x10) new_esEs28(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Float) new_splitLT12(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_splitGT17(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Bool) new_splitLT22(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_primPlusNat0(Succ(x0), x1) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, True, x2) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs16(Left(x0), Right(x1), x2, x3) new_mkVBalBranch3MkVBalBranch28(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, GT, x11, x12) new_ltEs5(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_splitLT15(x0, x1, x2, x3, x4, x5, GT, x6, x7) new_esEs37(x0, x1, ty_Double) new_primPlusNat1(Zero, Succ(x0)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, EQ) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_splitGT13(x0, x1, x2, x3, GT, x4, x5) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt15(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs23(Char(x0), Char(x1)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Float) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Double) new_esEs14(Just(x0), Nothing, x1) new_compare14(Nothing, Nothing, x0) new_lt27(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_splitGT5(EmptyFM, x0, x1) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt26(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs38(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_lt23(x0, x1, ty_@0) new_mkVBalBranch3Size_r2(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, GT, x7, x8) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primMulNat0(Succ(x0), Zero) new_compare13(Char(x0), Char(x1)) new_primCmpNat0(Zero, Zero) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_splitGT21(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) new_esEs26(x0, x1, ty_Int) new_sizeFM0(EmptyFM, x0, x1) new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (29) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (30) YES ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(ty_@2, bf), bg), bc, bd) -> new_esEs1(yvy40000, yvy30000, bf, bg) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(app(app(ty_@3, hd), he), hf)) -> new_esEs(yvy40001, yvy30001, hd, he, hf) new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(ty_Either, bdg), bdh)) -> new_esEs2(yvy40000, yvy30000, bdg, bdh) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(yvy40002, yvy30002, df, dg, dh) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(app(ty_@2, eb), ec)) -> new_esEs1(yvy40002, yvy30002, eb, ec) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(ty_[], ef)) -> new_esEs3(yvy40002, yvy30002, ef) new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(app(ty_Either, bcf), bcg)) -> new_esEs2(yvy40000, yvy30000, bcf, bcg) new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(yvy40000, yvy30000, bbh, bca, bcb) new_esEs0(Just(yvy40000), Just(yvy30000), app(app(ty_Either, ff), fg)) -> new_esEs2(yvy40000, yvy30000, ff, fg) new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(ty_[], bea)) -> new_esEs3(yvy40000, yvy30000, bea) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(ty_[], de), bd) -> new_esEs3(yvy40001, yvy30001, de) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(ty_Either, gh), ha), gd) -> new_esEs2(yvy40000, yvy30000, gh, ha) new_esEs2(Left(yvy40000), Left(yvy30000), app(ty_Maybe, bba), bah) -> new_esEs0(yvy40000, yvy30000, bba) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(ty_Maybe, be), bc, bd) -> new_esEs0(yvy40000, yvy30000, be) new_esEs0(Just(yvy40000), Just(yvy30000), app(ty_[], fh)) -> new_esEs3(yvy40000, yvy30000, fh) new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(ty_[], bch)) -> new_esEs3(yvy40000, yvy30000, bch) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(ty_[], cb), bc, bd) -> new_esEs3(yvy40000, yvy30000, cb) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(ty_Maybe, cg), bd) -> new_esEs0(yvy40001, yvy30001, cg) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(ty_[], hb), gd) -> new_esEs3(yvy40000, yvy30000, hb) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(yvy40001, yvy30001, cd, ce, cf) new_esEs0(Just(yvy40000), Just(yvy30000), app(app(ty_@2, fc), fd)) -> new_esEs1(yvy40000, yvy30000, fc, fd) new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(ty_@2, bde), bdf)) -> new_esEs1(yvy40000, yvy30000, bde, bdf) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(ty_Maybe, ea)) -> new_esEs0(yvy40002, yvy30002, ea) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(ty_[], bad)) -> new_esEs3(yvy40001, yvy30001, bad) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(app(ty_Either, ed), ee)) -> new_esEs2(yvy40002, yvy30002, ed, ee) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(app(ty_@2, da), db), bd) -> new_esEs1(yvy40001, yvy30001, da, db) new_esEs2(Left(yvy40000), Left(yvy30000), app(app(ty_Either, bbd), bbe), bah) -> new_esEs2(yvy40000, yvy30000, bbd, bbe) new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beb) -> new_esEs3(yvy40001, yvy30001, beb) new_esEs2(Left(yvy40000), Left(yvy30000), app(ty_[], bbf), bah) -> new_esEs3(yvy40000, yvy30000, bbf) new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs(yvy40000, yvy30000, bda, bdb, bdc) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(app(ty_Either, dc), dd), bd) -> new_esEs2(yvy40001, yvy30001, dc, dd) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(yvy40000, yvy30000, h, ba, bb) new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(ty_Maybe, bdd)) -> new_esEs0(yvy40000, yvy30000, bdd) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(app(ty_@3, ga), gb), gc), gd) -> new_esEs(yvy40000, yvy30000, ga, gb, gc) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(ty_@2, gf), gg), gd) -> new_esEs1(yvy40000, yvy30000, gf, gg) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(app(ty_Either, bab), bac)) -> new_esEs2(yvy40001, yvy30001, bab, bac) new_esEs2(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(yvy40000, yvy30000, bae, baf, bag) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(ty_Maybe, hg)) -> new_esEs0(yvy40001, yvy30001, hg) new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(app(ty_@2, bcd), bce)) -> new_esEs1(yvy40000, yvy30000, bcd, bce) new_esEs0(Just(yvy40000), Just(yvy30000), app(ty_Maybe, fb)) -> new_esEs0(yvy40000, yvy30000, fb) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(ty_Maybe, ge), gd) -> new_esEs0(yvy40000, yvy30000, ge) new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(ty_Either, bh), ca), bc, bd) -> new_esEs2(yvy40000, yvy30000, bh, ca) new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(ty_Maybe, bcc)) -> new_esEs0(yvy40000, yvy30000, bcc) new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(app(ty_@2, hh), baa)) -> new_esEs1(yvy40001, yvy30001, hh, baa) new_esEs2(Left(yvy40000), Left(yvy30000), app(app(ty_@2, bbb), bbc), bah) -> new_esEs1(yvy40000, yvy30000, bbb, bbc) new_esEs0(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(yvy40000, yvy30000, eg, eh, fa) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (32) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs(yvy40000, yvy30000, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(yvy40000, yvy30000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(ty_@2, bde), bdf)) -> new_esEs1(yvy40000, yvy30000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(yvy40000), Just(yvy30000), app(app(ty_@2, fc), fd)) -> new_esEs1(yvy40000, yvy30000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(yvy40000), Just(yvy30000), app(ty_[], fh)) -> new_esEs3(yvy40000, yvy30000, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(app(ty_Either, bdg), bdh)) -> new_esEs2(yvy40000, yvy30000, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(ty_Maybe, bdd)) -> new_esEs0(yvy40000, yvy30000, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(yvy40000), Just(yvy30000), app(app(ty_Either, ff), fg)) -> new_esEs2(yvy40000, yvy30000, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(yvy40000), Just(yvy30000), app(ty_Maybe, fb)) -> new_esEs0(yvy40000, yvy30000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(app(app(ty_@3, hd), he), hf)) -> new_esEs(yvy40001, yvy30001, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(app(ty_@3, ga), gb), gc), gd) -> new_esEs(yvy40000, yvy30000, ga, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(ty_@2, gf), gg), gd) -> new_esEs1(yvy40000, yvy30000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(app(ty_@2, hh), baa)) -> new_esEs1(yvy40001, yvy30001, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(ty_[], hb), gd) -> new_esEs3(yvy40000, yvy30000, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(ty_[], bad)) -> new_esEs3(yvy40001, yvy30001, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(app(ty_Either, gh), ha), gd) -> new_esEs2(yvy40000, yvy30000, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(app(ty_Either, bab), bac)) -> new_esEs2(yvy40001, yvy30001, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), hc, app(ty_Maybe, hg)) -> new_esEs0(yvy40001, yvy30001, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), app(ty_Maybe, ge), gd) -> new_esEs0(yvy40000, yvy30000, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(yvy40002, yvy30002, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(yvy40001, yvy30001, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(yvy40000, yvy30000, h, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(yvy40000, yvy30000, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(yvy40000, yvy30000, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(ty_@2, bf), bg), bc, bd) -> new_esEs1(yvy40000, yvy30000, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(app(ty_@2, eb), ec)) -> new_esEs1(yvy40002, yvy30002, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(app(ty_@2, da), db), bd) -> new_esEs1(yvy40001, yvy30001, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(ty_[], ef)) -> new_esEs3(yvy40002, yvy30002, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(ty_[], de), bd) -> new_esEs3(yvy40001, yvy30001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(ty_[], cb), bc, bd) -> new_esEs3(yvy40000, yvy30000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(app(ty_Either, ed), ee)) -> new_esEs2(yvy40002, yvy30002, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(app(ty_Either, dc), dd), bd) -> new_esEs2(yvy40001, yvy30001, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(app(ty_Either, bh), ca), bc, bd) -> new_esEs2(yvy40000, yvy30000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), app(ty_Maybe, be), bc, bd) -> new_esEs0(yvy40000, yvy30000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, app(ty_Maybe, cg), bd) -> new_esEs0(yvy40001, yvy30001, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), cc, bc, app(ty_Maybe, ea)) -> new_esEs0(yvy40002, yvy30002, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(app(ty_@2, bcd), bce)) -> new_esEs1(yvy40000, yvy30000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy40000), Left(yvy30000), app(app(ty_@2, bbb), bbc), bah) -> new_esEs1(yvy40000, yvy30000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(ty_[], bch)) -> new_esEs3(yvy40000, yvy30000, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(yvy40000), Left(yvy30000), app(ty_[], bbf), bah) -> new_esEs3(yvy40000, yvy30000, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(app(ty_Either, bcf), bcg)) -> new_esEs2(yvy40000, yvy30000, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy40000), Left(yvy30000), app(app(ty_Either, bbd), bbe), bah) -> new_esEs2(yvy40000, yvy30000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Left(yvy40000), Left(yvy30000), app(ty_Maybe, bba), bah) -> new_esEs0(yvy40000, yvy30000, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy40000), Right(yvy30000), bbg, app(ty_Maybe, bcc)) -> new_esEs0(yvy40000, yvy30000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), app(ty_[], bea)) -> new_esEs3(yvy40000, yvy30000, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(:(yvy40000, yvy40001), :(yvy30000, yvy30001), beb) -> new_esEs3(yvy40001, yvy30001, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 ---------------------------------------- (33) YES ---------------------------------------- (34) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), [], yvy41, h, ba) -> new_addToFM_C(yvy53, [], yvy41, h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), [], yvy41, h, ba) -> new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy41, new_compare0([], [], h), h, ba) new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, [], yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), [], h), h, ba) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (35) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. ---------------------------------------- (36) Complex Obligation (AND) ---------------------------------------- (37) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), [], yvy41, h, ba) -> new_addToFM_C(yvy53, [], yvy41, h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (38) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), [], yvy41, h, ba) -> new_addToFM_C(yvy53, [], yvy41, h, ba) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 ---------------------------------------- (39) YES ---------------------------------------- (40) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), [], h), h, ba) new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (41) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) at position [9] we obtained the following new rules [LPAR04]: (new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba),new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba)) ---------------------------------------- (42) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), [], h), h, ba) new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (43) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) at position [9] we obtained the following new rules [LPAR04]: (new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba),new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba)) ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), [], h), h, ba) new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), [], h), h, ba) at position [7] we obtained the following new rules [LPAR04]: (new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba),new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba)) ---------------------------------------- (46) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (47) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_compare0(:(yvy400, yvy401), :(yvy500, yvy501), h), h, ba) at position [9] we obtained the following new rules [LPAR04]: (new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba),new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba)) ---------------------------------------- (48) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (49) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) at position [9] we obtained the following new rules [LPAR04]: (new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba),new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba)) ---------------------------------------- (50) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (51) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux0(yvy400, yvy500, new_compare0(yvy401, yvy501, h), h), h, ba) at position [9] we obtained the following new rules [LPAR04]: (new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba),new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba)) ---------------------------------------- (52) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs24(yvy4000, yvy3000, dag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bd) -> LT new_compare12(yvy191, yvy192, False, edd, ede) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cag)) -> new_ltEs15(yvy151, yvy153, cag) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs15(yvy40000, yvy30000, bbd, bbe, bbf) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bed), bee)) -> new_esEs18(yvy40002, yvy30002, bed, bee) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_esEs18(yvy1001, yvy1011, dhg, dhh) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bag, bah) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, ced), cee)) -> new_esEs18(yvy4001, yvy3001, ced, cee) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_lt18(yvy1001, yvy1011, eag) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs13(yvy1000, yvy1010, ece, ecf, ecg) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bec)) -> new_esEs14(yvy40002, yvy30002, bec) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs13(yvy1002, yvy1012, ebc, ebd, ebe) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_esEs14(yvy89, yvy92, fcb) new_ltEs19(yvy100, yvy101, app(app(ty_@2, eh), fa)) -> new_ltEs12(yvy100, yvy101, eh, fa) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_esEs21(yvy1000, yvy1010, ehd, ehe) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, bhh) -> new_esEs12(new_compare30(yvy150, yvy152, bhh), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], ef)) -> new_lt5(yvy150, yvy152, ef) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, ef) -> new_esEs12(new_compare0(yvy150, yvy152, ef), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], dde)) -> new_esEs24(yvy40001, yvy30001, dde) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_esEs14(yvy1001, yvy1011, ead) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, fh) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bfh)) -> new_compare14(yvy400, yvy300, bfh) new_esEs5(yvy4001, yvy3001, app(ty_[], egd)) -> new_esEs24(yvy4001, yvy3001, egd) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs15(yvy4001, yvy3001, efc, efd, efe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_lt7(yvy1000, yvy1010, dhb) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs15(yvy40001, yvy30001, dcd, dce, dcf) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], dd)) -> new_ltEs6(yvy114, yvy115, dd) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs13(yvy114, yvy115, dg, dh, ea) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cec)) -> new_esEs14(yvy4001, yvy3001, cec) new_compare29(Right(yvy4000), Right(yvy3000), bga, bgb) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgb), bga, bgb) new_esEs21(Left(yvy40000), Right(yvy30000), dfa, dea) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfa, dea) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_lt18(yvy1000, yvy1010, dhe) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], be)) -> new_ltEs6(yvy100, yvy101, be) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, ead)) -> new_lt7(yvy1001, yvy1011, ead) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecb)) -> new_ltEs6(yvy1000, yvy1010, ecb) new_esEs26(yvy40000, yvy30000, app(ty_[], bce)) -> new_esEs24(yvy40000, yvy30000, bce) new_lt23(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_lt10(yvy90, yvy93, fcg, fch) new_ltEs19(yvy100, yvy101, app(app(ty_Either, fg), fh)) -> new_ltEs16(yvy100, yvy101, fg, fh) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, eda), edb)) -> new_ltEs16(yvy1000, yvy1010, eda, edb) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_@2, he), hf)) -> new_ltEs12(yvy1000, yvy1010, he, hf) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ec), ed)) -> new_ltEs16(yvy114, yvy115, ec, ed) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, ha), hb), fh) -> new_ltEs16(yvy1000, yvy1010, ha, hb) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbc) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bfh) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfc), bfd)) -> new_compare26(yvy400, yvy300, bfc, bfd) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, edc)) -> new_ltEs18(yvy1000, yvy1010, edc) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(ty_Either, bac), bad)) -> new_ltEs16(yvy1000, yvy1010, bac, bad) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], deh), dea) -> new_esEs24(yvy40000, yvy30000, deh) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_esEs21(yvy1000, yvy1010, dhc, dhd) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bde), bdf)) -> new_esEs21(yvy40001, yvy30001, bde, bdf) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dah, dba) -> new_asAs(new_esEs31(yvy40000, yvy30000, dah), new_esEs32(yvy40001, yvy30001, dba)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, fh) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, cbh), cca)) -> new_esEs18(yvy40000, yvy30000, cbh, cca) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, gc), gd), fh) -> new_ltEs12(yvy1000, yvy1010, gc, gd) new_ltEs16(Left(yvy1000), Right(yvy1010), fg, fh) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs13(yvy100, yvy101, fb, fc, fd) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbc)) -> new_esEs24(yvy4000, yvy3000, cbc) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_[], dgc)) -> new_esEs24(yvy40000, yvy30000, dgc) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dea) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs15(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, eba), ebb)) -> new_ltEs12(yvy1002, yvy1012, eba, ebb) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bb, bc) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bfh) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bfh), bfh) new_compare25(yvy100, yvy101, False, eg) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, eg), eg) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], ege)) -> new_lt5(yvy1000, yvy1010, ege) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs15(yvy40000, yvy30000, dbb, dbc, dbd) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(yvy151, yvy153, cad, cae, caf) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cbg)) -> new_esEs14(yvy40000, yvy30000, cbg) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare27(yvy400, yvy300, bfe, bff, bfg) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dbh)) -> new_esEs20(yvy40000, yvy30000, dbh) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, cc), cd)) -> new_esEs18(yvy40000, yvy30000, cc, cd) new_lt22(yvy89, yvy92, app(ty_[], fbd)) -> new_lt5(yvy89, yvy92, fbd) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, de), df)) -> new_ltEs12(yvy114, yvy115, de, df) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cda)) -> new_esEs14(yvy4000, yvy3000, cda) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, eb)) -> new_ltEs15(yvy114, yvy115, eb) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fgc)) -> new_esEs24(yvy4000, yvy3000, fgc) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bcc), bcd)) -> new_esEs21(yvy40000, yvy30000, bcc, bcd) new_compare18(yvy400, yvy300, app(ty_[], bfb)) -> new_compare0(yvy400, yvy300, bfb) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, ddc), ddd)) -> new_esEs21(yvy40001, yvy30001, ddc, ddd) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdb), cdc)) -> new_esEs18(yvy4000, yvy3000, cdb, cdc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs15(yvy40000, yvy30000, dfb, dfc, dfd) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cff), cfg)) -> new_esEs18(yvy4002, yvy3002, cff, cfg) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs15(yvy40001, yvy30001, bcf, bcg, bch) new_esEs29(yvy150, yvy152, app(ty_Maybe, baf)) -> new_esEs14(yvy150, yvy152, baf) new_ltEs22(yvy107, yvy108, app(app(ty_Either, eeg), eeh)) -> new_ltEs16(yvy107, yvy108, eeg, eeh) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_esEs21(yvy89, yvy92, fcc, fcd) new_lt11(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_lt18(yvy150, yvy152, bhh) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cb)) -> new_esEs14(yvy40000, yvy30000, cb) new_esEs10(yvy4000, yvy3000, app(ty_[], che)) -> new_esEs24(yvy4000, yvy3000, che) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_lt9(yvy1001, yvy1011, eaa, eab, eac) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, hc), fh) -> new_ltEs18(yvy1000, yvy1010, hc) new_lt11(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_lt10(yvy150, yvy152, bgg, bgh) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs15(yvy4000, yvy3000, ccf, ccg, cch) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, dee), dea) -> new_esEs20(yvy40000, yvy30000, dee) new_esEs29(yvy150, yvy152, app(ty_[], ef)) -> new_esEs24(yvy150, yvy152, ef) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cgc)) -> new_esEs24(yvy4002, yvy3002, cgc) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_lt16(yvy90, yvy93, fde, fdf) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dea) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, ff) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cah), cba)) -> new_ltEs16(yvy151, yvy153, cah, cba) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dca), dcb)) -> new_esEs21(yvy40000, yvy30000, dca, dcb) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, ff) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfc, bfd) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfc), new_esEs5(yvy4001, yvy3001, bfd)), bfc, bfd) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bga), bgb)) -> new_compare29(yvy400, yvy300, bga, bgb) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs15(yvy150, yvy152, bgd, bge, bgf) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs15(yvy40000, yvy30000, bg, bh, ca) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfa), dea)) -> new_esEs21(yvy4000, yvy3000, dfa, dea) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(yvy1000, yvy1010, ge, gf, gg) new_esEs24(:(yvy40000, yvy40001), [], cbc) -> False new_esEs24([], :(yvy30000, yvy30001), cbc) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dea) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebf)) -> new_ltEs15(yvy1002, yvy1012, ebf) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bag, bah) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bag, bah) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_esEs14(yvy1000, yvy1010, ehc) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddb)) -> new_esEs20(yvy40001, yvy30001, ddb) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chb)) -> new_esEs20(yvy4000, yvy3000, chb) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cab), cac)) -> new_ltEs12(yvy151, yvy153, cab, cac) new_esEs30(yvy40000, yvy30000, app(ty_[], cce)) -> new_esEs24(yvy40000, yvy30000, cce) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhe)) -> new_esEs20(yvy1000, yvy1010, dhe) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs15(yvy90, yvy93, fda, fdb, fdc) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efb) -> new_asAs(new_esEs35(yvy40000, yvy30000, efb), new_esEs36(yvy40001, yvy30001, efb)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_lt10(yvy89, yvy92, fbe, fbf) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cde), cdf)) -> new_esEs21(yvy4000, yvy3000, cde, cdf) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cfh)) -> new_esEs20(yvy4002, yvy3002, cfh) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs20(yvy4000, yvy3000, dad) new_esEs31(yvy40000, yvy30000, app(ty_[], dcc)) -> new_esEs24(yvy40000, yvy30000, dcc) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_lt10(yvy1000, yvy1010, egf, egg) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, beg), beh)) -> new_esEs21(yvy40002, yvy30002, beg, beh) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bf)) -> new_esEs14(yvy4000, yvy3000, bf) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Maybe, dfe)) -> new_esEs14(yvy40000, yvy30000, dfe) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eag)) -> new_esEs20(yvy1001, yvy1011, eag) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhd, bhe) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhd), new_asAs(new_esEs29(yvy150, yvy152, bhd), new_ltEs20(yvy151, yvy153, bhe)), bhd, bhe) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bda)) -> new_esEs14(yvy40001, yvy30001, bda) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_lt18(yvy1000, yvy1010, ehf) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], da)) -> new_esEs24(yvy40000, yvy30000, da) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhd, bhe) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_esEs21(yvy150, yvy152, bhf, bhg) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_esEs14(yvy90, yvy93, fdd) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bga, bgb) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, eg) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bgc)) -> new_compare30(yvy400, yvy300, bgc) new_compare14(Just(yvy4000), Nothing, bfh) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ecc), ecd)) -> new_ltEs12(yvy1000, yvy1010, ecc, ecd) new_ltEs18(yvy100, yvy101, ga) -> new_fsEs(new_compare30(yvy100, yvy101, ga)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, ebg), ebh)) -> new_ltEs16(yvy1002, yvy1012, ebg, ebh) new_ltEs19(yvy100, yvy101, app(ty_Maybe, ff)) -> new_ltEs15(yvy100, yvy101, ff) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs15(yvy40002, yvy30002, bdh, bea, beb) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, cgh), cha)) -> new_esEs18(yvy4000, yvy3000, cgh, cha) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bfh) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egb), egc)) -> new_esEs21(yvy4001, yvy3001, egb, egc) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_esEs18(yvy1000, yvy1010, dge, dgf) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cdg)) -> new_esEs24(yvy4000, yvy3000, cdg) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs15(yvy4000, yvy3000, bba, bbb, bbc) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfe, bff, bfg) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfe), new_asAs(new_esEs7(yvy4001, yvy3001, bff), new_esEs8(yvy4002, yvy3002, bfg))), bfe, bff, bfg) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, ech)) -> new_ltEs15(yvy1000, yvy1010, ech) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, ffh)) -> new_esEs20(yvy4000, yvy3000, ffh) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs15(yvy4001, yvy3001, cdh, cea, ceb) new_compare212(yvy107, yvy108, True, edf, edg) -> EQ new_compare11(yvy174, yvy175, False, bd) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, egh), eha), ehb)) -> new_lt9(yvy1000, yvy1010, egh, eha, ehb) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs18(yvy4000, yvy3000, dab, dac) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, fh) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fab), fac), fad)) -> new_ltEs13(yvy1001, yvy1011, fab, fac, fad) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs15(yvy1001, yvy1011, eaa, eab, eac) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhf)) -> new_esEs24(yvy1001, yvy1011, dhf) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs14(yvy4000, yvy3000, ffe) new_esEs7(yvy4001, yvy3001, app(ty_[], cfa)) -> new_esEs24(yvy4001, yvy3001, cfa) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy1000, yvy1010, hg, hh, baa) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bha, bhb, bhc) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fff), ffg)) -> new_esEs18(yvy4000, yvy3000, fff, ffg) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, ccc), ccd)) -> new_esEs21(yvy40000, yvy30000, ccc, ccd) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fba, fbb, fbc) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fba), new_asAs(new_esEs38(yvy89, yvy92, fba), new_pePe(new_lt23(yvy90, yvy93, fbb), new_asAs(new_esEs39(yvy90, yvy93, fbb), new_ltEs24(yvy91, yvy94, fbc)))), fba, fbb, fbc) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bha, bhb, bhc) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, be) -> new_fsEs(new_compare0(yvy100, yvy101, be)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfa)) -> new_esEs24(yvy40002, yvy30002, bfa) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, faf), fag)) -> new_ltEs16(yvy1001, yvy1011, faf, fag) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs14(yvy4000, yvy3000, daa) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bga, bgb) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bga), bga, bgb) new_esEs38(yvy89, yvy92, app(ty_Ratio, fce)) -> new_esEs20(yvy89, yvy92, fce) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dge), dgf)) -> new_lt10(yvy1000, yvy1010, dge, dgf) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, cf), cg)) -> new_esEs21(yvy40000, yvy30000, cf, cg) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], ehg)) -> new_ltEs6(yvy1001, yvy1011, ehg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gb), fh) -> new_ltEs6(yvy1000, yvy1010, gb) new_compare0([], :(yvy3000, yvy3001), bfb) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bb, bc) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bbh), bca)) -> new_esEs18(yvy40000, yvy30000, bbh, bca) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, dch), dda)) -> new_esEs18(yvy40001, yvy30001, dch, dda) new_lt20(yvy1001, yvy1011, app(app(ty_@2, dhg), dhh)) -> new_lt10(yvy1001, yvy1011, dhg, dhh) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), fg, fh) -> False new_lt16(yvy150, yvy152, bhf, bhg) -> new_esEs12(new_compare29(yvy150, yvy152, bhf, bhg), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bbg)) -> new_esEs14(yvy40000, yvy30000, bbg) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_[], hd)) -> new_ltEs6(yvy1000, yvy1010, hd) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, efg), efh)) -> new_esEs18(yvy4001, yvy3001, efg, efh) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs15(yvy40000, yvy30000, cbd, cbe, cbf) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, ehh), faa)) -> new_ltEs12(yvy1001, yvy1011, ehh, faa) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fde), fdf)) -> new_esEs21(yvy90, yvy93, fde, fdf) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, db, dc) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddf), ddg), ddh), dea) -> new_esEs15(yvy40000, yvy30000, ddf, ddg, ddh) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fba, fbb, fbc) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs15(yvy89, yvy92, fbg, fbh, fca) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fce)) -> new_lt18(yvy89, yvy92, fce) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_Either, dga), dgb)) -> new_esEs21(yvy40000, yvy30000, dga, dgb) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfb) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, chc), chd)) -> new_esEs21(yvy4000, yvy3000, chc, chd) new_esEs39(yvy90, yvy93, app(ty_[], fcf)) -> new_esEs24(yvy90, yvy93, fcf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, fh) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, eff)) -> new_esEs14(yvy4001, yvy3001, eff) new_lt23(yvy90, yvy93, app(ty_[], fcf)) -> new_lt5(yvy90, yvy93, fcf) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, def), deg), dea) -> new_esEs21(yvy40000, yvy30000, def, deg) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, gh), fh) -> new_ltEs15(yvy1000, yvy1010, gh) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdd)) -> new_esEs20(yvy4000, yvy3000, cdd) new_lt23(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_lt18(yvy90, yvy93, fdg) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbd)) -> new_esEs24(yvy89, yvy92, fbd) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bha, bhb, bhc) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bha, bhb, bhc) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fae)) -> new_ltEs15(yvy1001, yvy1011, fae) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbe)) -> new_esEs14(yvy40000, yvy30000, dbe) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt9(yvy1000, yvy1010, dgg, dgh, dha) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbf), dbg)) -> new_esEs18(yvy40000, yvy30000, dbf, dbg) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, ceg), ceh)) -> new_esEs21(yvy4001, yvy3001, ceg, ceh) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, cef)) -> new_esEs20(yvy4001, yvy3001, cef) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, fh) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eef)) -> new_ltEs15(yvy107, yvy108, eef) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eea), eeb)) -> new_ltEs12(yvy107, yvy108, eea, eeb) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffa)) -> new_ltEs18(yvy91, yvy94, ffa) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fcc), fcd)) -> new_lt16(yvy89, yvy92, fcc, fcd) new_ltEs24(yvy91, yvy94, app(ty_[], fdh)) -> new_ltEs6(yvy91, yvy94, fdh) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhf), bhg)) -> new_lt16(yvy150, yvy152, bhf, bhg) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cga), cgb)) -> new_esEs21(yvy4002, yvy3002, cga, cgb) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Maybe, bab)) -> new_ltEs15(yvy1000, yvy1010, bab) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgd)) -> new_esEs24(yvy1000, yvy1010, dgd) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dea) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dea) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bdg)) -> new_esEs24(yvy40001, yvy30001, bdg) new_ltEs19(yvy100, yvy101, app(ty_Ratio, ga)) -> new_ltEs18(yvy100, yvy101, ga) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fea), feb)) -> new_ltEs12(yvy91, yvy94, fea, feb) new_ltEs16(Right(yvy1000), Right(yvy1010), fg, app(ty_Ratio, bae)) -> new_ltEs18(yvy1000, yvy1010, bae) new_ltEs22(yvy107, yvy108, app(ty_[], edh)) -> new_ltEs6(yvy107, yvy108, edh) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbc) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbc), new_esEs24(yvy40001, yvy30001, cbc)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fdg)) -> new_esEs20(yvy90, yvy93, fdg) new_lt11(yvy150, yvy152, app(ty_Maybe, baf)) -> new_lt7(yvy150, yvy152, baf) new_lt10(yvy150, yvy152, bgg, bgh) -> new_esEs12(new_compare26(yvy150, yvy152, bgg, bgh), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs15(yvy4000, yvy3000, cgd, cge, cgf) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bga, bgb) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, fh) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bgg), bgh)) -> new_esEs18(yvy150, yvy152, bgg, bgh) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccb)) -> new_esEs20(yvy40000, yvy30000, ccb) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehf)) -> new_esEs20(yvy1000, yvy1010, ehf) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dec), ded), dea) -> new_esEs18(yvy40000, yvy30000, dec, ded) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs13(yvy91, yvy94, fec, fed, fee) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs15(yvy1000, yvy1010, dgg, dgh, dha) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, feg), feh)) -> new_ltEs16(yvy91, yvy94, feg, feh) new_lt19(yvy1000, yvy1010, app(ty_[], dgd)) -> new_lt5(yvy1000, yvy1010, dgd) new_ltEs15(Nothing, Just(yvy1010), ff) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfe)) -> new_esEs14(yvy4002, yvy3002, cfe) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfb) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, ce)) -> new_esEs20(yvy40000, yvy30000, ce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfa, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egf), egg)) -> new_esEs18(yvy1000, yvy1010, egf, egg) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fga), fgb)) -> new_esEs21(yvy4000, yvy3000, fga, fgb) new_esEs37(yvy1000, yvy1010, app(ty_[], ege)) -> new_esEs24(yvy1000, yvy1010, ege) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbb)) -> new_ltEs18(yvy151, yvy153, cbb) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, db, dc) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, dc), db, dc) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(ty_Ratio, dfh)) -> new_esEs20(yvy40000, yvy30000, dfh) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], caa)) -> new_ltEs6(yvy151, yvy153, caa) new_esEs29(yvy150, yvy152, app(ty_Ratio, bhh)) -> new_esEs20(yvy150, yvy152, bhh) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhf)) -> new_lt5(yvy1001, yvy1011, dhf) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dea) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fah)) -> new_ltEs18(yvy1001, yvy1011, fah) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fbg), fbh), fca)) -> new_lt9(yvy89, yvy92, fbg, fbh, fca) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bba, bbb, bbc) -> new_asAs(new_esEs26(yvy40000, yvy30000, bba), new_asAs(new_esEs27(yvy40001, yvy30001, bbb), new_esEs28(yvy40002, yvy30002, bbc))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfb) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfb), bfb) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs15(yvy4002, yvy3002, cfb, cfc, cfd) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehd), ehe)) -> new_lt16(yvy1000, yvy1010, ehd, ehe) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs13(yvy107, yvy108, eec, eed, eee) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, ega)) -> new_esEs20(yvy4001, yvy3001, ega) new_lt23(yvy90, yvy93, app(ty_Maybe, fdd)) -> new_lt7(yvy90, yvy93, fdd) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcb)) -> new_esEs20(yvy40000, yvy30000, bcb) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, baf) -> new_esEs12(new_compare14(yvy150, yvy152, baf), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, fh) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dcg)) -> new_esEs14(yvy40001, yvy30001, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efa)) -> new_ltEs18(yvy107, yvy108, efa) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bag, bah) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, fef)) -> new_ltEs15(yvy91, yvy94, fef) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdd)) -> new_esEs20(yvy40001, yvy30001, bdd) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_lt16(yvy1001, yvy1011, eae, eaf) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, ee)) -> new_ltEs18(yvy114, yvy115, ee) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bf) -> False new_esEs14(Just(yvy40000), Nothing, bf) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbe), fbf)) -> new_esEs18(yvy89, yvy92, fbe, fbf) new_esEs14(Nothing, Nothing, bf) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs21(yvy4000, yvy3000, dae, daf) new_lt22(yvy89, yvy92, app(ty_Maybe, fcb)) -> new_lt7(yvy89, yvy92, fcb) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dea) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fcg), fch)) -> new_esEs18(yvy90, yvy93, fcg, fch) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fb, fc, fd) -> new_pePe(new_lt19(yvy1000, yvy1010, fb), new_asAs(new_esEs33(yvy1000, yvy1010, fb), new_pePe(new_lt20(yvy1001, yvy1011, fc), new_asAs(new_esEs34(yvy1001, yvy1011, fc), new_ltEs21(yvy1002, yvy1012, fd))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dah), dba)) -> new_esEs18(yvy4000, yvy3000, dah, dba) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eae), eaf)) -> new_esEs21(yvy1001, yvy1011, eae, eaf) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, eca)) -> new_ltEs18(yvy1002, yvy1012, eca) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, bef)) -> new_esEs20(yvy40002, yvy30002, bef) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt9(yvy150, yvy152, bgd, bge, bgf) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfa, app(app(ty_@2, dff), dfg)) -> new_esEs18(yvy40000, yvy30000, dff, dfg) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(yvy90, yvy93, fda, fdb, fdc) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), eh, fa) -> new_pePe(new_lt21(yvy1000, yvy1010, eh), new_asAs(new_esEs37(yvy1000, yvy1010, eh), new_ltEs23(yvy1001, yvy1011, fa))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehc)) -> new_lt7(yvy1000, yvy1010, ehc) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs15(yvy4000, yvy3000, ffb, ffc, ffd) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cgg)) -> new_esEs14(yvy4000, yvy3000, cgg) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, fh) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efb)) -> new_esEs20(yvy4000, yvy3000, efb) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, deb), dea) -> new_esEs14(yvy40000, yvy30000, deb) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhb)) -> new_esEs14(yvy1000, yvy1010, dhb) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dea) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgd, bge, bgf) -> new_esEs12(new_compare27(yvy150, yvy152, bgd, bge, bgf), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs15(yvy4000, yvy3000, chf, chg, chh) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edd, ede) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edf, edg) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edf), edf, edg) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdb), bdc)) -> new_esEs18(yvy40001, yvy30001, bdb, bdc) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhc), dhd)) -> new_lt16(yvy1000, yvy1010, dhc, dhd) new_ltEs21(yvy1002, yvy1012, app(ty_[], eah)) -> new_ltEs6(yvy1002, yvy1012, eah) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_esEs12(EQ, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16(Integer(x0), Integer(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_ltEs15(Nothing, Just(x0), x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare14(Just(x0), Nothing, x1) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_ltEs15(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, GT) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(GT, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare18(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(:(x0, x1), [], x2) new_ltEs8(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(x0, x1, ty_Char) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_esEs14(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_esEs14(Nothing, Just(x0), x1) new_compare19(@0, @0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs8(x0, x1, ty_Float) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(LT, GT) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs5(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare28(False, False) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, ty_Char) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_compare12(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs14(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Int) new_ltEs14(True, True) new_not(True) new_compare18(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_lt18(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_compare25(x0, x1, True, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_compare18(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt10(x0, x1, x2, x3) new_ltEs22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_compare212(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Double) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare29(Left(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs23(Char(x0), Char(x1)) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_lt8(x0, x1) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_lt23(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs24([], [], x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_compare14(Just(x0), Just(x1), x2) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (53) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C(Branch([], yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_addToFM_C(Branch(:(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), :(yvy400, yvy401), yvy41, h, ba) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 9, 4 >= 11, 5 >= 12 *new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 11, 11 >= 12 *new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, EQ, h, ba) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_primCompAux00(new_compare0(yvy401, yvy501, h), new_compare18(yvy400, yvy500, h)), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 11, 12 >= 12 *new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, LT, h, ba) -> new_addToFM_C(yvy53, :(yvy400, yvy401), yvy41, h, ba) The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 *new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 10, 12 >= 11 *new_addToFM_C10(yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, GT, h, ba) -> new_addToFM_C(yvy54, :(yvy400, yvy401), yvy41, h, ba) The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 ---------------------------------------- (54) YES ---------------------------------------- (55) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT10(yvy31, yvy32, yvy33, yvy34, LT, h, ba) -> new_splitGT0(yvy33, h, ba) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitGT1(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, new_compare0([], :(yvy300, yvy301), h), h, ba) new_splitGT3([], yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitGT10(yvy31, yvy32, yvy33, yvy34, new_compare0([], [], h), h, ba) new_splitGT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitGT3(yvy330, yvy331, yvy332, yvy333, yvy334, [], h, ba) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, bb, bc) -> new_splitGT(yvy22, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, bb, bc) -> new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) new_splitGT1(yvy300, yvy301, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, LT, h, ba) -> new_splitGT3(yvy330, yvy331, yvy332, yvy333, yvy334, [], h, ba) new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h), h, ba) new_splitGT3([], yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), :(yvy400, yvy401), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT(yvy21, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (56) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 3 less nodes. ---------------------------------------- (57) Complex Obligation (AND) ---------------------------------------- (58) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h), h, ba) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, bb, bc) -> new_splitGT(yvy22, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, bb, bc) -> new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT(yvy21, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) new_splitGT3([], yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), :(yvy400, yvy401), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (59) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h), h, ba) at position [8] we obtained the following new rules [LPAR04]: (new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, h), new_compare18(yvy400, yvy300, h)), h, ba),new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, h), new_compare18(yvy400, yvy300, h)), h, ba)) ---------------------------------------- (60) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, bb, bc) -> new_splitGT(yvy22, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, bb, bc) -> new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT(yvy21, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) new_splitGT3([], yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), :(yvy400, yvy401), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, h), new_compare18(yvy400, yvy300, h)), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (61) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) at position [8] we obtained the following new rules [LPAR04]: (new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc),new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc)) ---------------------------------------- (62) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, bb, bc) -> new_splitGT(yvy22, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, bb, bc) -> new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT(yvy21, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) new_splitGT3([], yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), :(yvy400, yvy401), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, h), new_compare18(yvy400, yvy300, h)), h, ba) new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (63) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_compare0(:(yvy23, yvy24), :(yvy17, yvy18), bb), bb, bc) at position [8] we obtained the following new rules [LPAR04]: (new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc),new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc)) ---------------------------------------- (64) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, bb, bc) -> new_splitGT(yvy22, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, bb, bc) -> new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT(yvy21, yvy23, yvy24, bb, bc) new_splitGT3([], yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), :(yvy400, yvy401), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, h), new_compare18(yvy400, yvy300, h)), h, ba) new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (65) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc) at position [8] we obtained the following new rules [LPAR04]: (new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc),new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc)) ---------------------------------------- (66) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, bb, bc) -> new_splitGT(yvy22, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, bb, bc) -> new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT(yvy21, yvy23, yvy24, bb, bc) new_splitGT3([], yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), :(yvy400, yvy401), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, h), new_compare18(yvy400, yvy300, h)), h, ba) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc) new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (67) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux0(yvy23, yvy17, new_compare0(yvy24, yvy18, bb), bb), bb, bc) at position [8] we obtained the following new rules [LPAR04]: (new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc),new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc)) ---------------------------------------- (68) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, bb, bc) -> new_splitGT(yvy22, yvy23, yvy24, bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, bb, bc) -> new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT(yvy21, yvy23, yvy24, bb, bc) new_splitGT3([], yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), :(yvy400, yvy401), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, h), new_compare18(yvy400, yvy300, h)), h, ba) new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc) new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (69) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), h, ba) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, h), new_compare18(yvy400, yvy300, h)), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 2 >= 3, 3 >= 4, 4 >= 5, 5 >= 6, 6 > 7, 6 > 8, 7 >= 10, 8 >= 11 *new_splitGT3([], yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), :(yvy400, yvy401), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7, 8 >= 8 *new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, yvy401, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, :(yvy400, yvy401), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 4 >= 7, 5 >= 8 *new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 10, 10 >= 11 *new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_primCompAux00(new_compare0(yvy24, yvy18, bb), new_compare18(yvy23, yvy17, bb)), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11 *new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, EQ, bb, bc) -> new_splitGT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 9, 11 >= 10 *new_splitGT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, GT, bb, bc) -> new_splitGT(yvy22, yvy23, yvy24, bb, bc) The graph contains the following edges 6 >= 1, 7 >= 2, 8 >= 3, 10 >= 4, 11 >= 5 *new_splitGT11(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, LT, bb, bc) -> new_splitGT(yvy21, yvy23, yvy24, bb, bc) The graph contains the following edges 5 >= 1, 7 >= 2, 8 >= 3, 10 >= 4, 11 >= 5 ---------------------------------------- (70) YES ---------------------------------------- (71) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT1(yvy300, yvy301, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, LT, h, ba) -> new_splitGT3(yvy330, yvy331, yvy332, yvy333, yvy334, [], h, ba) new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitGT1(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, new_compare0([], :(yvy300, yvy301), h), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, h) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, h)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (72) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_splitGT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, [], h, ba) -> new_splitGT1(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, new_compare0([], :(yvy300, yvy301), h), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 2 >= 3, 3 >= 4, 4 >= 5, 5 >= 6, 7 >= 8, 8 >= 9 *new_splitGT1(yvy300, yvy301, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, LT, h, ba) -> new_splitGT3(yvy330, yvy331, yvy332, yvy333, yvy334, [], h, ba) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 8 >= 7, 9 >= 8 ---------------------------------------- (73) YES ---------------------------------------- (74) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(yvy300000), Succ(yvy400100)) -> new_primMulNat(yvy300000, Succ(yvy400100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (75) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(yvy300000), Succ(yvy400100)) -> new_primMulNat(yvy300000, Succ(yvy400100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (76) YES ---------------------------------------- (77) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, [], bb, bc) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, [], bb, bc) new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), bb, bc) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, [], bb, bc) new_splitLT10(yvy31, yvy32, yvy33, yvy34, GT, bb, bc) -> new_splitLT0(yvy34, bb, bc) new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, [], bb, bc) -> new_splitLT10(yvy31, yvy32, yvy33, yvy34, new_compare0([], [], bb), bb, bc) new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bb), bb), bb, bc) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_compare0(:(yvy400, yvy401), [], bb), bb, bc) new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (78) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 3 less nodes. ---------------------------------------- (79) Complex Obligation (AND) ---------------------------------------- (80) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bb), bb), bb, bc) new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_compare0(:(yvy400, yvy401), [], bb), bb, bc) new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (81) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bb), bb), bb, bc) at position [8] we obtained the following new rules [LPAR04]: (new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc),new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc)) ---------------------------------------- (82) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_compare0(:(yvy400, yvy401), [], bb), bb, bc) new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (83) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_compare0(:(yvy400, yvy401), [], bb), bb, bc) at position [6] we obtained the following new rules [LPAR04]: (new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc),new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc)) ---------------------------------------- (84) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (85) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) at position [8] we obtained the following new rules [LPAR04]: (new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba),new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba)) ---------------------------------------- (86) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (87) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_compare0(:(yvy42, yvy43), :(yvy36, yvy37), h), h, ba) at position [8] we obtained the following new rules [LPAR04]: (new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba),new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba)) ---------------------------------------- (88) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (89) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba) at position [8] we obtained the following new rules [LPAR04]: (new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba),new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba)) ---------------------------------------- (90) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba) new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (91) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux0(yvy42, yvy36, new_compare0(yvy43, yvy37, h), h), h, ba) at position [8] we obtained the following new rules [LPAR04]: (new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba),new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba)) ---------------------------------------- (92) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc) new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba) new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (93) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_primCompAux00(new_compare0(yvy401, yvy301, bb), new_compare18(yvy400, yvy300, bb)), bb, bc) The graph contains the following edges 1 > 1, 1 > 2, 2 >= 3, 3 >= 4, 4 >= 5, 5 >= 6, 6 > 7, 6 > 8, 7 >= 10, 8 >= 11 *new_splitLT3([], yvy31, yvy32, yvy33, yvy34, :(yvy400, yvy401), bb, bc) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 6 > 5, 6 > 6, 7 >= 8, 8 >= 9 *new_splitLT(Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy42, yvy43, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 4 >= 7, 5 >= 8 *new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 10, 10 >= 11 *new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, EQ, h, ba) -> new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_primCompAux00(new_compare0(yvy43, yvy37, h), new_compare18(yvy42, yvy36, h)), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11 *new_splitLT2(yvy36, yvy37, yvy38, yvy39, Branch(yvy400, yvy401, yvy402, yvy403, yvy404), yvy41, yvy42, yvy43, LT, h, ba) -> new_splitLT3(yvy400, yvy401, yvy402, yvy403, yvy404, :(yvy42, yvy43), h, ba) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 10 >= 7, 11 >= 8 *new_splitLT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 9, 11 >= 10 *new_splitLT1(yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, GT, bb, bc) -> new_splitLT(yvy34, yvy400, yvy401, bb, bc) The graph contains the following edges 4 >= 1, 5 >= 2, 6 >= 3, 8 >= 4, 9 >= 5 *new_splitLT11(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, GT, h, ba) -> new_splitLT(yvy41, yvy42, yvy43, h, ba) The graph contains the following edges 6 >= 1, 7 >= 2, 8 >= 3, 10 >= 4, 11 >= 5 ---------------------------------------- (94) YES ---------------------------------------- (95) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, [], bb, bc) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, [], bb, bc) The TRS R consists of the following rules: new_esEs6(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Bool) -> new_esEs13(yvy90, yvy93) new_ltEs19(yvy100, yvy101, ty_Integer) -> new_ltEs11(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Float) -> new_lt8(yvy89, yvy92) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> LT new_esEs11(yvy4000, yvy3000, app(ty_[], dba)) -> new_esEs24(yvy4000, yvy3000, dba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(yvy89, yvy92, ty_Char) -> new_lt6(yvy89, yvy92) new_esEs17(Float(yvy40000, yvy40001), Float(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_pePe(True, yvy290) -> True new_compare11(yvy174, yvy175, True, bf) -> LT new_compare12(yvy191, yvy192, False, edf, edg) -> GT new_ltEs20(yvy151, yvy153, app(ty_Maybe, cba)) -> new_ltEs15(yvy151, yvy153, cba) new_esEs26(yvy40000, yvy30000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs15(yvy40000, yvy30000, bbf, bbg, bbh) new_esEs37(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_ltEs24(yvy91, yvy94, ty_Int) -> new_ltEs4(yvy91, yvy94) new_esEs30(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, app(app(ty_@2, bef), beg)) -> new_esEs18(yvy40002, yvy30002, bef, beg) new_esEs34(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_esEs18(yvy1001, yvy1011, eaa, eab) new_ltEs24(yvy91, yvy94, ty_@0) -> new_ltEs10(yvy91, yvy94) new_lt20(yvy1001, yvy1011, ty_Bool) -> new_lt15(yvy1001, yvy1011) new_compare16(yvy201, yvy202, yvy203, yvy204, False, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, yvy206, bba, bbb) new_esEs7(yvy4001, yvy3001, app(app(ty_@2, cef), ceg)) -> new_esEs18(yvy4001, yvy3001, cef, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy30000))) -> GT new_lt20(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_lt18(yvy1001, yvy1011, eba) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs13(yvy1000, yvy1010, ecg, ech, eda) new_esEs28(yvy40002, yvy30002, app(ty_Maybe, bee)) -> new_esEs14(yvy40002, yvy30002, bee) new_esEs29(yvy150, yvy152, ty_@0) -> new_esEs19(yvy150, yvy152) new_esEs33(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, ty_Double) -> new_ltEs7(yvy107, yvy108) new_lt23(yvy90, yvy93, ty_Ordering) -> new_lt4(yvy90, yvy93) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs21(yvy1002, yvy1012, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs13(yvy1002, yvy1012, ebe, ebf, ebg) new_esEs38(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_esEs14(yvy89, yvy92, fcd) new_ltEs19(yvy100, yvy101, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy100, yvy101, fb, fc) new_esEs37(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_esEs21(yvy1000, yvy1010, ehf, ehg) new_primCmpInt(Neg(Succ(yvy40000)), Neg(yvy3000)) -> new_primCmpNat0(yvy3000, Succ(yvy40000)) new_esEs10(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_lt20(yvy1001, yvy1011, ty_@0) -> new_lt13(yvy1001, yvy1011) new_lt18(yvy150, yvy152, cab) -> new_esEs12(new_compare30(yvy150, yvy152, cab), LT) new_esEs31(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_lt11(yvy150, yvy152, app(ty_[], eh)) -> new_lt5(yvy150, yvy152, eh) new_esEs6(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_Ordering) -> new_ltEs17(yvy114, yvy115) new_esEs33(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_esEs4(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt5(yvy150, yvy152, eh) -> new_esEs12(new_compare0(yvy150, yvy152, eh), LT) new_esEs5(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_ltEs10(yvy100, yvy101) -> new_fsEs(new_compare19(yvy100, yvy101)) new_esEs32(yvy40001, yvy30001, app(ty_[], ddg)) -> new_esEs24(yvy40001, yvy30001, ddg) new_esEs34(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_esEs14(yvy1001, yvy1011, eaf) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Int, gb) -> new_ltEs4(yvy1000, yvy1010) new_compare18(yvy400, yvy300, app(ty_Maybe, bgb)) -> new_compare14(yvy400, yvy300, bgb) new_esEs5(yvy4001, yvy3001, app(ty_[], egf)) -> new_esEs24(yvy4001, yvy3001, egf) new_compare19(@0, @0) -> EQ new_esEs5(yvy4001, yvy3001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs15(yvy4001, yvy3001, efe, eff, efg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_lt7(yvy1000, yvy1010, dhd) new_esEs8(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) new_esEs32(yvy40001, yvy30001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs15(yvy40001, yvy30001, dcf, dcg, dch) new_lt19(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_ltEs8(yvy114, yvy115, app(ty_[], df)) -> new_ltEs6(yvy114, yvy115, df) new_ltEs8(yvy114, yvy115, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy114, yvy115, ea, eb, ec) new_ltEs23(yvy1001, yvy1011, ty_Char) -> new_ltEs9(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_Ordering) -> new_ltEs17(yvy1002, yvy1012) new_primEqInt(Pos(Succ(yvy400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy300000))) -> False new_esEs7(yvy4001, yvy3001, app(ty_Maybe, cee)) -> new_esEs14(yvy4001, yvy3001, cee) new_compare29(Right(yvy4000), Right(yvy3000), bgc, bgd) -> new_compare24(yvy4000, yvy3000, new_esEs11(yvy4000, yvy3000, bgd), bgc, bgd) new_esEs21(Left(yvy40000), Right(yvy30000), dfc, dec) -> False new_esEs21(Right(yvy40000), Left(yvy30000), dfc, dec) -> False new_lt19(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_lt18(yvy1000, yvy1010, dhg) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Int) -> new_esEs22(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Float) -> new_ltEs5(yvy91, yvy94) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, app(ty_[], bg)) -> new_ltEs6(yvy100, yvy101, bg) new_ltEs20(yvy151, yvy153, ty_Int) -> new_ltEs4(yvy151, yvy153) new_lt20(yvy1001, yvy1011, app(ty_Maybe, eaf)) -> new_lt7(yvy1001, yvy1011, eaf) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Bool) -> new_ltEs14(yvy100, yvy101) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_[], ecd)) -> new_ltEs6(yvy1000, yvy1010, ecd) new_esEs26(yvy40000, yvy30000, app(ty_[], bcg)) -> new_esEs24(yvy40000, yvy30000, bcg) new_lt23(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_lt10(yvy90, yvy93, fda, fdb) new_ltEs19(yvy100, yvy101, app(app(ty_Either, ga), gb)) -> new_ltEs16(yvy100, yvy101, ga, gb) new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_Either, edc), edd)) -> new_ltEs16(yvy1000, yvy1010, edc, edd) new_lt23(yvy90, yvy93, ty_Double) -> new_lt17(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_@2, hg), hh)) -> new_ltEs12(yvy1000, yvy1010, hg, hh) new_primEqNat0(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat0(yvy400000, yvy300000) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) -> LT new_ltEs8(yvy114, yvy115, ty_Bool) -> new_ltEs14(yvy114, yvy115) new_ltEs8(yvy114, yvy115, app(app(ty_Either, ee), ef)) -> new_ltEs16(yvy114, yvy115, ee, ef) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_Either, hc), hd), gb) -> new_ltEs16(yvy1000, yvy1010, hc, hd) new_esEs35(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs24([], [], cbe) -> True new_ltEs17(LT, GT) -> True new_esEs29(yvy150, yvy152, ty_Int) -> new_esEs22(yvy150, yvy152) new_not(True) -> False new_esEs8(yvy4002, yvy3002, ty_Int) -> new_esEs22(yvy4002, yvy3002) new_compare18(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) new_compare14(Nothing, Just(yvy3000), bgb) -> LT new_compare18(yvy400, yvy300, app(app(ty_@2, bfe), bff)) -> new_compare26(yvy400, yvy300, bfe, bff) new_primCompAux00(yvy56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Ratio, ede)) -> new_ltEs18(yvy1000, yvy1010, ede) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs37(yvy1000, yvy1010, ty_Integer) -> new_esEs16(yvy1000, yvy1010) new_esEs10(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(ty_Either, bae), baf)) -> new_ltEs16(yvy1000, yvy1010, bae, baf) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_[], dfb), dec) -> new_esEs24(yvy40000, yvy30000, dfb) new_esEs33(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_esEs21(yvy1000, yvy1010, dhe, dhf) new_esEs27(yvy40001, yvy30001, app(app(ty_Either, bdg), bdh)) -> new_esEs21(yvy40001, yvy30001, bdg, bdh) new_lt11(yvy150, yvy152, ty_Float) -> new_lt8(yvy150, yvy152) new_ltEs17(EQ, GT) -> True new_esEs28(yvy40002, yvy30002, ty_Bool) -> new_esEs13(yvy40002, yvy30002) new_esEs18(@2(yvy40000, yvy40001), @2(yvy30000, yvy30001), dbb, dbc) -> new_asAs(new_esEs31(yvy40000, yvy30000, dbb), new_esEs32(yvy40001, yvy30001, dbc)) new_esEs34(yvy1001, yvy1011, ty_Bool) -> new_esEs13(yvy1001, yvy1011) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Float, gb) -> new_ltEs5(yvy1000, yvy1010) new_esEs26(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(app(ty_@2, ccb), ccc)) -> new_esEs18(yvy40000, yvy30000, ccb, ccc) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(ty_@2, ge), gf), gb) -> new_ltEs12(yvy1000, yvy1010, ge, gf) new_ltEs16(Left(yvy1000), Right(yvy1010), ga, gb) -> True new_ltEs19(yvy100, yvy101, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs13(yvy100, yvy101, fd, ff, fg) new_lt19(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_esEs4(yvy4000, yvy3000, app(ty_[], cbe)) -> new_esEs24(yvy4000, yvy3000, cbe) new_esEs12(LT, LT) -> True new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_[], dge)) -> new_esEs24(yvy40000, yvy30000, dge) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Integer, dec) -> new_esEs16(yvy40000, yvy30000) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_primEqNat0(Succ(yvy400000), Zero) -> False new_primEqNat0(Zero, Succ(yvy300000)) -> False new_lt14(yvy150, yvy152) -> new_esEs12(new_compare15(yvy150, yvy152), LT) new_esEs37(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs15(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs21(yvy1002, yvy1012, app(app(ty_@2, ebc), ebd)) -> new_ltEs12(yvy1002, yvy1012, ebc, ebd) new_lt11(yvy150, yvy152, ty_Char) -> new_lt6(yvy150, yvy152) new_ltEs22(yvy107, yvy108, ty_Char) -> new_ltEs9(yvy107, yvy108) new_compare10(yvy184, yvy185, True, bd, be) -> LT new_esEs37(yvy1000, yvy1010, ty_Double) -> new_esEs25(yvy1000, yvy1010) new_esEs29(yvy150, yvy152, ty_Bool) -> new_esEs13(yvy150, yvy152) new_compare14(Just(yvy4000), Just(yvy3000), bgb) -> new_compare25(yvy4000, yvy3000, new_esEs9(yvy4000, yvy3000, bgb), bgb) new_compare25(yvy100, yvy101, False, fa) -> new_compare11(yvy100, yvy101, new_ltEs19(yvy100, yvy101, fa), fa) new_compare7(EQ, EQ) -> EQ new_esEs26(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, ty_Char) -> new_esEs23(yvy4002, yvy3002) new_lt20(yvy1001, yvy1011, ty_Integer) -> new_lt14(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, ty_Integer) -> new_ltEs11(yvy151, yvy153) new_ltEs17(LT, LT) -> True new_ltEs20(yvy151, yvy153, ty_Bool) -> new_ltEs14(yvy151, yvy153) new_primCompAux00(yvy56, GT) -> GT new_lt21(yvy1000, yvy1010, app(ty_[], egg)) -> new_lt5(yvy1000, yvy1010, egg) new_ltEs23(yvy1001, yvy1011, ty_Float) -> new_ltEs5(yvy1001, yvy1011) new_lt19(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_esEs37(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Ordering) -> new_esEs12(yvy40001, yvy30001) new_esEs32(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_compare18(yvy400, yvy300, ty_Ordering) -> new_compare7(yvy400, yvy300) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_lt20(yvy1001, yvy1011, ty_Int) -> new_lt12(yvy1001, yvy1011) new_esEs31(yvy40000, yvy30000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs15(yvy40000, yvy30000, dbd, dbe, dbf) new_esEs31(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy151, yvy153, caf, cag, cah) new_esEs30(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs30(yvy40000, yvy30000, app(ty_Maybe, cca)) -> new_esEs14(yvy40000, yvy30000, cca) new_compare18(yvy400, yvy300, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare27(yvy400, yvy300, bfg, bfh, bga) new_primCmpInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> GT new_ltEs20(yvy151, yvy153, ty_@0) -> new_ltEs10(yvy151, yvy153) new_esEs31(yvy40000, yvy30000, app(ty_Ratio, dcb)) -> new_esEs20(yvy40000, yvy30000, dcb) new_ltEs21(yvy1002, yvy1012, ty_Bool) -> new_ltEs14(yvy1002, yvy1012) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_lt21(yvy1000, yvy1010, ty_Integer) -> new_lt14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_Integer) -> new_compare15(yvy400, yvy300) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_@2, ce), cf)) -> new_esEs18(yvy40000, yvy30000, ce, cf) new_lt22(yvy89, yvy92, app(ty_[], fbf)) -> new_lt5(yvy89, yvy92, fbf) new_esEs38(yvy89, yvy92, ty_Integer) -> new_esEs16(yvy89, yvy92) new_ltEs8(yvy114, yvy115, app(app(ty_@2, dg), dh)) -> new_ltEs12(yvy114, yvy115, dg, dh) new_esEs6(yvy4000, yvy3000, app(ty_Maybe, cdc)) -> new_esEs14(yvy4000, yvy3000, cdc) new_esEs34(yvy1001, yvy1011, ty_Int) -> new_esEs22(yvy1001, yvy1011) new_ltEs8(yvy114, yvy115, app(ty_Maybe, ed)) -> new_ltEs15(yvy114, yvy115, ed) new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) -> LT new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_esEs9(yvy4000, yvy3000, app(ty_[], fge)) -> new_esEs24(yvy4000, yvy3000, fge) new_primPlusNat1(Succ(yvy29200), Succ(yvy4001000)) -> Succ(Succ(new_primPlusNat1(yvy29200, yvy4001000))) new_esEs39(yvy90, yvy93, ty_Int) -> new_esEs22(yvy90, yvy93) new_lt21(yvy1000, yvy1010, ty_@0) -> new_lt13(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare7(GT, GT) -> EQ new_esEs33(yvy1000, yvy1010, ty_Ordering) -> new_esEs12(yvy1000, yvy1010) new_primCmpNat0(Zero, Succ(yvy30000)) -> LT new_esEs26(yvy40000, yvy30000, app(app(ty_Either, bce), bcf)) -> new_esEs21(yvy40000, yvy30000, bce, bcf) new_compare18(yvy400, yvy300, app(ty_[], bfd)) -> new_compare0(yvy400, yvy300, bfd) new_ltEs19(yvy100, yvy101, ty_@0) -> new_ltEs10(yvy100, yvy101) new_compare18(yvy400, yvy300, ty_Bool) -> new_compare28(yvy400, yvy300) new_esEs32(yvy40001, yvy30001, app(app(ty_Either, dde), ddf)) -> new_esEs21(yvy40001, yvy30001, dde, ddf) new_esEs6(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs18(yvy4000, yvy3000, cdd, cde) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs15(yvy40000, yvy30000, dfd, dfe, dff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs4(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs8(yvy4002, yvy3002, app(app(ty_@2, cfh), cga)) -> new_esEs18(yvy4002, yvy3002, cfh, cga) new_ltEs21(yvy1002, yvy1012, ty_Double) -> new_ltEs7(yvy1002, yvy1012) new_primCmpNat0(Succ(yvy40000), Zero) -> GT new_esEs32(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs15(yvy40001, yvy30001, bch, bda, bdb) new_esEs29(yvy150, yvy152, app(ty_Maybe, bah)) -> new_esEs14(yvy150, yvy152, bah) new_ltEs22(yvy107, yvy108, app(app(ty_Either, efa), efb)) -> new_ltEs16(yvy107, yvy108, efa, efb) new_pePe(False, yvy290) -> yvy290 new_esEs39(yvy90, yvy93, ty_Char) -> new_esEs23(yvy90, yvy93) new_esEs38(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_esEs21(yvy89, yvy92, fce, fcf) new_lt11(yvy150, yvy152, app(ty_Ratio, cab)) -> new_lt18(yvy150, yvy152, cab) new_lt19(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Maybe, cd)) -> new_esEs14(yvy40000, yvy30000, cd) new_esEs10(yvy4000, yvy3000, app(ty_[], chg)) -> new_esEs24(yvy4000, yvy3000, chg) new_esEs36(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_esEs30(yvy40000, yvy30000, ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, ty_Double) -> new_esEs25(yvy40001, yvy30001) new_lt20(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_lt9(yvy1001, yvy1011, eac, ead, eae) new_esEs38(yvy89, yvy92, ty_Bool) -> new_esEs13(yvy89, yvy92) new_esEs7(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_lt11(yvy150, yvy152, ty_Bool) -> new_lt15(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Ratio, he), gb) -> new_ltEs18(yvy1000, yvy1010, he) new_lt11(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_lt10(yvy150, yvy152, bha, bhb) new_esEs6(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs15(yvy4000, yvy3000, cch, cda, cdb) new_lt23(yvy90, yvy93, ty_Float) -> new_lt8(yvy90, yvy93) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_esEs38(yvy89, yvy92, ty_Ordering) -> new_esEs12(yvy89, yvy92) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Ratio, deg), dec) -> new_esEs20(yvy40000, yvy30000, deg) new_esEs29(yvy150, yvy152, app(ty_[], eh)) -> new_esEs24(yvy150, yvy152, eh) new_lt21(yvy1000, yvy1010, ty_Bool) -> new_lt15(yvy1000, yvy1010) new_primEqInt(Pos(Zero), Neg(Succ(yvy300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy300000))) -> False new_esEs8(yvy4002, yvy3002, app(ty_[], cge)) -> new_esEs24(yvy4002, yvy3002, cge) new_compare7(EQ, GT) -> LT new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Double) -> new_ltEs7(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_lt23(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_lt16(yvy90, yvy93, fdg, fdh) new_ltEs14(True, True) -> True new_esEs21(Left(yvy40000), Left(yvy30000), ty_Int, dec) -> new_esEs22(yvy40000, yvy30000) new_ltEs15(Nothing, Nothing, fh) -> True new_ltEs20(yvy151, yvy153, app(app(ty_Either, cbb), cbc)) -> new_ltEs16(yvy151, yvy153, cbb, cbc) new_esEs29(yvy150, yvy152, ty_Char) -> new_esEs23(yvy150, yvy152) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_esEs39(yvy90, yvy93, ty_Integer) -> new_esEs16(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(yvy40000, yvy30000, dcc, dcd) new_ltEs22(yvy107, yvy108, ty_Ordering) -> new_ltEs17(yvy107, yvy108) new_ltEs15(Just(yvy1000), Nothing, fh) -> False new_compare26(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfe, bff) -> new_compare210(yvy4000, yvy4001, yvy3000, yvy3001, new_asAs(new_esEs4(yvy4000, yvy3000, bfe), new_esEs5(yvy4001, yvy3001, bff)), bfe, bff) new_esEs38(yvy89, yvy92, ty_Int) -> new_esEs22(yvy89, yvy92) new_ltEs19(yvy100, yvy101, ty_Int) -> new_ltEs4(yvy100, yvy101) new_lt22(yvy89, yvy92, ty_Ordering) -> new_lt4(yvy89, yvy92) new_compare18(yvy400, yvy300, app(app(ty_Either, bgc), bgd)) -> new_compare29(yvy400, yvy300, bgc, bgd) new_primEqInt(Neg(Succ(yvy400000)), Neg(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_esEs19(@0, @0) -> True new_esEs34(yvy1001, yvy1011, ty_Ordering) -> new_esEs12(yvy1001, yvy1011) new_esEs29(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs15(yvy150, yvy152, bgf, bgg, bgh) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs28(yvy40002, yvy30002, ty_Integer) -> new_esEs16(yvy40002, yvy30002) new_primCmpInt(Neg(Zero), Pos(Succ(yvy30000))) -> LT new_esEs32(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs15(yvy40000, yvy30000, ca, cb, cc) new_ltEs7(yvy100, yvy101) -> new_fsEs(new_compare9(yvy100, yvy101)) new_compare13(Char(yvy4000), Char(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs33(yvy1000, yvy1010, ty_Float) -> new_esEs17(yvy1000, yvy1010) new_esEs7(yvy4001, yvy3001, ty_Integer) -> new_esEs16(yvy4001, yvy3001) new_primMulInt(Pos(yvy30000), Pos(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_esEs5(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs26(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs4(yvy4000, yvy3000, app(app(ty_Either, dfc), dec)) -> new_esEs21(yvy4000, yvy3000, dfc, dec) new_lt11(yvy150, yvy152, ty_Ordering) -> new_lt4(yvy150, yvy152) new_esEs26(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt11(yvy150, yvy152, ty_@0) -> new_lt13(yvy150, yvy152) new_ltEs16(Left(yvy1000), Left(yvy1010), app(app(app(ty_@3, gg), gh), ha), gb) -> new_ltEs13(yvy1000, yvy1010, gg, gh, ha) new_esEs24(:(yvy40000, yvy40001), [], cbe) -> False new_esEs24([], :(yvy30000, yvy30001), cbe) -> False new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Bool, dec) -> new_esEs13(yvy40000, yvy30000) new_compare7(LT, LT) -> EQ new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Integer) -> new_ltEs11(yvy1000, yvy1010) new_primMulNat0(Succ(yvy300000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy400100)) -> Zero new_ltEs21(yvy1002, yvy1012, app(ty_Maybe, ebh)) -> new_ltEs15(yvy1002, yvy1012, ebh) new_compare16(yvy201, yvy202, yvy203, yvy204, True, yvy206, bba, bbb) -> new_compare17(yvy201, yvy202, yvy203, yvy204, True, bba, bbb) new_esEs10(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy400100) -> Succ(yvy400100) new_esEs37(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_esEs14(yvy1000, yvy1010, ehe) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Integer) -> new_compare15(new_sr0(yvy4000, yvy3001), new_sr0(yvy3000, yvy4001)) new_ltEs23(yvy1001, yvy1011, ty_Int) -> new_ltEs4(yvy1001, yvy1011) new_lt22(yvy89, yvy92, ty_Integer) -> new_lt14(yvy89, yvy92) new_ltEs5(yvy100, yvy101) -> new_fsEs(new_compare8(yvy100, yvy101)) new_lt19(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_esEs32(yvy40001, yvy30001, app(ty_Ratio, ddd)) -> new_esEs20(yvy40001, yvy30001, ddd) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs11(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Char) -> new_esEs23(yvy4001, yvy3001) new_esEs10(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs20(yvy4000, yvy3000, chd) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Char) -> new_ltEs9(yvy1000, yvy1010) new_esEs33(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_ltEs20(yvy151, yvy153, app(app(ty_@2, cad), cae)) -> new_ltEs12(yvy151, yvy153, cad, cae) new_esEs30(yvy40000, yvy30000, app(ty_[], ccg)) -> new_esEs24(yvy40000, yvy30000, ccg) new_lt11(yvy150, yvy152, ty_Integer) -> new_lt14(yvy150, yvy152) new_ltEs19(yvy100, yvy101, ty_Double) -> new_ltEs7(yvy100, yvy101) new_esEs33(yvy1000, yvy1010, app(ty_Ratio, dhg)) -> new_esEs20(yvy1000, yvy1010, dhg) new_esEs10(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare28(True, False) -> GT new_esEs39(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs15(yvy90, yvy93, fdc, fdd, fde) new_esEs20(:%(yvy40000, yvy40001), :%(yvy30000, yvy30001), efd) -> new_asAs(new_esEs35(yvy40000, yvy30000, efd), new_esEs36(yvy40001, yvy30001, efd)) new_lt22(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_lt10(yvy89, yvy92, fbg, fbh) new_esEs6(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs21(yvy4000, yvy3000, cdg, cdh) new_esEs26(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs8(yvy4002, yvy3002, app(ty_Ratio, cgb)) -> new_esEs20(yvy4002, yvy3002, cgb) new_esEs34(yvy1001, yvy1011, ty_@0) -> new_esEs19(yvy1001, yvy1011) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy29200), Zero) -> Succ(yvy29200) new_primPlusNat1(Zero, Succ(yvy4001000)) -> Succ(yvy4001000) new_esEs11(yvy4000, yvy3000, app(ty_Ratio, daf)) -> new_esEs20(yvy4000, yvy3000, daf) new_esEs31(yvy40000, yvy30000, app(ty_[], dce)) -> new_esEs24(yvy40000, yvy30000, dce) new_lt23(yvy90, yvy93, ty_@0) -> new_lt13(yvy90, yvy93) new_esEs13(True, True) -> True new_lt21(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_lt10(yvy1000, yvy1010, egh, eha) new_ltEs11(yvy100, yvy101) -> new_fsEs(new_compare15(yvy100, yvy101)) new_ltEs8(yvy114, yvy115, ty_Int) -> new_ltEs4(yvy114, yvy115) new_esEs28(yvy40002, yvy30002, app(app(ty_Either, bfa), bfb)) -> new_esEs21(yvy40002, yvy30002, bfa, bfb) new_ltEs4(yvy100, yvy101) -> new_fsEs(new_compare6(yvy100, yvy101)) new_esEs4(yvy4000, yvy3000, app(ty_Maybe, bh)) -> new_esEs14(yvy4000, yvy3000, bh) new_compare28(False, False) -> EQ new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Maybe, dfg)) -> new_esEs14(yvy40000, yvy30000, dfg) new_esEs34(yvy1001, yvy1011, app(ty_Ratio, eba)) -> new_esEs20(yvy1001, yvy1011, eba) new_esEs11(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_compare210(yvy150, yvy151, yvy152, yvy153, False, bhf, bhg) -> new_compare16(yvy150, yvy151, yvy152, yvy153, new_lt11(yvy150, yvy152, bhf), new_asAs(new_esEs29(yvy150, yvy152, bhf), new_ltEs20(yvy151, yvy153, bhg)), bhf, bhg) new_esEs27(yvy40001, yvy30001, app(ty_Maybe, bdc)) -> new_esEs14(yvy40001, yvy30001, bdc) new_ltEs20(yvy151, yvy153, ty_Float) -> new_ltEs5(yvy151, yvy153) new_lt21(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_lt18(yvy1000, yvy1010, ehh) new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_[], dc)) -> new_esEs24(yvy40000, yvy30000, dc) new_compare210(yvy150, yvy151, yvy152, yvy153, True, bhf, bhg) -> EQ new_esEs30(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs29(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_esEs21(yvy150, yvy152, bhh, caa) new_ltEs19(yvy100, yvy101, ty_Ordering) -> new_ltEs17(yvy100, yvy101) new_esEs39(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_esEs14(yvy90, yvy93, fdf) new_fsEs(yvy291) -> new_not(new_esEs12(yvy291, GT)) new_ltEs21(yvy1002, yvy1012, ty_Int) -> new_ltEs4(yvy1002, yvy1012) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Ordering) -> new_ltEs17(yvy1000, yvy1010) new_compare29(Left(yvy4000), Right(yvy3000), bgc, bgd) -> LT new_esEs11(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primMulInt(Neg(yvy30000), Neg(yvy40010)) -> Pos(new_primMulNat0(yvy30000, yvy40010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy30000))) -> new_primCmpNat0(Zero, Succ(yvy30000)) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_compare25(yvy100, yvy101, True, fa) -> EQ new_compare18(yvy400, yvy300, app(ty_Ratio, bge)) -> new_compare30(yvy400, yvy300, bge) new_compare14(Just(yvy4000), Nothing, bgb) -> GT new_ltEs15(Just(yvy1000), Just(yvy1010), app(app(ty_@2, ece), ecf)) -> new_ltEs12(yvy1000, yvy1010, ece, ecf) new_ltEs18(yvy100, yvy101, gc) -> new_fsEs(new_compare30(yvy100, yvy101, gc)) new_compare30(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ty_Int) -> new_compare6(new_sr(yvy4000, yvy3001), new_sr(yvy3000, yvy4001)) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Char) -> new_esEs23(yvy40000, yvy30000) new_esEs34(yvy1001, yvy1011, ty_Double) -> new_esEs25(yvy1001, yvy1011) new_lt21(yvy1000, yvy1010, ty_Float) -> new_lt8(yvy1000, yvy1010) new_ltEs21(yvy1002, yvy1012, app(app(ty_Either, eca), ecb)) -> new_ltEs16(yvy1002, yvy1012, eca, ecb) new_ltEs19(yvy100, yvy101, app(ty_Maybe, fh)) -> new_ltEs15(yvy100, yvy101, fh) new_esEs28(yvy40002, yvy30002, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs15(yvy40002, yvy30002, beb, bec, bed) new_esEs10(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs18(yvy4000, yvy3000, chb, chc) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Bool) -> new_ltEs14(yvy1000, yvy1010) new_ltEs17(EQ, EQ) -> True new_compare14(Nothing, Nothing, bgb) -> EQ new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, app(app(ty_Either, egd), ege)) -> new_esEs21(yvy4001, yvy3001, egd, ege) new_ltEs20(yvy151, yvy153, ty_Ordering) -> new_ltEs17(yvy151, yvy153) new_esEs33(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_esEs18(yvy1000, yvy1010, dgg, dgh) new_esEs29(yvy150, yvy152, ty_Integer) -> new_esEs16(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, app(ty_[], cea)) -> new_esEs24(yvy4000, yvy3000, cea) new_lt4(yvy150, yvy152) -> new_esEs12(new_compare7(yvy150, yvy152), LT) new_esEs34(yvy1001, yvy1011, ty_Float) -> new_esEs17(yvy1001, yvy1011) new_esEs4(yvy4000, yvy3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs15(yvy4000, yvy3000, bbc, bbd, bbe) new_compare6(yvy400, yvy300) -> new_primCmpInt(yvy400, yvy300) new_compare27(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfg, bfh, bga) -> new_compare211(yvy4000, yvy4001, yvy4002, yvy3000, yvy3001, yvy3002, new_asAs(new_esEs6(yvy4000, yvy3000, bfg), new_asAs(new_esEs7(yvy4001, yvy3001, bfh), new_esEs8(yvy4002, yvy3002, bga))), bfg, bfh, bga) new_ltEs15(Just(yvy1000), Just(yvy1010), app(ty_Maybe, edb)) -> new_ltEs15(yvy1000, yvy1010, edb) new_lt23(yvy90, yvy93, ty_Bool) -> new_lt15(yvy90, yvy93) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Float) -> new_ltEs5(yvy100, yvy101) new_esEs6(yvy4000, yvy3000, ty_Char) -> new_esEs23(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fgb)) -> new_esEs20(yvy4000, yvy3000, fgb) new_esEs37(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_ltEs19(yvy100, yvy101, ty_Char) -> new_ltEs9(yvy100, yvy101) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs17(GT, LT) -> False new_esEs7(yvy4001, yvy3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs15(yvy4001, yvy3001, ceb, cec, ced) new_compare212(yvy107, yvy108, True, edh, eea) -> EQ new_compare11(yvy174, yvy175, False, bf) -> GT new_ltEs17(EQ, LT) -> False new_lt21(yvy1000, yvy1010, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt9(yvy1000, yvy1010, ehb, ehc, ehd) new_esEs11(yvy4000, yvy3000, app(app(ty_@2, dad), dae)) -> new_esEs18(yvy4000, yvy3000, dad, dae) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Double, gb) -> new_ltEs7(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, app(app(app(ty_@3, fad), fae), faf)) -> new_ltEs13(yvy1001, yvy1011, fad, fae, faf) new_primMulInt(Pos(yvy30000), Neg(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_primMulInt(Neg(yvy30000), Pos(yvy40010)) -> Neg(new_primMulNat0(yvy30000, yvy40010)) new_esEs29(yvy150, yvy152, ty_Ordering) -> new_esEs12(yvy150, yvy152) new_esEs34(yvy1001, yvy1011, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs15(yvy1001, yvy1011, eac, ead, eae) new_esEs39(yvy90, yvy93, ty_Float) -> new_esEs17(yvy90, yvy93) new_esEs34(yvy1001, yvy1011, app(ty_[], dhh)) -> new_esEs24(yvy1001, yvy1011, dhh) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, ffg)) -> new_esEs14(yvy4000, yvy3000, ffg) new_esEs7(yvy4001, yvy3001, app(ty_[], cfc)) -> new_esEs24(yvy4001, yvy3001, cfc) new_esEs37(yvy1000, yvy1010, ty_@0) -> new_esEs19(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_Bool) -> new_ltEs14(yvy1001, yvy1011) new_esEs38(yvy89, yvy92, ty_Char) -> new_esEs23(yvy89, yvy92) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(yvy1000, yvy1010, baa, bab, bac) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, True, bhc, bhd, bhe) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs18(yvy4000, yvy3000, ffh, fga) new_compare15(Integer(yvy4000), Integer(yvy3000)) -> new_primCmpInt(yvy4000, yvy3000) new_lt23(yvy90, yvy93, ty_Integer) -> new_lt14(yvy90, yvy93) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Int) -> new_ltEs4(yvy1000, yvy1010) new_ltEs9(yvy100, yvy101) -> new_fsEs(new_compare13(yvy100, yvy101)) new_esEs30(yvy40000, yvy30000, app(app(ty_Either, cce), ccf)) -> new_esEs21(yvy40000, yvy30000, cce, ccf) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, False, fbc, fbd, fbe) -> new_compare111(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, new_lt22(yvy89, yvy92, fbc), new_asAs(new_esEs38(yvy89, yvy92, fbc), new_pePe(new_lt23(yvy90, yvy93, fbd), new_asAs(new_esEs39(yvy90, yvy93, fbd), new_ltEs24(yvy91, yvy94, fbe)))), fbc, fbd, fbe) new_compare18(yvy400, yvy300, ty_Char) -> new_compare13(yvy400, yvy300) new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, bhc, bhd, bhe) -> GT new_esEs10(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_sr0(Integer(yvy30000), Integer(yvy40010)) -> Integer(new_primMulInt(yvy30000, yvy40010)) new_ltEs6(yvy100, yvy101, bg) -> new_fsEs(new_compare0(yvy100, yvy101, bg)) new_esEs28(yvy40002, yvy30002, app(ty_[], bfc)) -> new_esEs24(yvy40002, yvy30002, bfc) new_ltEs22(yvy107, yvy108, ty_Int) -> new_ltEs4(yvy107, yvy108) new_esEs10(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, app(app(ty_Either, fah), fba)) -> new_ltEs16(yvy1001, yvy1011, fah, fba) new_compare7(EQ, LT) -> GT new_esEs37(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs13(False, False) -> True new_esEs11(yvy4000, yvy3000, app(ty_Maybe, dac)) -> new_esEs14(yvy4000, yvy3000, dac) new_compare7(GT, LT) -> GT new_esEs8(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare29(Left(yvy4000), Left(yvy3000), bgc, bgd) -> new_compare212(yvy4000, yvy3000, new_esEs10(yvy4000, yvy3000, bgc), bgc, bgd) new_esEs38(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_esEs20(yvy89, yvy92, fcg) new_lt19(yvy1000, yvy1010, app(app(ty_@2, dgg), dgh)) -> new_lt10(yvy1000, yvy1010, dgg, dgh) new_esEs14(Just(yvy40000), Just(yvy30000), app(app(ty_Either, da), db)) -> new_esEs21(yvy40000, yvy30000, da, db) new_esEs27(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_primCompAux0(yvy400, yvy300, yvy51, bb) -> new_primCompAux00(yvy51, new_compare18(yvy400, yvy300, bb)) new_ltEs23(yvy1001, yvy1011, app(ty_[], faa)) -> new_ltEs6(yvy1001, yvy1011, faa) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Float) -> new_esEs17(yvy40000, yvy30000) new_compare18(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_esEs33(yvy1000, yvy1010, ty_Int) -> new_esEs22(yvy1000, yvy1010) new_esEs12(GT, GT) -> True new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_[], gd), gb) -> new_ltEs6(yvy1000, yvy1010, gd) new_compare0([], :(yvy3000, yvy3001), bfd) -> LT new_asAs(True, yvy168) -> yvy168 new_lt19(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_lt20(yvy1001, yvy1011, ty_Float) -> new_lt8(yvy1001, yvy1011) new_compare10(yvy184, yvy185, False, bd, be) -> GT new_lt19(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_lt22(yvy89, yvy92, ty_@0) -> new_lt13(yvy89, yvy92) new_esEs26(yvy40000, yvy30000, app(app(ty_@2, bcb), bcc)) -> new_esEs18(yvy40000, yvy30000, bcb, bcc) new_esEs32(yvy40001, yvy30001, app(app(ty_@2, ddb), ddc)) -> new_esEs18(yvy40001, yvy30001, ddb, ddc) new_lt20(yvy1001, yvy1011, app(app(ty_@2, eaa), eab)) -> new_lt10(yvy1001, yvy1011, eaa, eab) new_esEs29(yvy150, yvy152, ty_Float) -> new_esEs17(yvy150, yvy152) new_ltEs23(yvy1001, yvy1011, ty_Integer) -> new_ltEs11(yvy1001, yvy1011) new_ltEs16(Right(yvy1000), Left(yvy1010), ga, gb) -> False new_lt16(yvy150, yvy152, bhh, caa) -> new_esEs12(new_compare29(yvy150, yvy152, bhh, caa), LT) new_esEs26(yvy40000, yvy30000, app(ty_Maybe, bca)) -> new_esEs14(yvy40000, yvy30000, bca) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_[], hf)) -> new_ltEs6(yvy1000, yvy1010, hf) new_esEs5(yvy4001, yvy3001, app(app(ty_@2, ega), egb)) -> new_esEs18(yvy4001, yvy3001, ega, egb) new_lt22(yvy89, yvy92, ty_Bool) -> new_lt15(yvy89, yvy92) new_compare7(GT, EQ) -> GT new_esEs31(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) new_ltEs20(yvy151, yvy153, ty_Char) -> new_ltEs9(yvy151, yvy153) new_ltEs21(yvy1002, yvy1012, ty_Float) -> new_ltEs5(yvy1002, yvy1012) new_esEs30(yvy40000, yvy30000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs15(yvy40000, yvy30000, cbf, cbg, cbh) new_esEs32(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_ltEs23(yvy1001, yvy1011, app(app(ty_@2, fab), fac)) -> new_ltEs12(yvy1001, yvy1011, fab, fac) new_lt21(yvy1000, yvy1010, ty_Int) -> new_lt12(yvy1000, yvy1010) new_ltEs20(yvy151, yvy153, ty_Double) -> new_ltEs7(yvy151, yvy153) new_esEs39(yvy90, yvy93, app(app(ty_Either, fdg), fdh)) -> new_esEs21(yvy90, yvy93, fdg, fdh) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_compare24(yvy114, yvy115, True, dd, de) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), app(app(app(ty_@3, ddh), dea), deb), dec) -> new_esEs15(yvy40000, yvy30000, ddh, dea, deb) new_compare211(yvy89, yvy90, yvy91, yvy92, yvy93, yvy94, True, fbc, fbd, fbe) -> EQ new_primCmpInt(Pos(Succ(yvy40000)), Pos(yvy3000)) -> new_primCmpNat0(Succ(yvy40000), yvy3000) new_esEs38(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs15(yvy89, yvy92, fca, fcb, fcc) new_lt13(yvy150, yvy152) -> new_esEs12(new_compare19(yvy150, yvy152), LT) new_esEs29(yvy150, yvy152, ty_Double) -> new_esEs25(yvy150, yvy152) new_esEs4(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_lt22(yvy89, yvy92, app(ty_Ratio, fcg)) -> new_lt18(yvy89, yvy92, fcg) new_esEs30(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_primCompAux00(yvy56, EQ) -> yvy56 new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_Either, dgc), dgd)) -> new_esEs21(yvy40000, yvy30000, dgc, dgd) new_esEs12(EQ, EQ) -> True new_compare0([], [], bfd) -> EQ new_esEs8(yvy4002, yvy3002, ty_Double) -> new_esEs25(yvy4002, yvy3002) new_sr(yvy3000, yvy4001) -> new_primMulInt(yvy3000, yvy4001) new_compare7(LT, GT) -> LT new_esEs10(yvy4000, yvy3000, app(app(ty_Either, che), chf)) -> new_esEs21(yvy4000, yvy3000, che, chf) new_esEs39(yvy90, yvy93, app(ty_[], fch)) -> new_esEs24(yvy90, yvy93, fch) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Char, gb) -> new_ltEs9(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, app(ty_Maybe, efh)) -> new_esEs14(yvy4001, yvy3001, efh) new_lt23(yvy90, yvy93, app(ty_[], fch)) -> new_lt5(yvy90, yvy93, fch) new_esEs27(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_compare7(LT, EQ) -> LT new_esEs34(yvy1001, yvy1011, ty_Char) -> new_esEs23(yvy1001, yvy1011) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(yvy1002, yvy1012, ty_Char) -> new_ltEs9(yvy1002, yvy1012) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_Either, deh), dfa), dec) -> new_esEs21(yvy40000, yvy30000, deh, dfa) new_esEs6(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs24(yvy91, yvy94, ty_Ordering) -> new_ltEs17(yvy91, yvy94) new_ltEs16(Left(yvy1000), Left(yvy1010), app(ty_Maybe, hb), gb) -> new_ltEs15(yvy1000, yvy1010, hb) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, ty_Float) -> new_ltEs5(yvy1000, yvy1010) new_esEs11(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_esEs6(yvy4000, yvy3000, app(ty_Ratio, cdf)) -> new_esEs20(yvy4000, yvy3000, cdf) new_lt23(yvy90, yvy93, app(ty_Ratio, fea)) -> new_lt18(yvy90, yvy93, fea) new_esEs8(yvy4002, yvy3002, ty_Float) -> new_esEs17(yvy4002, yvy3002) new_ltEs22(yvy107, yvy108, ty_Float) -> new_ltEs5(yvy107, yvy108) new_esEs14(Just(yvy40000), Just(yvy30000), ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Char) -> new_esEs23(yvy40002, yvy30002) new_esEs38(yvy89, yvy92, app(ty_[], fbf)) -> new_esEs24(yvy89, yvy92, fbf) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_compare18(yvy400, yvy300, ty_Float) -> new_compare8(yvy400, yvy300) new_esEs4(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_compare111(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, False, yvy223, bhc, bhd, bhe) -> new_compare110(yvy216, yvy217, yvy218, yvy219, yvy220, yvy221, yvy223, bhc, bhd, bhe) new_lt20(yvy1001, yvy1011, ty_Ordering) -> new_lt4(yvy1001, yvy1011) new_ltEs23(yvy1001, yvy1011, app(ty_Maybe, fag)) -> new_ltEs15(yvy1001, yvy1011, fag) new_esEs31(yvy40000, yvy30000, app(ty_Maybe, dbg)) -> new_esEs14(yvy40000, yvy30000, dbg) new_ltEs14(False, True) -> True new_lt19(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt9(yvy1000, yvy1010, dha, dhb, dhc) new_esEs31(yvy40000, yvy30000, app(app(ty_@2, dbh), dca)) -> new_esEs18(yvy40000, yvy30000, dbh, dca) new_esEs7(yvy4001, yvy3001, app(app(ty_Either, cfa), cfb)) -> new_esEs21(yvy4001, yvy3001, cfa, cfb) new_esEs7(yvy4001, yvy3001, app(ty_Ratio, ceh)) -> new_esEs20(yvy4001, yvy3001, ceh) new_ltEs8(yvy114, yvy115, ty_Char) -> new_ltEs9(yvy114, yvy115) new_compare28(False, True) -> LT new_esEs39(yvy90, yvy93, ty_Ordering) -> new_esEs12(yvy90, yvy93) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Ordering, gb) -> new_ltEs17(yvy1000, yvy1010) new_ltEs22(yvy107, yvy108, app(ty_Maybe, eeh)) -> new_ltEs15(yvy107, yvy108, eeh) new_esEs8(yvy4002, yvy3002, ty_Integer) -> new_esEs16(yvy4002, yvy3002) new_esEs5(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt6(yvy150, yvy152) -> new_esEs12(new_compare13(yvy150, yvy152), LT) new_ltEs22(yvy107, yvy108, app(app(ty_@2, eec), eed)) -> new_ltEs12(yvy107, yvy108, eec, eed) new_ltEs24(yvy91, yvy94, app(ty_Ratio, ffc)) -> new_ltEs18(yvy91, yvy94, ffc) new_lt21(yvy1000, yvy1010, ty_Ordering) -> new_lt4(yvy1000, yvy1010) new_primEqInt(Neg(Succ(yvy400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy300000))) -> False new_esEs10(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(yvy400000)), Pos(Succ(yvy300000))) -> new_primEqNat0(yvy400000, yvy300000) new_lt22(yvy89, yvy92, app(app(ty_Either, fce), fcf)) -> new_lt16(yvy89, yvy92, fce, fcf) new_ltEs24(yvy91, yvy94, app(ty_[], feb)) -> new_ltEs6(yvy91, yvy94, feb) new_lt8(yvy150, yvy152) -> new_esEs12(new_compare8(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, app(app(ty_Either, bhh), caa)) -> new_lt16(yvy150, yvy152, bhh, caa) new_esEs8(yvy4002, yvy3002, app(app(ty_Either, cgc), cgd)) -> new_esEs21(yvy4002, yvy3002, cgc, cgd) new_esEs23(Char(yvy40000), Char(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs8(yvy114, yvy115, ty_Float) -> new_ltEs5(yvy114, yvy115) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Maybe, bad)) -> new_ltEs15(yvy1000, yvy1010, bad) new_esEs11(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_ltEs23(yvy1001, yvy1011, ty_Ordering) -> new_ltEs17(yvy1001, yvy1011) new_esEs33(yvy1000, yvy1010, app(ty_[], dgf)) -> new_esEs24(yvy1000, yvy1010, dgf) new_primEqInt(Pos(Succ(yvy400000)), Neg(yvy30000)) -> False new_primEqInt(Neg(Succ(yvy400000)), Pos(yvy30000)) -> False new_esEs31(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy30000))) -> new_primCmpNat0(Succ(yvy30000), Zero) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Ordering, dec) -> new_esEs12(yvy40000, yvy30000) new_esEs33(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_esEs27(yvy40001, yvy30001, ty_Char) -> new_esEs23(yvy40001, yvy30001) new_esEs7(yvy4001, yvy3001, ty_Float) -> new_esEs17(yvy4001, yvy3001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(Left(yvy40000), Left(yvy30000), ty_Char, dec) -> new_esEs23(yvy40000, yvy30000) new_ltEs15(Just(yvy1000), Just(yvy1010), ty_@0) -> new_ltEs10(yvy1000, yvy1010) new_ltEs23(yvy1001, yvy1011, ty_@0) -> new_ltEs10(yvy1001, yvy1011) new_compare28(True, True) -> EQ new_ltEs8(yvy114, yvy115, ty_Double) -> new_ltEs7(yvy114, yvy115) new_esEs27(yvy40001, yvy30001, app(ty_[], bea)) -> new_esEs24(yvy40001, yvy30001, bea) new_ltEs19(yvy100, yvy101, app(ty_Ratio, gc)) -> new_ltEs18(yvy100, yvy101, gc) new_ltEs24(yvy91, yvy94, app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy91, yvy94, fec, fed) new_ltEs16(Right(yvy1000), Right(yvy1010), ga, app(ty_Ratio, bag)) -> new_ltEs18(yvy1000, yvy1010, bag) new_ltEs22(yvy107, yvy108, app(ty_[], eeb)) -> new_ltEs6(yvy107, yvy108, eeb) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs24(:(yvy40000, yvy40001), :(yvy30000, yvy30001), cbe) -> new_asAs(new_esEs30(yvy40000, yvy30000, cbe), new_esEs24(yvy40001, yvy30001, cbe)) new_lt23(yvy90, yvy93, ty_Char) -> new_lt6(yvy90, yvy93) new_esEs39(yvy90, yvy93, app(ty_Ratio, fea)) -> new_esEs20(yvy90, yvy93, fea) new_lt11(yvy150, yvy152, app(ty_Maybe, bah)) -> new_lt7(yvy150, yvy152, bah) new_lt10(yvy150, yvy152, bha, bhb) -> new_esEs12(new_compare26(yvy150, yvy152, bha, bhb), LT) new_esEs26(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs10(yvy4000, yvy3000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs15(yvy4000, yvy3000, cgf, cgg, cgh) new_esEs4(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs5(yvy4001, yvy3001, ty_Double) -> new_esEs25(yvy4001, yvy3001) new_esEs28(yvy40002, yvy30002, ty_Int) -> new_esEs22(yvy40002, yvy30002) new_compare29(Right(yvy4000), Left(yvy3000), bgc, bgd) -> GT new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Bool, gb) -> new_ltEs14(yvy1000, yvy1010) new_compare18(yvy400, yvy300, ty_@0) -> new_compare19(yvy400, yvy300) new_esEs29(yvy150, yvy152, app(app(ty_@2, bha), bhb)) -> new_esEs18(yvy150, yvy152, bha, bhb) new_esEs30(yvy40000, yvy30000, app(ty_Ratio, ccd)) -> new_esEs20(yvy40000, yvy30000, ccd) new_lt21(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs31(yvy40000, yvy30000, ty_Float) -> new_esEs17(yvy40000, yvy30000) new_esEs37(yvy1000, yvy1010, app(ty_Ratio, ehh)) -> new_esEs20(yvy1000, yvy1010, ehh) new_esEs26(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_esEs31(yvy40000, yvy30000, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_not(False) -> True new_esEs28(yvy40002, yvy30002, ty_Ordering) -> new_esEs12(yvy40002, yvy30002) new_esEs21(Left(yvy40000), Left(yvy30000), app(app(ty_@2, dee), def), dec) -> new_esEs18(yvy40000, yvy30000, dee, def) new_ltEs24(yvy91, yvy94, app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs13(yvy91, yvy94, fee, fef, feg) new_esEs33(yvy1000, yvy1010, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs15(yvy1000, yvy1010, dha, dhb, dhc) new_lt22(yvy89, yvy92, ty_Double) -> new_lt17(yvy89, yvy92) new_ltEs24(yvy91, yvy94, app(app(ty_Either, ffa), ffb)) -> new_ltEs16(yvy91, yvy94, ffa, ffb) new_lt19(yvy1000, yvy1010, app(ty_[], dgf)) -> new_lt5(yvy1000, yvy1010, dgf) new_ltEs15(Nothing, Just(yvy1010), fh) -> True new_esEs8(yvy4002, yvy3002, app(ty_Maybe, cfg)) -> new_esEs14(yvy4002, yvy3002, cfg) new_esEs38(yvy89, yvy92, ty_@0) -> new_esEs19(yvy89, yvy92) new_compare0(:(yvy4000, yvy4001), [], bfd) -> GT new_esEs14(Just(yvy40000), Just(yvy30000), app(ty_Ratio, cg)) -> new_esEs20(yvy40000, yvy30000, cg) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(Right(yvy40000), Right(yvy30000), dfc, ty_Bool) -> new_esEs13(yvy40000, yvy30000) new_esEs16(Integer(yvy40000), Integer(yvy30000)) -> new_primEqInt(yvy40000, yvy30000) new_ltEs24(yvy91, yvy94, ty_Bool) -> new_ltEs14(yvy91, yvy94) new_compare9(Double(yvy4000, Pos(yvy40010)), Double(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare9(Double(yvy4000, Neg(yvy40010)), Double(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_ltEs24(yvy91, yvy94, ty_Integer) -> new_ltEs11(yvy91, yvy94) new_esEs37(yvy1000, yvy1010, app(app(ty_@2, egh), eha)) -> new_esEs18(yvy1000, yvy1010, egh, eha) new_esEs11(yvy4000, yvy3000, ty_Integer) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fgc), fgd)) -> new_esEs21(yvy4000, yvy3000, fgc, fgd) new_esEs37(yvy1000, yvy1010, app(ty_[], egg)) -> new_esEs24(yvy1000, yvy1010, egg) new_esEs28(yvy40002, yvy30002, ty_@0) -> new_esEs19(yvy40002, yvy30002) new_esEs34(yvy1001, yvy1011, ty_Integer) -> new_esEs16(yvy1001, yvy1011) new_ltEs20(yvy151, yvy153, app(ty_Ratio, cbd)) -> new_ltEs18(yvy151, yvy153, cbd) new_esEs6(yvy4000, yvy3000, ty_Float) -> new_esEs17(yvy4000, yvy3000) new_esEs7(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yvy2920), yvy400100) -> Succ(Succ(new_primPlusNat1(yvy2920, yvy400100))) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare24(yvy114, yvy115, False, dd, de) -> new_compare12(yvy114, yvy115, new_ltEs8(yvy114, yvy115, de), dd, de) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(ty_Ratio, dgb)) -> new_esEs20(yvy40000, yvy30000, dgb) new_esEs32(yvy40001, yvy30001, ty_Int) -> new_esEs22(yvy40001, yvy30001) new_ltEs20(yvy151, yvy153, app(ty_[], cac)) -> new_ltEs6(yvy151, yvy153, cac) new_esEs29(yvy150, yvy152, app(ty_Ratio, cab)) -> new_esEs20(yvy150, yvy152, cab) new_esEs30(yvy40000, yvy30000, ty_Double) -> new_esEs25(yvy40000, yvy30000) new_esEs25(Double(yvy40000, yvy40001), Double(yvy30000, yvy30001)) -> new_esEs22(new_sr(yvy40000, yvy30001), new_sr(yvy40001, yvy30000)) new_lt20(yvy1001, yvy1011, app(ty_[], dhh)) -> new_lt5(yvy1001, yvy1011, dhh) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Float, dec) -> new_esEs17(yvy40000, yvy30000) new_esEs5(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_esEs38(yvy89, yvy92, ty_Float) -> new_esEs17(yvy89, yvy92) new_ltEs23(yvy1001, yvy1011, app(ty_Ratio, fbb)) -> new_ltEs18(yvy1001, yvy1011, fbb) new_esEs33(yvy1000, yvy1010, ty_Bool) -> new_esEs13(yvy1000, yvy1010) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(yvy89, yvy92, app(app(app(ty_@3, fca), fcb), fcc)) -> new_lt9(yvy89, yvy92, fca, fcb, fcc) new_esEs15(@3(yvy40000, yvy40001, yvy40002), @3(yvy30000, yvy30001, yvy30002), bbc, bbd, bbe) -> new_asAs(new_esEs26(yvy40000, yvy30000, bbc), new_asAs(new_esEs27(yvy40001, yvy30001, bbd), new_esEs28(yvy40002, yvy30002, bbe))) new_lt20(yvy1001, yvy1011, ty_Double) -> new_lt17(yvy1001, yvy1011) new_esEs6(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs37(yvy1000, yvy1010, ty_Char) -> new_esEs23(yvy1000, yvy1010) new_compare0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfd) -> new_primCompAux0(yvy4000, yvy3000, new_compare0(yvy4001, yvy3001, bfd), bfd) new_esEs8(yvy4002, yvy3002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs15(yvy4002, yvy3002, cfd, cfe, cff) new_lt21(yvy1000, yvy1010, app(app(ty_Either, ehf), ehg)) -> new_lt16(yvy1000, yvy1010, ehf, ehg) new_ltEs22(yvy107, yvy108, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs13(yvy107, yvy108, eee, eef, eeg) new_esEs5(yvy4001, yvy3001, app(ty_Ratio, egc)) -> new_esEs20(yvy4001, yvy3001, egc) new_lt23(yvy90, yvy93, app(ty_Maybe, fdf)) -> new_lt7(yvy90, yvy93, fdf) new_esEs26(yvy40000, yvy30000, app(ty_Ratio, bcd)) -> new_esEs20(yvy40000, yvy30000, bcd) new_ltEs22(yvy107, yvy108, ty_Bool) -> new_ltEs14(yvy107, yvy108) new_lt7(yvy150, yvy152, bah) -> new_esEs12(new_compare14(yvy150, yvy152, bah), LT) new_ltEs17(GT, EQ) -> False new_ltEs23(yvy1001, yvy1011, ty_Double) -> new_ltEs7(yvy1001, yvy1011) new_ltEs21(yvy1002, yvy1012, ty_@0) -> new_ltEs10(yvy1002, yvy1012) new_esEs10(yvy4000, yvy3000, ty_Bool) -> new_esEs13(yvy4000, yvy3000) new_compare8(Float(yvy4000, Pos(yvy40010)), Float(yvy3000, Neg(yvy30010))) -> new_compare6(new_sr(yvy4000, Pos(yvy30010)), new_sr(Neg(yvy40010), yvy3000)) new_compare8(Float(yvy4000, Neg(yvy40010)), Float(yvy3000, Pos(yvy30010))) -> new_compare6(new_sr(yvy4000, Neg(yvy30010)), new_sr(Pos(yvy40010), yvy3000)) new_lt22(yvy89, yvy92, ty_Int) -> new_lt12(yvy89, yvy92) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_Integer, gb) -> new_ltEs11(yvy1000, yvy1010) new_esEs5(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy40001, yvy30001, app(ty_Maybe, dda)) -> new_esEs14(yvy40001, yvy30001, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(yvy107, yvy108, app(ty_Ratio, efc)) -> new_ltEs18(yvy107, yvy108, efc) new_esEs26(yvy40000, yvy30000, ty_@0) -> new_esEs19(yvy40000, yvy30000) new_compare17(yvy201, yvy202, yvy203, yvy204, False, bba, bbb) -> GT new_primMulNat0(Succ(yvy300000), Succ(yvy400100)) -> new_primPlusNat0(new_primMulNat0(yvy300000, Succ(yvy400100)), yvy400100) new_ltEs24(yvy91, yvy94, app(ty_Maybe, feh)) -> new_ltEs15(yvy91, yvy94, feh) new_esEs27(yvy40001, yvy30001, app(ty_Ratio, bdf)) -> new_esEs20(yvy40001, yvy30001, bdf) new_ltEs21(yvy1002, yvy1012, ty_Integer) -> new_ltEs11(yvy1002, yvy1012) new_esEs38(yvy89, yvy92, ty_Double) -> new_esEs25(yvy89, yvy92) new_ltEs14(False, False) -> True new_esEs7(yvy4001, yvy3001, ty_Bool) -> new_esEs13(yvy4001, yvy3001) new_lt20(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_lt16(yvy1001, yvy1011, eag, eah) new_lt11(yvy150, yvy152, ty_Double) -> new_lt17(yvy150, yvy152) new_primCmpNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primCmpNat0(yvy40000, yvy30000) new_esEs27(yvy40001, yvy30001, ty_Float) -> new_esEs17(yvy40001, yvy30001) new_ltEs8(yvy114, yvy115, app(ty_Ratio, eg)) -> new_ltEs18(yvy114, yvy115, eg) new_esEs30(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) new_esEs14(Nothing, Just(yvy30000), bh) -> False new_esEs14(Just(yvy40000), Nothing, bh) -> False new_lt23(yvy90, yvy93, ty_Int) -> new_lt12(yvy90, yvy93) new_esEs31(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_lt19(yvy1000, yvy1010, ty_Char) -> new_lt6(yvy1000, yvy1010) new_esEs38(yvy89, yvy92, app(app(ty_@2, fbg), fbh)) -> new_esEs18(yvy89, yvy92, fbg, fbh) new_esEs14(Nothing, Nothing, bh) -> True new_esEs11(yvy4000, yvy3000, app(app(ty_Either, dag), dah)) -> new_esEs21(yvy4000, yvy3000, dag, dah) new_lt22(yvy89, yvy92, app(ty_Maybe, fcd)) -> new_lt7(yvy89, yvy92, fcd) new_esEs36(yvy40001, yvy30001, ty_Integer) -> new_esEs16(yvy40001, yvy30001) new_esEs22(yvy4000, yvy3000) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(Left(yvy40000), Left(yvy30000), ty_Double, dec) -> new_esEs25(yvy40000, yvy30000) new_esEs39(yvy90, yvy93, app(app(ty_@2, fda), fdb)) -> new_esEs18(yvy90, yvy93, fda, fdb) new_ltEs13(@3(yvy1000, yvy1001, yvy1002), @3(yvy1010, yvy1011, yvy1012), fd, ff, fg) -> new_pePe(new_lt19(yvy1000, yvy1010, fd), new_asAs(new_esEs33(yvy1000, yvy1010, fd), new_pePe(new_lt20(yvy1001, yvy1011, ff), new_asAs(new_esEs34(yvy1001, yvy1011, ff), new_ltEs21(yvy1002, yvy1012, fg))))) new_esEs4(yvy4000, yvy3000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(yvy4000, yvy3000, dbb, dbc) new_esEs34(yvy1001, yvy1011, app(app(ty_Either, eag), eah)) -> new_esEs21(yvy1001, yvy1011, eag, eah) new_ltEs21(yvy1002, yvy1012, app(ty_Ratio, ecc)) -> new_ltEs18(yvy1002, yvy1012, ecc) new_esEs8(yvy4002, yvy3002, ty_Bool) -> new_esEs13(yvy4002, yvy3002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs28(yvy40002, yvy30002, app(ty_Ratio, beh)) -> new_esEs20(yvy40002, yvy30002, beh) new_lt11(yvy150, yvy152, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt9(yvy150, yvy152, bgf, bgg, bgh) new_ltEs17(GT, GT) -> True new_esEs6(yvy4000, yvy3000, ty_Int) -> new_esEs22(yvy4000, yvy3000) new_esEs21(Right(yvy40000), Right(yvy30000), dfc, app(app(ty_@2, dfh), dga)) -> new_esEs18(yvy40000, yvy30000, dfh, dga) new_esEs28(yvy40002, yvy30002, ty_Double) -> new_esEs25(yvy40002, yvy30002) new_lt20(yvy1001, yvy1011, ty_Char) -> new_lt6(yvy1001, yvy1011) new_lt23(yvy90, yvy93, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt9(yvy90, yvy93, fdc, fdd, fde) new_primEqNat0(Zero, Zero) -> True new_esEs32(yvy40001, yvy30001, ty_Bool) -> new_esEs13(yvy40001, yvy30001) new_ltEs12(@2(yvy1000, yvy1001), @2(yvy1010, yvy1011), fb, fc) -> new_pePe(new_lt21(yvy1000, yvy1010, fb), new_asAs(new_esEs37(yvy1000, yvy1010, fb), new_ltEs23(yvy1001, yvy1011, fc))) new_ltEs24(yvy91, yvy94, ty_Char) -> new_ltEs9(yvy91, yvy94) new_lt17(yvy150, yvy152) -> new_esEs12(new_compare9(yvy150, yvy152), LT) new_lt21(yvy1000, yvy1010, app(ty_Maybe, ehe)) -> new_lt7(yvy1000, yvy1010, ehe) new_esEs4(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) new_ltEs8(yvy114, yvy115, ty_@0) -> new_ltEs10(yvy114, yvy115) new_esEs35(yvy40000, yvy30000, ty_Integer) -> new_esEs16(yvy40000, yvy30000) new_lt21(yvy1000, yvy1010, ty_Double) -> new_lt17(yvy1000, yvy1010) new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs15(yvy4000, yvy3000, ffd, ffe, fff) new_ltEs24(yvy91, yvy94, ty_Double) -> new_ltEs7(yvy91, yvy94) new_esEs10(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs14(yvy4000, yvy3000, cha) new_ltEs16(Left(yvy1000), Left(yvy1010), ty_@0, gb) -> new_ltEs10(yvy1000, yvy1010) new_esEs30(yvy40000, yvy30000, ty_Ordering) -> new_esEs12(yvy40000, yvy30000) new_ltEs14(True, False) -> False new_esEs4(yvy4000, yvy3000, app(ty_Ratio, efd)) -> new_esEs20(yvy4000, yvy3000, efd) new_esEs21(Left(yvy40000), Left(yvy30000), app(ty_Maybe, ded), dec) -> new_esEs14(yvy40000, yvy30000, ded) new_asAs(False, yvy168) -> False new_esEs39(yvy90, yvy93, ty_@0) -> new_esEs19(yvy90, yvy93) new_esEs7(yvy4001, yvy3001, ty_Int) -> new_esEs22(yvy4001, yvy3001) new_ltEs22(yvy107, yvy108, ty_@0) -> new_ltEs10(yvy107, yvy108) new_esEs33(yvy1000, yvy1010, app(ty_Maybe, dhd)) -> new_esEs14(yvy1000, yvy1010, dhd) new_lt12(yvy150, yvy152) -> new_esEs12(new_compare6(yvy150, yvy152), LT) new_lt11(yvy150, yvy152, ty_Int) -> new_lt12(yvy150, yvy152) new_esEs6(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs39(yvy90, yvy93, ty_Double) -> new_esEs25(yvy90, yvy93) new_esEs27(yvy40001, yvy30001, ty_@0) -> new_esEs19(yvy40001, yvy30001) new_esEs21(Left(yvy40000), Left(yvy30000), ty_@0, dec) -> new_esEs19(yvy40000, yvy30000) new_esEs28(yvy40002, yvy30002, ty_Float) -> new_esEs17(yvy40002, yvy30002) new_lt9(yvy150, yvy152, bgf, bgg, bgh) -> new_esEs12(new_compare27(yvy150, yvy152, bgf, bgg, bgh), LT) new_esEs11(yvy4000, yvy3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs15(yvy4000, yvy3000, chh, daa, dab) new_ltEs8(yvy114, yvy115, ty_Integer) -> new_ltEs11(yvy114, yvy115) new_compare12(yvy191, yvy192, True, edf, edg) -> LT new_ltEs22(yvy107, yvy108, ty_Integer) -> new_ltEs11(yvy107, yvy108) new_compare212(yvy107, yvy108, False, edh, eea) -> new_compare10(yvy107, yvy108, new_ltEs22(yvy107, yvy108, edh), edh, eea) new_esEs4(yvy4000, yvy3000, ty_Double) -> new_esEs25(yvy4000, yvy3000) new_lt15(yvy150, yvy152) -> new_esEs12(new_compare28(yvy150, yvy152), LT) new_esEs27(yvy40001, yvy30001, app(app(ty_@2, bdd), bde)) -> new_esEs18(yvy40001, yvy30001, bdd, bde) new_lt19(yvy1000, yvy1010, app(app(ty_Either, dhe), dhf)) -> new_lt16(yvy1000, yvy1010, dhe, dhf) new_ltEs21(yvy1002, yvy1012, app(ty_[], ebb)) -> new_ltEs6(yvy1002, yvy1012, ebb) new_esEs31(yvy40000, yvy30000, ty_Int) -> new_esEs22(yvy40000, yvy30000) The set Q consists of the following terms: new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), x2, x3) new_esEs12(EQ, EQ) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs38(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(True, True) new_primCmpNat0(Succ(x0), Zero) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_compare15(Integer(x0), Integer(x1)) new_ltEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, x2) new_lt21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs5(x0, x1, ty_Float) new_sr(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_lt13(x0, x1) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Int) new_compare11(x0, x1, True, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Bool) new_ltEs18(x0, x1, x2) new_ltEs9(x0, x1) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_ltEs6(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs14(Nothing, Nothing, x0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare14(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_compare18(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_pePe(False, x0) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_lt22(x0, x1, ty_@0) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs30(x0, x1, ty_Float) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs34(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare7(EQ, GT) new_esEs31(x0, x1, app(ty_[], x2)) new_compare7(GT, EQ) new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_lt11(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5) new_lt6(x0, x1) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_compare14(Nothing, Just(x0), x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Double(x0, x1), Double(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(LT, LT) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(False, True) new_esEs13(True, False) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_ltEs14(False, False) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare14(Nothing, Nothing, x0) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt11(x0, x1, ty_Int) new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24([], [], x0) new_lt17(x0, x1) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Char) new_compare19(@0, @0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs22(x0, x1) new_ltEs17(GT, GT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_compare212(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_primCompAux0(x0, x1, x2, x3) new_lt7(x0, x1, x2) new_esEs14(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(GT, LT) new_compare7(LT, GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_lt16(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_lt11(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(False, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Float) new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_compare212(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2, x3) new_esEs11(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_compare6(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs13(True, True) new_esEs6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24([], :(x0, x1), x2) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs14(Just(x0), Just(x1), ty_Integer) new_compare28(True, False) new_compare28(False, True) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_pePe(True, x0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs34(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_lt11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Float) new_compare18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Nothing, Just(x0), x1) new_ltEs8(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_compare12(x0, x1, True, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(:(x0, x1), [], x2) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Bool) new_esEs14(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs5(x0, x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare14(Just(x0), Just(x1), x2) new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Double) new_ltEs16(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_compare18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare7(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(Just(x0), Nothing, x1) new_compare10(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_esEs13(False, False) new_lt14(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt15(x0, x1) new_not(False) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_compare7(EQ, LT) new_compare0([], [], x0) new_compare7(LT, EQ) new_esEs14(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_primCmpNat0(Zero, Succ(x0)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(EQ, GT) new_esEs39(x0, x1, ty_Char) new_ltEs17(GT, EQ) new_compare7(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs38(x0, x1, ty_Integer) new_compare29(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(@0, @0) new_esEs39(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Double) new_lt11(x0, x1, ty_@0) new_esEs14(Just(x0), Just(x1), ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Left(x0), Right(x1), x2, x3) new_compare29(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Zero) new_compare13(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (96) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_splitLT3(:(yvy300, yvy301), yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, [], bb, bc) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, [], bb, bc) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7, 8 >= 8 ---------------------------------------- (97) YES ---------------------------------------- (98) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat(yvy400000, yvy300000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (99) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(yvy400000), Succ(yvy300000)) -> new_primEqNat(yvy400000, yvy300000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (100) YES ---------------------------------------- (101) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(yvy118200), Succ(yvy54200)) -> new_primMinusNat(yvy118200, yvy54200) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (102) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(yvy118200), Succ(yvy54200)) -> new_primMinusNat(yvy118200, yvy54200) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (103) YES ---------------------------------------- (104) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(yvy29200), Succ(yvy4001000)) -> new_primPlusNat(yvy29200, yvy4001000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (105) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(yvy29200), Succ(yvy4001000)) -> new_primPlusNat(yvy29200, yvy4001000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (106) YES